/* ============================================================
   Яркотревел — «Как стать туроператором?»
   Design tokens + styles
   ============================================================ */
:root {
  --green:       #6FA63C;
  --green-700:   #5A8A30;
  --green-050:   #F1F6EA;
  --green-100:   #E4EFD6;
  --orange:      #F4A423;
  --orange-600:  #EE9100;
  --orange-050:  #FDF3E1;
  --ink:         #2A2D2A;
  --ink-soft:    #4B4F4B;
  --gray:        #767B76;
  --gray-light:  #9AA09A;
  --line:        #E7EAE4;
  --cream:       #FAF3E6;
  --bg:          #FFFFFF;
  --bg-soft:     #F8FAF5;

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(42,45,42,.05);
  --shadow:    0 14px 40px rgba(42,45,42,.08);
  --shadow-lg: 0 24px 70px rgba(42,45,42,.12);

  --container: 1200px;
  --font-head: 'Manrope', system-ui, sans-serif;
  --font-body: 'Golos Text', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: -0.01em; }

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

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-head);
  font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-700);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--green); border-radius: 2px; }

.section { padding: 104px 0; }
.section--soft { background: var(--bg-soft); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { font-size: 44px; font-weight: 800; margin: 18px 0 0; }
.section-head .lead { margin-top: 22px; color: var(--gray); font-size: 19px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
  padding: 16px 30px; border-radius: 14px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #F7B23E 0%, var(--orange-600) 100%);
  box-shadow: 0 10px 24px rgba(238,145,0,.32);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(238,145,0,.4); }
.btn--ghost { color: var(--ink); background: #fff; border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-700); transform: translateY(-2px); }
.btn--green { color: #fff; background: var(--green); box-shadow: 0 10px 24px rgba(111,166,60,.28); }
.btn--green:hover { background: var(--green-700); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--lg { padding: 19px 38px; font-size: 18px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; gap: 28px; height: 76px; }

.site-header .header-logo-wrap { flex-shrink: 0; }
.site-header .logo {
  display: block;
  width: 220px;
  height: 25px;
}
.site-header .logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-header .header-logo-sign {
  font-size: 12px;
  color: #222;
  margin-top: 3px;
  letter-spacing: 4.3px;
  font-weight: 500;
  line-height: 1.2;
}

.nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav a { font-family: var(--font-head); font-weight: 600; font-size: 16px; color: var(--ink-soft); transition: color .15s; }
.nav a:hover { color: var(--green-700); }
.site-header .btn { padding: 12px 22px; font-size: 15px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { background: linear-gradient(180deg, var(--cream) 0%, rgba(250,243,230,0) 78%); padding: 70px 0 96px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.hero__kicker { margin-bottom: 22px; }
.hero h1 { font-size: 56px; font-weight: 800; letter-spacing: -.02em; }
.hero h1 .accent { color: var(--green-700); }
.hero__sub { margin-top: 26px; font-size: 20px; color: var(--ink-soft); max-width: 560px; }
.hero__actions { display: flex; gap: 16px; margin-top: 38px; flex-wrap: wrap; }
.hero__media { position: relative; }
.hero__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero__photo picture,
.hero__img {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__img {
  object-fit: cover;
  object-position: center;
}
.hero__badge {
  position: absolute; left: -26px; bottom: 34px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px;
}
.hero__badge .num { font-family: var(--font-head); font-weight: 800; font-size: 30px; color: var(--green); }
.hero__badge .cap { font-size: 14px; color: var(--gray); line-height: 1.3; }

/* ============================================================
   ABOUT / Опыт
   ============================================================ */
.creds {
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); overflow: hidden; margin: 8px 0 52px;
}
.cred {
  padding: 38px 32px 40px; position: relative;
  border-right: 1px solid var(--line);
  transition: background .2s ease;
}
.cred:last-child { border-right: none; }
.cred:hover { background: var(--green-050); }
.cred__token {
  height: 56px; display: flex; align-items: center; margin-bottom: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 48px; line-height: 1;
  color: var(--green-700); letter-spacing: -.02em;
}
.cred__token .plus { color: var(--green); font-size: 34px; margin-left: 2px; }
.cred__badge {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-700) 100%);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(90,138,48,.28);
}
.cred__badge svg { width: 28px; height: 28px; stroke: #fff; fill: none; stroke-width: 2.6; }
.cred p { color: var(--ink-soft); font-size: 16px; line-height: 1.5; margin: 0; }
.cred::after {
  content: ""; position: absolute; left: 32px; right: 32px; top: 0; height: 3px;
  background: var(--green); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.cred:hover::after { transform: scaleX(1); }

.prose { max-width: 860px; }
.prose p { color: var(--gray); margin-top: 22px; font-size: 19px; }
.callout {
  margin-top: 36px; background: var(--green-050); border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 28px 32px;
}
.callout p { color: var(--ink-soft); margin: 0; font-size: 18px; }
.callout strong { color: var(--green-700); }

/* ============================================================
   FOR WHOM
   ============================================================ */
.forwhom-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.fw-card {
  background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--orange);
  border-radius: var(--radius-lg); padding: 38px 34px 40px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.fw-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.fw-card__num {
  position: absolute; top: 8px; right: 26px; z-index: 0;
  font-family: var(--font-head); font-weight: 800; font-size: 96px; line-height: 1;
  color: var(--orange-050); user-select: none;
}
.fw-card__icon {
  position: relative; z-index: 1;
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(150deg, #FBC56A 0%, var(--orange-600) 100%);
  display: flex; align-items: center; justify-content: center; margin-bottom: 26px;
  box-shadow: 0 8px 18px rgba(238,145,0,.26);
}
.fw-card__icon svg { width: 27px; height: 27px; stroke: #fff; fill: none; stroke-width: 2; }
.fw-card p {
  position: relative; z-index: 1; margin-top: auto;
  font-size: 20px; color: var(--ink); font-family: var(--font-head); font-weight: 600; line-height: 1.4;
  text-wrap: balance;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: start; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 42px 40px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.svc-card--featured { border: 2px solid var(--green); box-shadow: var(--shadow); }
.svc-card__flag {
  position: absolute; top: 26px; right: -42px; transform: rotate(45deg);
  background: var(--green); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 12px; letter-spacing: .08em; padding: 7px 52px; text-transform: uppercase;
}
.svc-card h3 { font-size: 27px; font-weight: 800; padding-right: 60px; }
.svc-card__price { margin-top: 18px; font-family: var(--font-head); }
.svc-card__price b { font-size: 34px; font-weight: 800; color: var(--green-700); }
.svc-card__price span { color: var(--gray); font-weight: 600; }
.svc-card__sub { margin-top: 26px; font-family: var(--font-head); font-weight: 700; font-size: 15px; letter-spacing: .04em; text-transform: uppercase; color: var(--gray-light); }
.svc-list { list-style: none; margin: 18px 0 0; display: flex; flex-direction: column; gap: 14px; }
.svc-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 17px; color: var(--ink-soft); }
.svc-list li::before {
  content: ""; flex: none; width: 22px; height: 22px; margin-top: 1px; border-radius: 50%;
  background: var(--green-050) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235A8A30' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/13px no-repeat;
}
.svc-card__result {
  margin-top: 26px; padding: 16px 20px; background: var(--green-050); border-radius: var(--radius-sm);
  font-size: 16px; color: var(--green-700); font-family: var(--font-head); font-weight: 700;
}
.svc-card__result span { color: var(--ink-soft); font-weight: 500; }
.svc-card .btn { margin-top: 30px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 900px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 20px; padding: 28px 4px;
  font-family: var(--font-head); font-weight: 700; font-size: 21px; color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--green-700); }
.faq-q__icon {
  flex: none; margin-left: auto; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--green); position: relative; transition: background .2s, border-color .2s;
}
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; background: var(--green-700); border-radius: 2px;
  top: 50%; left: 50%; transition: transform .25s ease, background .2s;
}
.faq-q__icon::before { width: 13px; height: 2.5px; transform: translate(-50%,-50%); }
.faq-q__icon::after  { width: 2.5px; height: 13px; transform: translate(-50%,-50%); }
.faq-item.open .faq-q__icon { background: var(--green); border-color: var(--green); }
.faq-item.open .faq-q__icon::before,
.faq-item.open .faq-q__icon::after { background: #fff; }
.faq-item.open .faq-q__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a__inner { padding: 0 4px 30px; color: var(--gray); font-size: 17px; }
.faq-a__inner p { margin-bottom: 14px; }
.faq-a__inner p:last-child { margin-bottom: 0; }
.faq-a__inner ul { list-style: none; margin: 6px 0 16px; display: flex; flex-direction: column; gap: 10px; }
.faq-a__inner ul li { position: relative; padding-left: 26px; }
.faq-a__inner ul li::before { content: ""; position: absolute; left: 4px; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.faq-a__inner ol { margin: 6px 0 16px 22px; display: flex; flex-direction: column; gap: 10px; }
.faq-a__inner strong { color: var(--ink-soft); }
.faq-a__inner .note { background: var(--orange-050); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--ink-soft); }

/* ============================================================
   SEO
   ============================================================ */
.seo { background: var(--bg-soft); }
.seo__box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 46px 48px;
  max-width: 900px;
  margin: 0 auto;
}
.seo__box h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 28px;
}
.seo__box h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 36px 0 16px;
}
.seo__box p {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.seo__box p:last-child { margin-bottom: 0; }
.seo__box ul {
  list-style: none;
  margin: 8px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.seo__box ul li {
  position: relative;
  padding-left: 26px;
  color: var(--gray);
  font-size: 17px;
  line-height: 1.55;
}
.seo__box ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}
.seo__media {
  margin: 8px 0 28px;
  max-width: 50%;
}
.seo__media picture,
.seo__media img {
  display: block;
  width: 100%;
  height: auto;
}
.seo__media img {
  border-radius: var(--radius);
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--ink); color: #fff; }
.contact .eyebrow { color: #C7D9AE; }
.contact .eyebrow::before { background: var(--green); }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.contact h2 { color: #fff; font-size: 42px; font-weight: 800; margin-top: 18px; }
.contact__sub { margin-top: 22px; color: #B8BDB6; font-size: 19px; max-width: 460px; }
.contact__points { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.contact__points div { display: flex; gap: 13px; align-items: center; color: #DDE2DA; font-size: 16px; }
.contact__points div::before { content: ""; width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(111,166,60,.22) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238EC25A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/14px no-repeat; }

.form { background: #fff; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form__field { margin-bottom: 20px; }
.form__field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }
.form__field label .req { color: var(--orange-600); }
.form input, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: var(--bg-soft); transition: border-color .15s, background .15s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--green); background: #fff; }
.form input.invalid, .form textarea.invalid { border-color: #E0564B; background: #FCF1F0; }
.form textarea { resize: vertical; min-height: 96px; }
.form__error { display: none; color: #E0564B; font-size: 13px; margin-top: 6px; }
.form__field.error .form__error { display: block; }
.form__note { margin-top: 8px; font-size: 13px; color: var(--gray-light); text-align: center; }
.form__note a { color: var(--green-700); text-decoration: underline; }
.form__note a:hover { text-decoration: none; }
.form__submit-error { color: #E0564B; font-size: 14px; text-align: center; margin: 0 0 12px; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form { position: relative; }
.form__success {
  display: none; text-align: center; padding: 20px 0;
}
.form__success.show { display: block; }
.form__success .ok { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: var(--green-050);
  display: flex; align-items: center; justify-content: center; }
.form__success .ok svg { width: 30px; height: 30px; stroke: var(--green); fill: none; stroke-width: 3; }
.form__success h3 { font-size: 24px; }
.form__success p { color: var(--gray); margin-top: 10px; }

/* ============================================================
   SITE FOOTER (из основного сайта, без main.css)
   ============================================================ */
.page__footer {
  font-size: 14px;
  color: #707070;
  background: #222;
  padding-top: 90px;
  padding-bottom: 120px;
  overflow: hidden;
}
.page__footer .container { max-width: 1200px; }
.page__footer a { color: inherit; }
.page__footer .logo {
  width: 220px;
  height: 25px;
  background: url(/img/yt-logo-green.svg) no-repeat 50% 50% / 100% auto;
  margin-bottom: 10px;
}
.page__footer .logo-sign {
  color: #fff;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.page__footer .row {
  display: flex;
  flex-wrap: wrap;
}
.page__footer .no-gutters { margin-right: 0; margin-left: 0; }
.page__footer .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; }
.page__footer .col-lg-auto,
.page__footer .col-lg,
.page__footer .col-xl-3 { width: 100%; max-width: 100%; }
.page__footer .col-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
.page__footer .justify-content-between { justify-content: space-between; }
.page__footer .flex-column { flex-direction: column; }
.page__footer .align-items-center { align-items: center; }
.page__footer .row-padding-30 { margin: -30px; }
.page__footer .row-padding-30 > [class*="col-"] { padding: 30px; }
.page__footer .row-padding-7_5 { margin: -7.5px; }
.page__footer .row-padding-7_5 > [class*="col-"] { padding: 7.5px; }

.footer-left {
  max-width: 320px;
  width: 100%;
  margin-right: 120px;
}
.footer-info {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 40px;
}
.footer-agreement {
  font-size: 14px;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 20px;
}
.footer-agreement a { text-decoration: underline; }
.footer-agreement a:hover { text-decoration: none; }

.footer-menu__title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #707070;
}
.footer-menu__items { color: #fff; }
.footer-menu a,
.footer-menu span {
  display: block;
  transition: opacity .2s ease;
  cursor: pointer;
}
.footer-menu a:hover,
.footer-menu span:hover { opacity: .7; }
.footer-menu__more {
  display: flex;
  align-items: center;
}
.footer-menu__more::after {
  content: '';
  margin-left: 7px;
  width: 9px;
  height: 5px;
  background: url(/img/select-arrow.svg) no-repeat 50% 50% / 100% auto;
}

.page__footer .btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4D4D4D;
  background: #222;
  height: 59px;
  border-radius: 15px;
  font-weight: bold;
  font-size: 18px;
  color: #A3A3A3;
  padding: 0 24px;
  box-shadow: none;
  white-space: normal;
  transition: background .2s ease, border-color .2s ease;
}
.page__footer .btn-footer:hover {
  background: #2D2D2D;
  border-color: #A3A3A3;
  transform: none;
  box-shadow: none;
}

.page__footer .social {
  display: flex;
  align-items: center;
}
.page__footer .social__item {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 10px;
  background: no-repeat 50% 50% / 100% auto;
  transition: transform .2s ease, opacity .2s ease;
}
.page__footer .social__item:last-child { margin-right: 0; }
.page__footer .footer-left .social__item:hover {
  transform: scale(1.05);
  opacity: .9;
}
.page__footer .social-white .social__item--vk { background-image: url(/img/main-vk.svg); }
.page__footer .social-white .social__item--telegram { background-image: url(/img/main-telegram.svg); }
.page__footer .social-white .social__item--whatsapp { background-image: url(/img/main-whatsapp.svg); }
.page__footer .social-white .social__item--youtube { background-image: url(/img/main-youtube.svg); }

@media (min-width: 992px) {
  .page__footer .col-lg-auto { flex: 0 0 auto; width: auto; max-width: 100%; }
  .page__footer .col-lg { flex: 1 0 0%; max-width: 100%; min-width: 0; }
  .page__footer .flex-lg-row { flex-direction: row; }
  .page__footer .align-items-lg-start { align-items: flex-start; }
}
@media (min-width: 1200px) {
  .page__footer .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
  .page__footer .flex-xl-column { flex-direction: column; }
}
@media (max-width: 1399.98px) {
  .footer-left { margin-right: 60px; }
}
@media (max-width: 991.98px) {
  .page__footer { padding: 60px 0; }
  .footer-left {
    text-align: center;
    margin: 0 auto 60px;
  }
  .page__footer .logo { margin-left: auto; margin-right: auto; }
  .page__footer .social { justify-content: center; }
  .footer-menu__title { text-align: center; }
}

/* ============================================================
   RESPONSIVE (graceful below desktop; primary target is desktop)
   ============================================================ */
@media (max-width: 1040px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { max-width: 460px; }
  .creds { grid-template-columns: repeat(2, 1fr); }
  .cred:nth-child(2) { border-right: none; }
  .cred:nth-child(1), .cred:nth-child(2) { border-bottom: 1px solid var(--line); }
  .forwhom-grid, .services-grid, .contact__grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .site-header .logo { width: 170px; height: 19px; }
  .site-header .header-logo-sign { font-size: 10px; letter-spacing: 3px; }
}
@media (max-width: 620px) {
  .hero h1 { font-size: 40px; }
  .section-head h2, .contact h2 { font-size: 32px; }
  .creds { grid-template-columns: 1fr; }
  .cred { border-right: none; border-bottom: 1px solid var(--line); }
  .cred:last-child { border-bottom: none; }
  .section { padding: 72px 0; }
  .container { padding: 0 20px; }
  .site-header .logo { width: 115px; height: 13px; }
  .site-header .header-logo-sign { font-size: 7px; letter-spacing: 1.8px; }
  .seo__box { padding: 28px 22px; }
  .seo__box h2 { font-size: 24px; }
  .seo__box h3 { font-size: 19px; }
  .seo__media { max-width: 100%; }
}
