/* ===== Reset & base ===== */
* {
  box-sizing: border-box;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background-color: #ffffff;
  color: #0f172a;
  line-height: 1.5;
  overflow-x: hidden;
}
.main-wrapper {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.main { display: block; }

/* ===== Topbar ===== */
.topbar { background-color: #0f172a; color: rgba(255,255,255,0.7); font-size: 12px; }
.topbar__inner {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
}
.topbar__brand { font-size: 12px; }
.topbar__hours { font-size: 12px; }

/* ===== Header / nav ===== */
.header {
  background-color: #ffffff;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 30;
}
.nav {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav__logo { flex-shrink: 0; min-width: 0; }
.nav__logo-text { white-space: nowrap; }
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
}
.nav__logo-icon {
  width: 40px;
  height: 40px;
  background-color: #4f46e5;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.nav__logo-text {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav__list {
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}
.nav__item { display: inline-block; }
.nav__link {
  text-decoration: none;
  color: rgba(11,18,32,0.7);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
.nav__link--hover { color: #4f46e5; }
.nav__cta {
  background-color: #4f46e5;
  background-image: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff !important;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 22px;
  padding-right: 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 20px -8px rgba(79,70,229,0.6);
  transition-property: transform, box-shadow;
  transition-duration: 0.2s;
}
.nav__cta--hover {
  background-image: linear-gradient(135deg, #6366f1, #4f46e5);
  box-shadow: 0 12px 24px -8px rgba(79,70,229,0.7);
  transform: translateY(-1px);
}
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  background-color: #f4f4f5;
  border-style: none;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.nav__toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: #0f172a;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0,0,0,0.05);
  background-color: #ffffff;
  padding-top: 12px;
  padding-bottom: 16px;
  padding-left: 16px;
  padding-right: 16px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu--open { display: flex; }
.mobile-menu__link {
  display: block;
  padding-top: 12px;
  padding-bottom: 12px;
  text-decoration: none;
  color: rgba(11,18,32,0.85);
  font-weight: 500;
  font-size: 16px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(0,0,0,0.05);
}
.mobile-menu__cta {
  margin-top: 12px;
  display: inline-block;
  text-align: center;
  background-color: #0f172a;
  color: #ffffff;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}
.mobile-menu__phone, .mobile-menu__mail {
  display: block;
  margin-top: 8px;
  color: rgba(11,18,32,0.85);
  text-decoration: none;
  font-size: 14px;
}

/* ===== Page ===== */
.page { display: block; }
.page[hidden] { display: none; }

/* ===== Hero ===== */
.hero {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 40px;
  padding-bottom: 60px;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__content { display: block; }
.hero__badge {
  display: inline-block;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 999px;
  background-color: rgba(79,70,229,0.1);
  color: #4f46e5;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
.hero__title {
  font-weight: 800;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__title-accent { color: #4f46e5; }
.hero__lead {
  font-size: 18px;
  color: rgba(11,18,32,0.65);
  line-height: 1.6;
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__btn-primary {
  background-color: #4f46e5;
  color: #ffffff;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.hero__btn-primary--hover { background-color: #6366f1; }
.hero__btn-secondary {
  background-color: #ffffff;
  border-width: 2px;
  border-style: solid;
  border-color: #f4f4f5;
  color: #0f172a;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 28px;
  padding-right: 28px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.hero__btn-secondary--hover { background-color: #f4f4f5; }
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 24px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0,0,0,0.05);
  list-style-type: none;
  max-width: 480px;
}
.hero__stat { display: block; }
.hero__stat-value {
  display: block;
  font-weight: 800;
  font-size: 24px;
  color: #0f172a;
}
.hero__stat-label {
  display: block;
  font-size: 11px;
  color: rgba(11,18,32,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.hero__media { position: relative; }
.hero__image {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 40px;
  display: block;
}
.hero__caption {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background-color: #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(11,18,32,0.15);
  max-width: 260px;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.05);
}
.hero__caption-label {
  font-size: 11px;
  color: rgba(11,18,32,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero__caption-text { font-weight: 700; font-size: 16px; line-height: 1.3; }

/* ===== Trusted ===== */
.trusted {
  padding-top: 56px;
  padding-bottom: 56px;
  padding-left: 16px;
  padding-right: 16px;
  border-top-width: 1px;
  border-bottom-width: 1px;
  border-top-style: solid;
  border-bottom-style: solid;
  border-top-color: rgba(0,0,0,0.05);
  border-bottom-color: rgba(0,0,0,0.05);
}
.trusted__title {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(11,18,32,0.4);
  margin-bottom: 32px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.trusted__grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.trusted__logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(244,244,245,0.6);
  border-radius: 12px;
  font-weight: 800;
  color: rgba(11,18,32,0.4);
  font-size: 14px;
  letter-spacing: 0.1em;
}

/* ===== Metrics ===== */
.metrics { background-color: #0f172a; color: #ffffff; padding-top: 80px; padding-bottom: 80px; }
.metrics__grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.metrics__item { display: block; }
.metrics__value { font-weight: 800; font-size: 48px; color: #4f46e5; }
.metrics__label {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 8px;
}

/* ===== Generic section ===== */
.services, .cases, .advantages, .pricing, .calculator, .industries, .testimonials, .geography, .compare, .home-faq, .cta, .guarantees, .process {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 96px;
  padding-bottom: 96px;
  padding-left: 16px;
  padding-right: 16px;
}
.process { background-color: #f4f4f5; max-width: 100%; }
.process__head, .services__head, .cases__head, .advantages__head, .pricing__head, .testimonials__head, .geography__head, .compare__head {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 56px;
}
.services__head { text-align: left; max-width: 100%; margin-bottom: 56px; }
.cases__head { text-align: left; max-width: 100%; }

.services__kicker, .cases__kicker, .advantages__kicker, .pricing__kicker, .calculator__kicker, .industries__kicker, .testimonials__kicker, .geography__kicker, .compare__kicker, .home-faq__kicker, .guarantees__kicker, .process__kicker, .about-hero__kicker, .mission__kicker, .values__kicker, .timeline__kicker, .team__kicker, .docs-block__kicker, .vac-hero__kicker, .faq-hero__kicker, .ct-hero__kicker, .requisites__kicker {
  font-size: 12px;
  font-weight: 700;
  color: #4f46e5;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}
.services__title, .cases__title, .advantages__title, .pricing__title, .calculator__title, .industries__title, .testimonials__title, .geography__title, .compare__title, .home-faq__title, .guarantees__title, .process__title {
  font-weight: 800;
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.services__lead, .cases__lead, .advantages__lead, .pricing__lead, .calculator__lead, .industries__lead, .testimonials__lead, .geography__lead, .home-faq__lead, .guarantees__lead, .process__lead, .vac-hero__lead, .faq-hero__lead, .ct-hero__lead {
  color: rgba(11,18,32,0.6);
  font-size: 17px;
  line-height: 1.6;
}

/* Services grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 28px;
  background-color: #f4f4f5;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.05);
}
.service-card--featured {
  background-color: #4f46e5;
  color: #ffffff;
  border-color: #4f46e5;
}
.service-card__title { font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.service-card__text {
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(11,18,32,0.65);
}
.service-card--featured .service-card__text { color: rgba(255,255,255,0.85); }
.service-card__list { list-style-type: none; }
.service-card__point {
  display: block;
  font-size: 14px;
  color: rgba(11,18,32,0.7);
  margin-bottom: 8px;
}
.service-card--featured .service-card__point { color: rgba(255,255,255,0.9); }
.service-card--hover { transform: translateY(-4px); }

/* Cases */
.cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.case-card {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 32px;
  padding-right: 32px;
  border-radius: 28px;
  background-color: #f4f4f5;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}
.case-card__tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #4f46e5;
  background-color: rgba(79,70,229,0.1);
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.case-card__title { font-weight: 700; font-size: 22px; line-height: 1.25; margin-bottom: 12px; }
.case-card__text { color: rgba(11,18,32,0.6); line-height: 1.6; font-size: 14px; margin-bottom: 24px; flex-grow: 1; }
.case-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 20px;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(0,0,0,0.1);
}
.case-card__metric { display: block; }
.case-card__metric-value { font-weight: 800; font-size: 18px; color: #0f172a; }
.case-card__metric-label { font-size: 10px; color: rgba(11,18,32,0.55); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 4px; line-height: 1.2; }

/* Advantages */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: rgba(0,0,0,0.06);
  border-radius: 28px;
  overflow: hidden;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(0,0,0,0.05);
}
.advantage { background-color: #ffffff; padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; }
.advantage__num { font-weight: 800; font-size: 30px; color: rgba(79,70,229,0.3); margin-bottom: 16px; }
.advantage__title { font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.advantage__text { color: rgba(11,18,32,0.6); line-height: 1.6; font-size: 14px; }

/* Process */
.process__grid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.process__step { background-color: #ffffff; padding-top: 28px; padding-bottom: 28px; padding-left: 28px; padding-right: 28px; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); }
.process__step-num { font-size: 28px; font-weight: 800; color: #4f46e5; margin-bottom: 20px; }
.process__step-title { font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.process__step-text { color: rgba(11,18,32,0.6); font-size: 14px; line-height: 1.5; }

/* Guarantees */
.guarantees__inner {
  border-radius: 40px;
  background-color: #4f46e5;
  background-image: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 60px;
  padding-right: 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}
.guarantees__kicker { color: rgba(255,255,255,0.7); }
.guarantees__title { font-weight: 800; font-size: 40px; line-height: 1.15; margin-bottom: 20px; }
.guarantees__lead { color: rgba(255,255,255,0.8); line-height: 1.6; }
.guarantees__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.guarantee { background-color: rgba(255,255,255,0.1); padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; border-radius: 16px; border-width: 1px; border-style: solid; border-color: rgba(255,255,255,0.1); }
.guarantee__title { font-weight: 700; margin-bottom: 8px; }
.guarantee__text { color: rgba(255,255,255,0.75); font-size: 14px; line-height: 1.5; }

/* Pricing */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan { padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; border-radius: 32px; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); }
.plan--featured { background-color: #0f172a; color: #ffffff; border-color: #0f172a; }
.plan__name { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: #4f46e5; margin-bottom: 16px; }
.plan__price { font-weight: 800; font-size: 36px; margin-bottom: 8px; }
.plan__sub { font-size: 14px; color: rgba(11,18,32,0.5); margin-bottom: 32px; }
.plan--featured .plan__sub { color: rgba(255,255,255,0.5); }
.plan__list { list-style-type: none; margin-bottom: 32px; }
.plan__item { font-size: 14px; color: rgba(11,18,32,0.75); margin-bottom: 12px; }
.plan--featured .plan__item { color: rgba(255,255,255,0.85); }
.plan__cta { display: block; text-align: center; padding-top: 14px; padding-bottom: 14px; border-radius: 16px; text-decoration: none; font-weight: 700; background-color: #f4f4f5; color: #0f172a; }
.plan__cta--featured { background-color: #4f46e5; color: #ffffff; }
.plan__cta--hover { background-color: #6366f1; color: #ffffff; }

/* Calculator */
.calculator { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.calculator__intro { }
.calculator__notes { list-style-type: none; margin-top: 16px; }
.calculator__note { color: rgba(11,18,32,0.7); margin-bottom: 8px; }
.calc { background-color: #ffffff; padding-top: 32px; padding-bottom: 32px; padding-left: 32px; padding-right: 32px; border-radius: 32px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); box-shadow: 0 20px 40px rgba(11,18,32,0.05); }
.calc__row { margin-bottom: 28px; }
.calc__label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.calc__label { font-size: 14px; font-weight: 600; }
.calc__value { font-size: 14px; font-weight: 700; color: #4f46e5; }
.calc__levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.calc__level { padding-top: 10px; padding-bottom: 10px; border-radius: 12px; font-size: 12px; font-weight: 700; background-color: #f4f4f5; color: rgba(11,18,32,0.6); border-style: none; cursor: pointer; }
.calc__level--active { background-color: #0f172a; color: #ffffff; }
.calc__range { width: 100%; accent-color: #4f46e5; }
.calc__range-meta { display: flex; justify-content: space-between; font-size: 10px; color: rgba(11,18,32,0.4); margin-top: 4px; }
.calc__result { padding-top: 24px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.1); }
.calc__result-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.calc__result-key { font-size: 14px; color: rgba(11,18,32,0.6); }
.calc__result-per { font-weight: 700; font-size: 20px; }
.calc__result-total { display: flex; justify-content: space-between; align-items: baseline; background-color: rgba(79,70,229,0.05); padding-top: 12px; padding-bottom: 12px; padding-left: 16px; padding-right: 16px; border-radius: 12px; margin-bottom: 16px; }
.calc__result-total-key { font-size: 14px; font-weight: 700; }
.calc__result-total-value { font-weight: 800; font-size: 28px; color: #4f46e5; }
.calc__cta { display: block; text-align: center; background-color: #0f172a; color: #ffffff; padding-top: 14px; padding-bottom: 14px; border-radius: 12px; font-weight: 700; text-decoration: none; }
.calc__cta--hover { background-color: #4f46e5; }

/* Industries */
.industries { background-color: #f4f4f5; max-width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding-left: 16px; padding-right: 16px; }
.industries__tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.industries__tag { padding-top: 10px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; border-radius: 999px; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); font-weight: 500; font-size: 14px; }
.industries__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.industries__metric { padding-top: 32px; padding-bottom: 32px; padding-left: 32px; padding-right: 32px; border-radius: 28px; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); }
.industries__metric-value { font-weight: 800; font-size: 28px; color: #0f172a; margin-bottom: 8px; }
.industries__metric-label { font-size: 14px; color: rgba(11,18,32,0.6); font-weight: 500; }

/* Testimonials */
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial { padding-top: 32px; padding-bottom: 32px; padding-left: 32px; padding-right: 32px; background-color: #f4f4f5; border-radius: 28px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); display: flex; flex-direction: column; }
.testimonial__stars { color: #fbbf24; font-size: 18px; margin-bottom: 12px; }
.testimonial__quote { color: rgba(11,18,32,0.85); line-height: 1.6; margin-bottom: 24px; flex-grow: 1; }
.testimonial__author { padding-top: 24px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.05); }
.testimonial__name { font-weight: 700; font-size: 14px; }
.testimonial__role { font-size: 12px; color: rgba(11,18,32,0.5); margin-top: 2px; }
.testimonial__date { font-size: 10px; color: rgba(11,18,32,0.4); text-transform: uppercase; letter-spacing: 0.15em; margin-top: 4px; }

/* Geography */
.geography__grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.geography__main { padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; border-radius: 32px; background-color: #0f172a; color: #ffffff; min-height: 320px; }
.geography__main-kicker { font-size: 12px; font-weight: 700; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.geography__main-title { font-weight: 800; font-size: 28px; margin-bottom: 24px; }
.geography__cities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 480px; }
.geography__city { padding-top: 8px; padding-bottom: 8px; padding-left: 16px; padding-right: 16px; background-color: rgba(255,255,255,0.1); border-radius: 999px; font-size: 14px; font-weight: 500; text-align: center; }
.geography__aside { display: flex; flex-direction: column; gap: 24px; }
.geography__card { padding-top: 32px; padding-bottom: 32px; padding-left: 32px; padding-right: 32px; border-radius: 28px; background-color: #f4f4f5; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); }
.geography__card-kicker { font-size: 12px; font-weight: 700; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.geography__card-title { font-weight: 700; font-size: 20px; margin-bottom: 12px; }
.geography__card-text { color: rgba(11,18,32,0.6); line-height: 1.6; font-size: 14px; }

/* Compare */
.compare__wrap { overflow-x: auto; border-radius: 28px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); }
.compare__table { width: 100%; min-width: 720px; border-collapse: collapse; text-align: left; }
.compare__row { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(0,0,0,0.05); }
.compare__th { padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; background-color: #f4f4f5; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(11,18,32,0.5); }
.compare__th--accent { background-color: #4f46e5; color: #ffffff; }
.compare__td-key { padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; font-weight: 700; color: #0f172a; font-size: 14px; }
.compare__td { padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: rgba(11,18,32,0.6); font-size: 14px; }
.compare__td--accent { background-color: rgba(79,70,229,0.05); font-weight: 600; color: #0f172a; }

/* Home FAQ */
.home-faq { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; }
.home-faq__phone { color: #4f46e5; font-weight: 700; text-decoration: none; display: inline-block; margin-top: 16px; }
.home-faq__list { border-top-width: 1px; border-bottom-width: 1px; border-top-style: solid; border-bottom-style: solid; border-top-color: rgba(0,0,0,0.1); border-bottom-color: rgba(0,0,0,0.1); }
.faq-item { padding-top: 20px; padding-bottom: 20px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(0,0,0,0.06); }
.faq-item__head { background-color: transparent; border-style: none; width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; text-align: left; }
.faq-item__q { font-weight: 700; font-size: 17px; }
.faq-item__sign { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background-color: #f4f4f5; color: #4f46e5; border-radius: 999px; font-weight: 700; font-size: 18px; transition: transform 0.2s; flex-shrink: 0; }
.faq-item__sign--open { transform: rotate(45deg); }
.faq-item__body { margin-top: 16px; }
.faq-item__a { color: rgba(11,18,32,0.65); line-height: 1.6; }

/* CTA */
.cta { padding-bottom: 80px; }
.cta__inner { background-color: #0f172a; border-radius: 40px; padding-top: 80px; padding-bottom: 80px; padding-left: 60px; padding-right: 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cta__intro { color: #ffffff; }
.cta__title { font-weight: 800; font-size: 44px; line-height: 1.1; margin-bottom: 24px; }
.cta__lead { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 32px; line-height: 1.6; }
.cta__phone, .cta__mail { display: block; color: rgba(255,255,255,0.85); text-decoration: none; margin-bottom: 12px; }
.cta__phone--hover, .cta__mail--hover { color: #4f46e5; }
.cta__addr { color: rgba(255,255,255,0.7); }
.cta-form { background-color: rgba(255,255,255,0.05); padding-top: 32px; padding-bottom: 32px; padding-left: 32px; padding-right: 32px; border-radius: 28px; border-width: 1px; border-style: solid; border-color: rgba(255,255,255,0.1); }
.cta-form__label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; color: rgba(255,255,255,0.4); margin-bottom: 8px; margin-top: 12px; }
.cta-form__input, .cta-form__textarea { width: 100%; padding-top: 14px; padding-bottom: 14px; padding-left: 20px; padding-right: 20px; border-radius: 12px; background-color: rgba(255,255,255,0.1); border-width: 1px; border-style: solid; border-color: rgba(255,255,255,0.1); color: #ffffff; font-size: 14px; font-family: inherit; }
.cta-form__textarea { resize: none; }
.cta-form__submit { width: 100%; background-color: #4f46e5; color: #ffffff; padding-top: 16px; padding-bottom: 16px; border-radius: 12px; font-weight: 700; border-style: none; cursor: pointer; margin-top: 16px; font-size: 15px; }
.cta-form__submit--hover { background-color: #6366f1; }
.cta-form__legal { font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 12px; }

/* ===== About page ===== */
.about-hero {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #f4f4f5;
  border-radius: 0;
}
.about-hero__title { font-weight: 800; font-size: 48px; letter-spacing: -0.02em; margin-bottom: 20px; line-height: 1.1; }
.about-hero__accent { color: #4f46e5; }
.about-hero__lead { font-size: 18px; color: rgba(11,18,32,0.7); line-height: 1.6; margin-bottom: 16px; }
.about-hero__text { color: rgba(11,18,32,0.6); line-height: 1.6; margin-bottom: 24px; }
.about-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.about-hero__btn-primary { background-color: #4f46e5; color: #ffffff; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.about-hero__btn-secondary { background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); color: #0f172a; padding-top: 12px; padding-bottom: 12px; padding-left: 24px; padding-right: 24px; border-radius: 999px; text-decoration: none; font-weight: 600; }
.about-stats { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 48px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-stat { padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; border-radius: 16px; background-color: #f4f4f5; text-align: center; }
.about-stat__value { font-weight: 800; font-size: 32px; color: #4f46e5; }
.about-stat__label { font-size: 14px; color: rgba(11,18,32,0.6); margin-top: 4px; }
.mission { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 64px; padding-bottom: 64px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: 1fr 2fr; gap: 32px; }
.mission__title { font-weight: 800; font-size: 32px; line-height: 1.15; letter-spacing: -0.01em; }
.mission__text { color: rgba(11,18,32,0.7); line-height: 1.7; margin-bottom: 16px; }
.values { background-color: #f4f4f5; padding-top: 64px; padding-bottom: 64px; padding-left: 16px; padding-right: 16px; }
.values__head { text-align: center; margin-bottom: 40px; }
.values__title { font-weight: 800; font-size: 32px; }
.values__grid { max-width: 1200px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.value-card { padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; border-radius: 16px; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); }
.value-card__icon { width: 48px; height: 48px; border-radius: 12px; background-color: rgba(79,70,229,0.1); display: flex; align-items: center; justify-content: center; color: #4f46e5; font-size: 22px; margin-bottom: 16px; }
.value-card__title { font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.value-card__text { font-size: 14px; color: rgba(11,18,32,0.6); line-height: 1.5; }
.timeline { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 64px; padding-bottom: 64px; padding-left: 16px; padding-right: 16px; }
.timeline__head { text-align: center; margin-bottom: 40px; }
.timeline__title { font-weight: 800; font-size: 32px; }
.timeline__list { max-width: 720px; margin-left: auto; margin-right: auto; border-left-width: 2px; border-left-style: solid; border-left-color: rgba(79,70,229,0.2); padding-left: 32px; }
.timeline__item { padding-bottom: 32px; }
.timeline__year { font-size: 12px; font-weight: 700; color: #4f46e5; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 4px; }
.timeline__t { font-weight: 800; font-size: 18px; margin-bottom: 4px; }
.timeline__text { color: rgba(11,18,32,0.7); line-height: 1.6; }
.team { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 64px; padding-bottom: 64px; padding-left: 16px; padding-right: 16px; }
.team__head { text-align: center; margin-bottom: 40px; }
.team__title { font-weight: 800; font-size: 32px; }
.team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; border-radius: 16px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); text-align: center; }
.team-card__avatar { width: 80px; height: 80px; border-radius: 999px; background-color: #4f46e5; color: #ffffff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 24px; margin-left: auto; margin-right: auto; margin-bottom: 12px; }
.team-card__name { font-weight: 700; font-size: 16px; }
.team-card__role { font-size: 13px; color: rgba(11,18,32,0.6); margin-top: 4px; }
.docs-block { max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.docs-block__intro { background-color: #0f172a; color: #ffffff; border-radius: 24px; padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.docs-block__title { font-weight: 800; font-size: 24px; margin-bottom: 12px; }
.docs-block__text { color: rgba(255,255,255,0.7); line-height: 1.6; }
.docs-block__list { list-style-type: none; }
.docs-block__item { color: rgba(255,255,255,0.9); margin-bottom: 12px; }

/* ===== Vacancies page ===== */
.vac-hero { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 60px; padding-bottom: 60px; padding-left: 16px; padding-right: 16px; background-color: #f4f4f5; }
.vac-hero__title { font-weight: 800; font-size: 44px; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.vac-filter { max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; margin-top: -40px; position: relative; z-index: 10; background-color: #ffffff; border-radius: 16px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); padding-top: 24px; padding-bottom: 24px; box-shadow: 0 10px 30px rgba(11,18,32,0.05); display: flex; flex-direction: column; gap: 16px; }
.vac-filter__search { width: 100%; padding-top: 12px; padding-bottom: 12px; padding-left: 16px; padding-right: 16px; border-radius: 12px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); font-size: 15px; font-family: inherit; }
.vac-filter__cats { display: flex; flex-wrap: wrap; gap: 8px; }
.vac-filter__cat { padding-top: 6px; padding-bottom: 6px; padding-left: 12px; padding-right: 12px; border-radius: 999px; font-size: 13px; font-weight: 600; background-color: #ffffff; color: rgba(11,18,32,0.7); border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); cursor: pointer; }
.vac-filter__cat--active { background-color: #0f172a; color: #ffffff; border-color: #0f172a; }
.vac-filter__sort { padding-top: 10px; padding-bottom: 10px; padding-left: 16px; padding-right: 16px; border-radius: 12px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); font-size: 14px; font-weight: 600; background-color: #ffffff; font-family: inherit; }
.vac-filter__count { font-size: 12px; color: rgba(11,18,32,0.5); }
.vac-filter__count-num { color: #0f172a; }
.vac-list { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 40px; padding-bottom: 40px; padding-left: 16px; padding-right: 16px; display: flex; flex-direction: column; gap: 24px; }
.vac-card { background-color: #ffffff; border-radius: 28px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); overflow: hidden; box-shadow: 0 2px 8px rgba(11,18,32,0.04); }
.vac-card__head { width: 100%; background-color: transparent; border-style: none; padding-top: 24px; padding-bottom: 24px; padding-left: 28px; padding-right: 28px; display: flex; align-items: flex-start; gap: 16px; cursor: pointer; text-align: left; }
.vac-card__body { flex-grow: 1; min-width: 0; }
.vac-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }
.vac-card__tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #4f46e5; background-color: rgba(79,70,229,0.1); padding-top: 4px; padding-bottom: 4px; padding-left: 10px; padding-right: 10px; border-radius: 999px; }
.vac-card__info { font-size: 12px; color: rgba(11,18,32,0.5); }
.vac-card__title { font-weight: 800; font-size: 22px; letter-spacing: -0.01em; line-height: 1.2; margin-bottom: 4px; }
.vac-card__salary { color: #4f46e5; font-weight: 700; font-size: 16px; }
.vac-card__short { color: rgba(11,18,32,0.6); font-size: 14px; margin-top: 8px; }
.vac-card__sign { width: 40px; height: 40px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background-color: #f4f4f5; color: #4f46e5; font-weight: 700; font-size: 22px; border-radius: 999px; transition: transform 0.2s; }
.vac-card__sign--open { transform: rotate(45deg); }
.vac-card__expand { padding-top: 24px; padding-bottom: 28px; padding-left: 28px; padding-right: 28px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.05); }
.vac-card__expand-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; }
.vac-card__sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vac-card__section-title { font-weight: 700; margin-bottom: 8px; }
.vac-card__section-list { list-style-type: none; }
.vac-card__section-li { font-size: 14px; color: rgba(11,18,32,0.7); margin-bottom: 6px; }
.vac-card__aside { background-color: rgba(244,244,245,0.6); border-radius: 24px; padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; align-self: flex-start; display: flex; flex-direction: column; gap: 16px; }
.vac-card__aside-key { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(11,18,32,0.5); font-weight: 700; margin-bottom: 4px; }
.vac-card__aside-val { font-weight: 800; font-size: 20px; color: #0f172a; }
.vac-card__aside-row { font-size: 14px; color: rgba(11,18,32,0.7); margin-bottom: 4px; }
.vac-card__aside-btn { display: block; text-align: center; background-color: #4f46e5; color: #ffffff; padding-top: 12px; padding-bottom: 12px; border-radius: 12px; font-weight: 700; text-decoration: none; }
.vac-card__aside-call { display: block; text-align: center; background-color: #ffffff; padding-top: 12px; padding-bottom: 12px; border-radius: 12px; font-weight: 600; color: #0f172a; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); text-decoration: none; }
.vac-cta { max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.vac-cta { background-color: #0f172a; color: #ffffff; border-radius: 32px; padding-top: 56px; padding-bottom: 56px; padding-left: 40px; padding-right: 40px; text-align: center; }
.vac-cta__title { font-weight: 800; font-size: 28px; margin-bottom: 12px; }
.vac-cta__lead { color: rgba(255,255,255,0.7); max-width: 480px; margin-left: auto; margin-right: auto; margin-bottom: 24px; }
.vac-cta__btn { display: inline-block; background-color: #4f46e5; color: #ffffff; padding-top: 14px; padding-bottom: 14px; padding-left: 32px; padding-right: 32px; border-radius: 12px; font-weight: 700; text-decoration: none; }
.vac-empty { padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; text-align: center; color: rgba(11,18,32,0.6); background-color: #f4f4f5; border-radius: 24px; }

/* ===== FAQ page ===== */
.faq-hero { max-width: 900px; margin-left: auto; margin-right: auto; padding-top: 60px; padding-bottom: 60px; padding-left: 16px; padding-right: 16px; background-color: #f4f4f5; }
.faq-hero__title { font-weight: 800; font-size: 44px; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 16px; }
.faq-group { max-width: 900px; margin-left: auto; margin-right: auto; padding-top: 40px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; }
.faq-group__title { font-weight: 800; font-size: 26px; margin-bottom: 16px; }
.faq-group__list { display: flex; flex-direction: column; gap: 12px; }
.faq-group__list .faq-item { background-color: rgba(244,244,245,0.6); border-radius: 16px; padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); }

/* ===== Contacts page ===== */
.ct-hero { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 60px; padding-bottom: 60px; padding-left: 16px; padding-right: 16px; background-color: #f4f4f5; }
.ct-hero__title { font-weight: 800; font-size: 44px; letter-spacing: -0.02em; margin-bottom: 16px; line-height: 1.1; }
.ct-cards { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 48px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ct-card { padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; border-radius: 16px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); background-color: #ffffff; text-decoration: none; color: inherit; display: block; }
.ct-card--hover { border-color: rgba(79,70,229,0.4); }
.ct-card__icon { width: 40px; height: 40px; border-radius: 12px; background-color: rgba(79,70,229,0.1); display: flex; align-items: center; justify-content: center; color: #4f46e5; margin-bottom: 12px; }
.ct-card__title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(11,18,32,0.5); font-weight: 700; margin-bottom: 4px; }
.ct-card__value { font-weight: 700; word-break: break-word; }
.ct-card__note { font-size: 12px; color: rgba(11,18,32,0.5); margin-top: 4px; }
.ct-hours-map { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 16px; padding-bottom: 48px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.ct-hours { padding-top: 28px; padding-bottom: 28px; padding-left: 28px; padding-right: 28px; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); background-color: #ffffff; }
.ct-hours__title { font-weight: 800; font-size: 22px; margin-bottom: 16px; }
.ct-hours__list { list-style-type: none; }
.ct-hours__row { display: flex; justify-content: space-between; padding-top: 10px; padding-bottom: 10px; border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgba(0,0,0,0.05); font-size: 15px; }
.ct-hours__day { font-weight: 500; }
.ct-hours__time { font-weight: 600; }
.ct-hours__time-off { color: rgba(11,18,32,0.4); }
.ct-hours__note { margin-top: 16px; padding-top: 14px; padding-bottom: 14px; padding-left: 16px; padding-right: 16px; border-radius: 12px; background-color: #f4f4f5; font-size: 14px; color: rgba(11,18,32,0.7); }
.ct-hours__note-key { color: #0f172a; }
.ct-map { border-radius: 24px; overflow: hidden; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); background-color: #f4f4f5; }
.ct-map__frame { width: 100%; height: 360px; display: block; border-style: none; }
.ct-map__info { padding-top: 16px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; background-color: #ffffff; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.1); }
.ct-map__title { font-weight: 700; }
.ct-map__addr { font-size: 14px; color: rgba(11,18,32,0.6); margin-top: 4px; }
.ct-map__link { display: inline-block; margin-top: 8px; color: #4f46e5; font-weight: 700; text-decoration: none; font-size: 14px; }
.requisites { max-width: 1200px; margin-left: auto; margin-right: auto; padding-bottom: 48px; padding-left: 16px; padding-right: 16px; }
.requisites { padding-top: 40px; padding-bottom: 40px; padding-left: 40px; padding-right: 40px; border-radius: 24px; background-color: #0f172a; color: #ffffff; }
.requisites__kicker { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 8px; }
.requisites__title { font-weight: 800; font-size: 26px; margin-bottom: 24px; }
.requisites__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.requisites__col { display: flex; flex-direction: column; gap: 16px; }
.requisites__row { display: block; }
.requisites__k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 4px; }
.requisites__v { font-size: 15px; color: #ffffff; font-weight: 500; word-break: break-word; }
.requisites__legal { margin-top: 24px; font-size: 12px; color: rgba(255,255,255,0.4); }
.ct-form { max-width: 720px; margin-left: auto; margin-right: auto; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.ct-form { padding-top: 28px; padding-bottom: 28px; padding-left: 28px; padding-right: 28px; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); background-color: #ffffff; }
.ct-form__title { font-weight: 800; font-size: 26px; margin-bottom: 4px; }
.ct-form__lead { color: rgba(11,18,32,0.6); margin-bottom: 16px; font-size: 14px; }
.ct-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.ct-form__input, .ct-form__textarea { width: 100%; padding-top: 12px; padding-bottom: 12px; padding-left: 16px; padding-right: 16px; border-radius: 12px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); font-size: 14px; font-family: inherit; }
.ct-form__textarea { resize: none; margin-bottom: 12px; }
.ct-form__submit { width: 100%; background-color: #4f46e5; color: #ffffff; padding-top: 14px; padding-bottom: 14px; border-radius: 12px; font-weight: 700; border-style: none; cursor: pointer; font-size: 15px; }
.ct-form__legal { font-size: 11px; color: rgba(11,18,32,0.4); text-align: center; margin-top: 12px; }

/* ===== Legal pages ===== */
.legal { max-width: 800px; margin-left: auto; margin-right: auto; padding-top: 64px; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.legal__title { font-weight: 800; font-size: 40px; margin-bottom: 16px; line-height: 1.1; }
.legal__rev { color: rgba(11,18,32,0.6); margin-bottom: 24px; }
.legal__h2 { font-weight: 700; font-size: 22px; margin-top: 32px; margin-bottom: 12px; }
.legal__p { line-height: 1.7; color: rgba(11,18,32,0.85); margin-bottom: 12px; }
.legal__ul { list-style-type: disc; padding-left: 24px; margin-top: 8px; margin-bottom: 8px; }
.legal__li { line-height: 1.6; margin-bottom: 4px; }
.legal__link { color: #4f46e5; text-decoration: none; }

/* ===== Footer ===== */
.footer { background-color: #0f172a; color: rgba(255,255,255,0.7); margin-top: 80px; }
.footer__inner { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 56px; padding-bottom: 56px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; font-size: 14px; }
.footer__col { display: block; }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand-icon { width: 36px; height: 36px; background-color: #4f46e5; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.footer__brand-text { font-weight: 800; font-size: 18px; color: #ffffff; text-transform: uppercase; }
.footer__about { line-height: 1.6; }
.footer__founder { margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.4); }
.footer__title { color: #ffffff; font-weight: 600; margin-bottom: 16px; }
.footer__list { list-style-type: none; }
.footer__item { margin-bottom: 8px; }
.footer__link { color: inherit; text-decoration: none; }
.footer__link--hover { color: #4f46e5; }
.footer__addr { line-height: 1.6; }
.footer__small { font-size: 12px; margin-top: 8px; }
.footer__phone, .footer__mail { margin-top: 12px; }
.footer__bottom { border-top-width: 1px; border-top-style: solid; border-top-color: rgba(255,255,255,0.1); }
.footer__copy, .footer__legal { font-size: 12px; color: rgba(255,255,255,0.4); padding-top: 16px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; max-width: 1200px; margin-left: auto; margin-right: auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__copy { padding-bottom: 4px; }
.footer__legal { padding-top: 4px; }

/* ===== Cookie banner ===== */
.cookie { position: fixed; left: 16px; bottom: 16px; max-width: 380px; z-index: 40; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); border-radius: 16px; padding-top: 16px; padding-bottom: 16px; padding-left: 20px; padding-right: 20px; box-shadow: 0 20px 50px rgba(0,0,0,0.2); }
.cookie__text { font-size: 13px; color: rgba(11,18,32,0.8); line-height: 1.5; }
.cookie__link { color: #4f46e5; font-weight: 600; }
.cookie__actions { display: flex; gap: 8px; margin-top: 12px; }
.cookie__accept { background-color: #4f46e5; color: #ffffff; padding-top: 8px; padding-bottom: 8px; padding-left: 16px; padding-right: 16px; border-radius: 8px; font-weight: 700; font-size: 13px; border-style: none; cursor: pointer; }
.cookie__more { padding-top: 8px; padding-bottom: 8px; padding-left: 16px; padding-right: 16px; border-radius: 8px; font-size: 13px; font-weight: 600; color: rgba(11,18,32,0.7); text-decoration: none; }

/* ===== Chat ===== */
.chat-btn { position: fixed; bottom: 16px; right: 16px; z-index: 40; background-color: #ffffff; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); border-radius: 999px; padding-top: 6px; padding-bottom: 6px; padding-left: 6px; padding-right: 20px; display: flex; align-items: center; gap: 12px; cursor: pointer; box-shadow: 0 20px 40px rgba(0,0,0,0.15); }
.chat-btn--hover { box-shadow: 0 20px 40px rgba(79,70,229,0.25); }
.chat-btn[hidden] { display: none; }
.chat-btn__avatar { width: 44px; height: 44px; border-radius: 999px; object-fit: cover; }
.chat-btn__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.chat-btn__title { font-size: 11px; color: rgba(11,18,32,0.5); }
.chat-btn__sub { font-size: 14px; font-weight: 700; color: #0f172a; }
.chat { position: fixed; bottom: 16px; right: 16px; z-index: 50; width: 380px; max-width: calc(100vw - 32px); background-color: #ffffff; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); box-shadow: 0 30px 60px rgba(0,0,0,0.3); display: flex; flex-direction: column; overflow: hidden; }
.chat[hidden] { display: none; }
.chat__head { display: flex; align-items: center; gap: 12px; padding-top: 16px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; background-color: #4f46e5; color: #ffffff; }
.chat__avatar { width: 48px; height: 48px; border-radius: 999px; object-fit: cover; border-width: 2px; border-style: solid; border-color: rgba(255,255,255,0.4); }
.chat__head-info { flex-grow: 1; min-width: 0; }
.chat__head-name { font-weight: 700; }
.chat__head-status { font-size: 12px; color: rgba(255,255,255,0.85); }
.chat__close { width: 36px; height: 36px; border-radius: 999px; background-color: rgba(255,255,255,0.15); border-style: none; color: #ffffff; cursor: pointer; font-size: 22px; line-height: 1; }
.chat__body { padding-top: 16px; padding-bottom: 16px; padding-left: 16px; padding-right: 16px; display: flex; flex-direction: column; gap: 12px; max-height: 55vh; overflow-y: auto; background-color: rgba(244,244,245,0.4); }
.chat__msg { max-width: 80%; padding-top: 10px; padding-bottom: 10px; padding-left: 16px; padding-right: 16px; border-radius: 16px; font-size: 14px; line-height: 1.5; }
.chat__msg--bot { background-color: #ffffff; color: #0f172a; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat__msg--user { background-color: #4f46e5; color: #ffffff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat__form { padding-top: 12px; padding-bottom: 12px; padding-left: 12px; padding-right: 12px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.05); background-color: #ffffff; display: flex; gap: 8px; }
.chat__input { flex-grow: 1; min-width: 0; padding-top: 10px; padding-bottom: 10px; padding-left: 16px; padding-right: 16px; border-radius: 12px; background-color: rgba(244,244,245,0.6); border-style: none; font-size: 14px; font-family: inherit; outline-style: none; }
.chat__send { width: 44px; height: 44px; flex-shrink: 0; background-color: #4f46e5; color: #ffffff; border-style: none; border-radius: 12px; cursor: pointer; font-weight: 700; }

/* ===== Active link ===== */
.nav__link--active { color: #4f46e5; font-weight: 700; }
.mobile-menu__link--active { color: #4f46e5; font-weight: 700; }

/* ===== Tablet ===== */
@media (max-width: 1024px) {
  .nav__list { display: none; }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; margin-left: auto; flex-shrink: 0; }

  .hero { grid-template-columns: 1fr; text-align: center; padding-top: 32px; padding-bottom: 40px; }
  .hero__title { font-size: 38px; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { margin-left: auto; margin-right: auto; }
  .hero__media { display: none; }

  .trusted__grid { grid-template-columns: repeat(3, 1fr); }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .services__grid, .cases__grid, .testimonials__grid, .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .calculator { grid-template-columns: 1fr; gap: 32px; }
  .industries { grid-template-columns: 1fr; gap: 32px; }
  .home-faq { grid-template-columns: 1fr; gap: 32px; }
  .cta__inner { grid-template-columns: 1fr; padding-top: 48px; padding-bottom: 48px; padding-left: 28px; padding-right: 28px; }
  .cta__title { font-size: 32px; }
  .guarantees__inner { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 40px; padding-left: 28px; padding-right: 28px; }
  .geography__grid { grid-template-columns: 1fr; }
  .geography__cities { grid-template-columns: repeat(2, 1fr); }
  .mission { grid-template-columns: 1fr; }
  .values__grid, .team__grid { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .docs-block__intro { grid-template-columns: 1fr; }
  .ct-cards { grid-template-columns: 1fr 1fr; }
  .ct-hours-map { grid-template-columns: 1fr; }
  .requisites__cols { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .vac-card__expand-grid { grid-template-columns: 1fr; }
  .vac-card__sections { grid-template-columns: 1fr; }

  .services__title, .cases__title, .advantages__title, .pricing__title, .calculator__title, .industries__title, .testimonials__title, .geography__title, .compare__title, .home-faq__title, .guarantees__title, .process__title, .vac-hero__title, .faq-hero__title, .ct-hero__title, .about-hero__title { font-size: 32px; }
}

/* ===== Mobile ===== */
@media (max-width: 640px) {
  .topbar__hours { display: none; }
  .topbar__brand { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .nav__logo-text { font-size: 16px; }
  .nav__logo-icon { width: 36px; height: 36px; font-size: 18px; }
  .hero__title { font-size: 28px; }
  .hero__lead { font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; justify-content: center; }
  .hero__btn-primary, .hero__btn-secondary { width: 100%; text-align: center; display: block; }
  .hero__caption { display: none; }
  .trusted__grid { grid-template-columns: repeat(2, 1fr); }
  .metrics__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .metrics__value { font-size: 36px; }
  .services__grid, .cases__grid, .testimonials__grid, .pricing__grid, .advantages__grid, .process__grid, .values__grid, .team__grid, .ct-cards, .industries__metrics, .about-stats { grid-template-columns: 1fr; }
  .guarantees__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 24px; }
  .geography__cities { grid-template-columns: repeat(2, 1fr); }
  .services, .cases, .advantages, .pricing, .calculator, .industries, .testimonials, .geography, .compare, .home-faq, .cta, .guarantees, .process { padding-top: 56px; padding-bottom: 56px; }
  .cta__inner { padding-left: 20px; padding-right: 20px; }
  .cta__title { font-size: 26px; }
  .services__title, .cases__title, .advantages__title, .pricing__title, .calculator__title, .industries__title, .testimonials__title, .geography__title, .compare__title, .home-faq__title, .guarantees__title, .process__title, .vac-hero__title, .faq-hero__title, .ct-hero__title, .about-hero__title { font-size: 26px; }
  .ct-form__row { grid-template-columns: 1fr; }
  .chat { width: auto; left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .vac-card__head { padding-top: 16px; padding-bottom: 16px; padding-left: 18px; padding-right: 18px; }
  .vac-card__title { font-size: 18px; }
  .chat-btn__text { display: none; }
  .chat-btn { padding-top: 4px; padding-bottom: 4px; padding-left: 4px; padding-right: 4px; bottom: 12px; right: 12px; }
  .cookie { left: 12px; right: 12px; max-width: none; bottom: 84px; }
}

/* === New sections sync with React === */

/* Compare sub-text */
.compare__td-sub { display: block; font-size: 11px; color: rgba(11,18,32,0.4); margin-top: 4px; }

/* Testimonials note */
.testimonials__note { margin-top: 24px; text-align: center; font-size: 13px; color: rgba(11,18,32,0.5); }

/* Home Team */
.home-team { background-color: #f1f5f9; padding-top: 80px; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.home-team__head { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 56px; }
.home-team__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.home-team__title { font-weight: 800; font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.home-team__lead { font-size: 17px; color: rgba(11,18,32,0.6); line-height: 1.6; }
.home-team__grid { max-width: 1200px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.hteam-card { background-color: #ffffff; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; }
.hteam-card__avatar { width: 64px; height: 64px; border-radius: 16px; background-image: linear-gradient(135deg, #4f46e5, #6366f1); color: #ffffff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 20px; margin-bottom: 20px; }
.hteam-card__name { font-weight: 700; font-size: 16px; line-height: 1.2; margin-bottom: 4px; }
.hteam-card__role { font-size: 13px; color: #4f46e5; font-weight: 500; margin-bottom: 12px; }
.hteam-card__exp { font-size: 12px; color: rgba(11,18,32,0.5); }

/* Home About */
.home-about { background-color: #0f172a; color: #ffffff; padding-top: 80px; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.home-about__inner { max-width: 1200px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.home-about__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.home-about__title { font-weight: 800; font-size: 36px; line-height: 1.15; margin-bottom: 24px; }
.home-about__lead { font-size: 17px; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 20px; }
.home-about__text { color: rgba(255,255,255,0.6); line-height: 1.7; }
.home-about__facts { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background-color: rgba(255,255,255,0.1); border-radius: 24px; overflow: hidden; }
.home-about__fact { background-color: #0f172a; padding-top: 24px; padding-bottom: 24px; padding-left: 24px; padding-right: 24px; }
.home-about__fact-k { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 8px; }
.home-about__fact-v { font-weight: 700; font-size: 18px; }

/* Home Docs (PDF cards) */
.home-docs { background-color: #f1f5f9; padding-top: 80px; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; }
.home-docs__head { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; margin-bottom: 48px; }
.home-docs__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.home-docs__title { font-weight: 800; font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.home-docs__lead { font-size: 17px; color: rgba(11,18,32,0.6); line-height: 1.6; }
.home-docs__grid { max-width: 1200px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 40px; }
.doc-card { display: flex; flex-direction: column; gap: 12px; background-color: #ffffff; border-radius: 16px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; text-decoration: none; color: inherit; transition-property: border-color; transition-duration: 0.2s; }
.doc-card:hover { border-color: rgba(79,70,229,0.4); }
.doc-card__badge { width: 44px; height: 44px; border-radius: 12px; background-color: rgba(79,70,229,0.1); color: #4f46e5; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; }
.doc-card__title { font-weight: 700; font-size: 15px; line-height: 1.2; }
.doc-card__sub { font-size: 12px; color: rgba(11,18,32,0.5); margin-top: 4px; }
.doc-card__foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.05); font-size: 12px; color: rgba(11,18,32,0.4); }
.doc-card__arrow { color: #4f46e5; font-weight: 700; }
.home-docs__members { max-width: 1200px; margin-left: auto; margin-right: auto; background-color: #ffffff; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); padding-top: 28px; padding-bottom: 28px; padding-left: 32px; padding-right: 32px; }
.home-docs__members-kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 16px; }
.home-docs__members-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.member { display: flex; gap: 12px; align-items: flex-start; }
.member__badge { width: 40px; height: 40px; border-radius: 8px; background-color: #0f172a; color: #ffffff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 12px; flex-shrink: 0; }
.member__t { font-weight: 700; font-size: 14px; }
.member__d { font-size: 12px; color: rgba(11,18,32,0.55); line-height: 1.4; margin-top: 4px; }

/* Home Blog */
.home-blog { padding-top: 80px; padding-bottom: 80px; padding-left: 16px; padding-right: 16px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.home-blog__head { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.home-blog__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.home-blog__title { font-weight: 800; font-size: 36px; line-height: 1.15; margin-bottom: 16px; }
.home-blog__lead { font-size: 17px; color: rgba(11,18,32,0.6); line-height: 1.6; }
.home-blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.post { display: flex; flex-direction: column; background-color: #ffffff; border-radius: 24px; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); padding-top: 28px; padding-bottom: 28px; padding-left: 28px; padding-right: 28px; transition-property: border-color; transition-duration: 0.2s; }
.post:hover { border-color: rgba(79,70,229,0.3); }
.post__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.post__tag { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: #4f46e5; background-color: rgba(79,70,229,0.1); padding-top: 4px; padding-bottom: 4px; padding-left: 12px; padding-right: 12px; border-radius: 999px; }
.post__date { font-size: 12px; color: rgba(11,18,32,0.4); }
.post__title { font-weight: 700; font-size: 18px; line-height: 1.35; margin-bottom: 16px; flex-grow: 1; }
.post__foot { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top-width: 1px; border-top-style: solid; border-top-color: rgba(0,0,0,0.05); }
.post__read { font-size: 12px; color: rgba(11,18,32,0.5); }
.post__arrow { color: #4f46e5; font-weight: 700; }

/* About hero with image */
.about-hero { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 56px; padding-bottom: 56px; padding-left: 16px; padding-right: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-hero__media { border-radius: 28px; overflow: hidden; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); box-shadow: 0 20px 50px -20px rgba(15,23,42,0.25); }
.about-hero__image { width: 100%; height: 380px; object-fit: cover; display: block; }

/* Office gallery */
.office { max-width: 1200px; margin-left: auto; margin-right: auto; padding-top: 64px; padding-bottom: 64px; padding-left: 16px; padding-right: 16px; background-color: #f1f5f9; border-radius: 24px; margin-bottom: 32px; }
.office__head { text-align: center; margin-bottom: 32px; }
.office__kicker { font-weight: 800; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #4f46e5; margin-bottom: 12px; }
.office__title { font-weight: 800; font-size: 28px; margin-bottom: 12px; }
.office__lead { max-width: 640px; margin-left: auto; margin-right: auto; color: rgba(11,18,32,0.6); line-height: 1.6; }
.office__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.office__item { border-radius: 16px; overflow: hidden; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.05); background-color: #ffffff; aspect-ratio: 4 / 3; }
.office__img { width: 100%; height: 100%; object-fit: cover; display: block; transition-property: transform; transition-duration: 0.5s; }
.office__img:hover { transform: scale(1.05); }

/* About CTA */
.about-cta { max-width: 880px; margin-left: auto; margin-right: auto; margin-top: 48px; padding-top: 56px; padding-bottom: 56px; padding-left: 32px; padding-right: 32px; background-color: #f1f5f9; border-radius: 32px; text-align: center; }
.about-cta__icon { font-size: 40px; margin-bottom: 16px; }
.about-cta__title { font-weight: 800; font-size: 28px; margin-bottom: 12px; }
.about-cta__lead { max-width: 560px; margin-left: auto; margin-right: auto; color: rgba(11,18,32,0.7); line-height: 1.6; margin-bottom: 28px; }
.about-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.about-cta__btn-primary { background-color: #4f46e5; color: #ffffff; padding-top: 14px; padding-bottom: 14px; padding-left: 28px; padding-right: 28px; border-radius: 14px; font-weight: 700; text-decoration: none; }
.about-cta__btn-secondary { background-color: #ffffff; color: #0f172a; padding-top: 14px; padding-bottom: 14px; padding-left: 28px; padding-right: 28px; border-radius: 14px; font-weight: 700; text-decoration: none; border-width: 1px; border-style: solid; border-color: rgba(0,0,0,0.1); }

/* FAQ CTA */
.faq-cta { max-width: 800px; margin-left: auto; margin-right: auto; margin-top: 48px; padding-top: 48px; padding-bottom: 48px; padding-left: 32px; padding-right: 32px; background-color: #0f172a; color: #ffffff; border-radius: 28px; text-align: center; }
.faq-cta__title { font-weight: 800; font-size: 28px; margin-bottom: 8px; }
.faq-cta__lead { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.faq-cta__btn { display: inline-block; background-color: #4f46e5; color: #ffffff; padding-top: 14px; padding-bottom: 14px; padding-left: 32px; padding-right: 32px; border-radius: 14px; font-weight: 700; text-decoration: none; }

/* Responsive — collapse multi-col grids on tablet/mobile */
@media (max-width: 1024px) {
  .home-team__grid, .home-docs__grid, .home-docs__members-grid, .office__grid { grid-template-columns: repeat(2, 1fr); }
  .home-blog__grid { grid-template-columns: repeat(2, 1fr); }
  .home-about__inner, .about-hero { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .home-team__grid, .home-docs__grid, .home-docs__members-grid, .office__grid, .home-blog__grid, .home-about__facts { grid-template-columns: 1fr; }
  .home-team__title, .home-about__title, .home-docs__title, .home-blog__title { font-size: 28px; }
  .about-hero__image { height: 240px; }
}
