@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800;900&display=swap");
:root {
  --orange: #e8661d;
  --orange-dark: #c84f11;
  --ink: #171717;
  --muted: #6f6f6f;
  --line: #ece7e2;
  --soft: #f7f3ef;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(25, 18, 12, 0.13);
  --radius: 8px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  padding-bottom: 86px;
}
body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(232, 102, 29, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.brand-logo {
  width: 170px;
  height: auto;
  max-height: 46px;
  object-fit: contain;
  transform: translateY(-11px);
}
.brand-caption { display: none; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--orange); }
.main-nav a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--orange);
  vertical-align: middle;
  margin-left: 18px;
  opacity: 0.35;
  flex-shrink: 0;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.header-phone {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  color: var(--ink);
  text-decoration: none;
}
.header-phone:hover { color: var(--orange); }
.mobile-header-tools {
  display: none;
  align-items: center;
  gap: 8px;
}
.mobile-call {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  position: relative;
}
.mobile-call::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  left: 50%;
  top: 50%;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.7 3.4 3.2 4.9 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 21.6 2.4 13.6 2.4 3.3 2.4 2.6 3 2 3.7 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M6.6 10.8c1.7 3.4 3.2 4.9 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4.1.6.7 0 1.3.6 1.3 1.3v3.5c0 .7-.6 1.3-1.3 1.3C10.4 21.6 2.4 13.6 2.4 3.3 2.4 2.6 3 2 3.7 2h3.5c.7 0 1.3.6 1.3 1.3 0 1.4.2 2.8.6 4.1.1.4 0 .9-.3 1.2l-2.2 2.2z'/%3E%3C/svg%3E") center / contain no-repeat;
  transform: translate(-50%, -50%);
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 48px; padding: 13px 22px;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.btn:hover { transform: translateY(-1px); background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-small { min-height: 38px; padding: 8px 16px; font-size: 12px; }
.btn-outline { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.75); color: #fff; }
.btn-outline:hover { background: #fff; border-color: #fff; color: var(--orange); }
.btn-light { background: #fff; color: var(--orange); border-color: rgba(232,102,29,.24); }
.btn-light:hover { background: var(--orange); border-color: var(--orange); color: #fff; }
.phone-icon {
  width: 16px; height: 16px; border: 2px solid currentColor; border-radius: 50%;
  position: relative;
}
.phone-icon::after { content: ""; position: absolute; width: 7px; height: 2px; background: currentColor; left: 5px; top: 8px; transform: rotate(42deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  padding-top: 70px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
}
.hero picture, .hero img, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero img { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(0,0,0,.62), rgba(0,0,0,.28) 48%, rgba(0,0,0,.46)); }
.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  min-height: calc(100vh - 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 0 64px;
}
.hero-copy { max-width: 780px; }
.eyebrow { color: var(--orange); text-transform: uppercase; letter-spacing: 0; font-size: 12px; font-weight: 900; margin: 0 0 18px; }
.hero .eyebrow { color: #ffc29a; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 5.2vw, 74px); line-height: .98; max-width: 820px; margin-bottom: 34px; }
h1 span { display: block; }
h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.05; margin-bottom: 14px; }
h3 { font-size: 20px; line-height: 1.2; }
.hero-lead { max-width: 600px; font-size: 21px; line-height: 1.5; color: rgba(255,255,255,.9); }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 18px; margin-top: 56px; }
.contact-menu { position: relative; }
.contact-dropdown {
  position: absolute; bottom: calc(100% + 10px); left: 0;
  min-width: 190px; padding: 8px;
  background: linear-gradient(135deg, rgba(255, 136, 62, .34), rgba(255, 255, 255, .66));
  color: var(--ink);
  border: 1px solid rgba(255, 153, 92, .46);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(1.3);
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .2s ease, transform .2s ease;
}
.contact-dropdown.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.contact-dropdown a { display: block; padding: 10px 12px; border-radius: 6px; font-weight: 700; }
.contact-dropdown a:hover { background: rgba(255,255,255,.58); color: var(--orange-dark); }

/* ===== SECTIONS ===== */
section { padding: 88px max(22px, calc((100vw - var(--max)) / 2)); scroll-margin-top: 80px; }
.section-band { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head p { color: var(--muted); font-size: 18px; }

.subpage-hero {
  padding-top: 138px;
  padding-bottom: 72px;
}
.content-page {
  max-width: 980px;
  margin: 0 auto;
  overflow-wrap: anywhere;
}
.content-page h1 { margin-bottom: 18px; }
.content-page h2 { margin: 34px 0 12px; font-size: clamp(26px, 3vw, 38px); }
.content-page p, .content-page li { color: var(--muted); font-size: 18px; line-height: 1.65; }
.content-page ul { display: grid; gap: 8px; margin: 0; padding-left: 22px; }
.content-page a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.legal-page {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(25,18,12,.08);
}
.legal-note {
  margin-top: 34px;
  padding: 18px 20px;
  border-left: 4px solid var(--orange);
  background: #fff6ef;
  color: var(--ink) !important;
  font-weight: 800;
}

/* ===== STATS ===== */
.stats {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 80px));
  margin: 0 auto;
  padding: 46px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat-card {
  min-height: 144px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat-card strong { display: block; color: var(--orange); font-size: 42px; line-height: 1; margin-bottom: 10px; }
.stat-card span { color: var(--muted); font-weight: 700; }

/* ===== TRUSTED / LOGOS ===== */
.trusted { overflow: hidden; padding-bottom: 38px; }
.sticky-trust {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  overflow: hidden; cursor: grab;
  border-top: 1px solid rgba(232, 102, 29, .18);
  padding: 10px 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  box-shadow: 0 -14px 36px rgba(25, 18, 12, .10);
  user-select: none;
}
.logo-marquee {
  overflow: hidden; cursor: grab;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 20px 0; user-select: none;
  width: min(var(--max), 100%);
}
.logo-marquee:active { cursor: grabbing; }
.logo-track { display: flex; align-items: center; gap: 22px; width: max-content; will-change: transform; }
.logo-track button {
  width: 250px; height: 126px;
  display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.logo-track button:hover { background: #fff1e8; border-color: rgba(232,102,29,.42); transform: translateY(-2px); }
.logo-track img { max-width: 212px; max-height: 92px; opacity: .96; filter: saturate(1.12) contrast(1.06); transition: opacity .2s ease, filter .2s ease; }
.logo-track button:hover img { opacity: 1; filter: saturate(1.2) contrast(1.08); }
.logo-text-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(180px, 100%);
  min-height: 58px;
  padding: 8px 14px;
  color: #111;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
  text-align: center;
  border: 2px solid currentColor;
}
.sticky-trust .logo-track { gap: 14px; }
.sticky-trust .logo-track button { width: 190px; height: 64px; }
.sticky-trust .logo-track img { max-width: 168px; max-height: 48px; }
.sticky-trust .logo-text-mark { min-height: 38px; font-size: 16px; border-width: 1px; }

/* ===== ABOUT ===== */
.split-section { display: grid; grid-template-columns: minmax(300px, 460px) 1fr; gap: 60px; align-items: stretch; }
.photo-panel img { width: 100%; height: 100%; min-height: 590px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.text-panel { display: flex; flex-direction: column; justify-content: center; }
.text-panel p { color: var(--muted); font-size: 18px; }
.benefits { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 26px; }
.benefits span {
  padding: 15px 15px 15px 42px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  position: relative; font-weight: 700;
}
.benefits span::before { content: ""; position: absolute; left: 16px; top: 20px; width: 10px; height: 10px; background: var(--orange); border-radius: 50%; }
.about-expert {
  background:
    linear-gradient(180deg, #fff 0%, #fff 62%, var(--soft) 100%);
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 42px;
  align-items: stretch;
}
.about-lead-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-lead-panel h2 { max-width: 760px; }
.about-lead-panel p,
.about-card p,
.about-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.risk-card {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid rgba(232,102,29,.26);
  border-radius: var(--radius);
  background: #fff7f1;
}
.risk-card h3 { margin-bottom: 16px; }
.plain-lines {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.about-scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.about-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(25,18,12,.06);
}
.about-card-wide { grid-column: 1 / -1; background: var(--ink); color: #fff; }
.about-card-wide h3 { max-width: 920px; margin-bottom: 0; color: #fff; }
.about-card summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}
.about-card summary::marker { color: var(--orange); }
.about-card[open] summary { margin-bottom: 16px; }
.about-card h3 { margin-bottom: 12px; }
.article-link-card {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(232,102,29,.34);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff7f1, #fff);
  box-shadow: 0 16px 42px rgba(25,18,12,.06);
}
.article-link-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.article-link-card strong {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.12;
}
.article-link-card small { color: var(--muted); font-size: 15px; }
.article-link-card:hover { border-color: var(--orange); transform: translateY(-1px); }

/* ===== SERVICES ===== */
.services {
  position: relative;
  background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.84)), url("../images/services-bg.webp") center / cover no-repeat;
}
.services .section-head, .services .service-grid { position: relative; z-index: 1; }
.case-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.case-stack { display: grid; gap: 18px; }
.case-card, .service-card, .service-grid article { padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.case-card h3 { margin-bottom: 18px; font-size: 22px; }
.case-card p,
.case-card li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}
.case-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.case-intro {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.case-intro h3 { margin: 0; color: #fff; font-size: clamp(26px, 4vw, 40px); }
.case-feature { min-height: 100%; }
.case-feature-wide { grid-column: 1 / -1; }
.case-more {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}
.case-more > h3 {
  margin: 0;
  color: var(--orange);
  font-size: 24px;
}
.case-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-more-grid .case-card { min-height: 190px; }
.service-card {
  min-height: 128px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.service-card[open] { border-color: rgba(232,102,29,.34); box-shadow: var(--shadow); }
.service-card-wide { grid-column: 1 / -1; }
.service-card summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.22;
}
.service-card summary::marker { color: var(--orange); }
.service-card-body {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.service-card-body h3 {
  margin: 0;
  color: var(--orange);
  font-size: 17px;
  line-height: 1.3;
}
.service-card-body ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.service-card-body li,
.service-card-body p,
.service-link-list a {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.service-card-body a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.service-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.service-link-list a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8f3;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease;
}
.service-link-list a:hover { border-color: rgba(232,102,29,.46); background: #fff1e8; }

/* ===== REVIEWS ===== */
.review-shell { position: relative; display: block; width: min(var(--max), 100%); }
.review-slider {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(250px, 25%);
  gap: 0; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; padding: 10px 0 30px;
  background: linear-gradient(90deg, #f2f2f2, #cfcfcf 34%, #9f9f9f);
  border-radius: var(--radius);
}
.review-slider::-webkit-scrollbar { display: none; }
.review-card {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 360px;
  padding: 34px 24px 18px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  overflow: hidden;
  cursor: zoom-in;
  scroll-snap-align: start;
}
.review-paper {
  display: grid;
  place-items: center;
  min-height: 260px;
}
.review-card img {
  width: min(170px, 78%);
  max-height: 260px;
  object-fit: contain;
  background: #fff;
  box-shadow: 0 24px 42px rgba(0,0,0,.34);
}
.review-company {
  align-self: end;
  margin-top: 20px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.slider-btn {
  position: absolute; top: 50%; left: -24px; z-index: 3;
  width: 56px; height: 56px;
  border: 1px solid rgba(23,23,23,.08); border-radius: 50%;
  background: rgba(255,255,255,.78); cursor: pointer;
  transform: translateY(-50%); opacity: .36;
  backdrop-filter: blur(10px); transition: opacity .2s ease, background .2s ease;
}
.review-shell:hover .slider-btn { opacity: 1; }
.slider-btn::before {
  content: ""; position: absolute; inset: 17px 15px 15px 18px;
  border-left: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}
.slider-btn.next { left: auto; right: -24px; }
.slider-btn.next::before { transform: rotate(225deg); left: 12px; right: 18px; }

/* ===== CONSULTATION ===== */
.consultation { background: #fff; }
.consult-card {
  display: grid; grid-template-columns: 1fr 420px; gap: 34px;
  align-items: stretch; padding: 36px;
  background: var(--ink); color: #fff; border-radius: var(--radius);
}
.consult-copy { display: flex; flex-direction: column; align-items: flex-start; }
.consult-copy .btn { margin-top: auto; }
.consult-card p { color: rgba(255,255,255,.78); font-size: 18px; }
.consult-price {
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 900;
  line-height: 1.25;
}
.consult-points {
  display: grid;
  gap: 12px;
  margin: 10px 0 24px;
}
.consult-points h3 {
  margin: 0;
  color: #f2a15d;
  font-size: 18px;
}
.consult-points ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.consult-points li { color: rgba(255,255,255,.78); }
.payment-form, .lead-form {
  display: grid; gap: 12px; padding: 18px;
  align-content: start;
  align-self: start;
  background: #fff; color: var(--ink); border-radius: var(--radius);
}
.payment-form .btn, .lead-form .btn { align-self: end; width: 100%; }
label { display: grid; gap: 6px; color: var(--muted); font-weight: 800; font-size: 13px; }
input, select {
  width: 100%; min-height: 42px; padding: 9px 12px;
  border: 1px solid #d8d2cc; border-radius: 6px;
  background: #fff; color: var(--ink);
}
input:focus, select:focus { outline: 2px solid rgba(232,102,29,.25); border-color: var(--orange); }
.check { grid-template-columns: 18px 1fr; align-items: start; font-weight: 600; font-size: 12px; line-height: 1.35; }
.check input { min-height: auto; margin-top: 3px; }
.check a { color: var(--orange); text-decoration: underline; text-underline-offset: 2px; }

/* ===== CONTACTS ===== */
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; }
.contact-info {
  display: flex; flex-direction: column; gap: 12px;
  padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
}
.contact-main { display: grid; gap: 12px; }
.contact-info a:not(.btn), .contact-info span { font-size: 20px; font-weight: 800; }
.contact-info a:not(.btn):hover { color: var(--orange); }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; padding-top: 24px; }

/* ===== FAQ ===== */
.accordion { display: grid; gap: 12px; max-width: 900px; }
.accordion details { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.accordion summary { cursor: pointer; padding: 18px 22px; font-weight: 900; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion p { padding: 0 22px 20px; color: var(--muted); margin: 0; }

/* ===== MODAL ===== */
.modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; place-items: center;
  padding: 24px; background: rgba(0,0,0,.78);
}
.modal.is-open { display: grid; }
.modal-review {
  display: grid;
  gap: 14px;
  max-width: min(92vw, 980px);
  justify-items: center;
}
.modal img { max-height: 82vh; width: auto; max-width: 92vw; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.modal-review p { margin: 0; color: #fff; font-size: 18px; font-weight: 900; text-align: center; }
.modal-close {
  position: absolute; right: 22px; top: 18px;
  width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: rgba(255,255,255,.1); cursor: pointer;
}
.modal-close::before, .modal-close::after {
  content: ""; position: absolute; left: 13px; right: 13px; top: 21px; height: 2px; background: #fff;
}
.modal-close::before { transform: rotate(45deg); }
.modal-close::after { transform: rotate(-45deg); }

/* ===== FOOTER ===== */
.footer {
  display: grid; grid-template-columns: 1.1fr .9fr 1fr; gap: 72px;
  padding: 72px max(22px, calc((100vw - var(--max)) / 2)) 34px;
  background: #132137; color: #fff;
}
.footer .brand-logo { filter: brightness(0) invert(1); max-width: 230px; width: 230px; }
.footer small, .footer p { color: rgba(255,255,255,.68); }
.footer-about { max-width: 360px; }
.footer-about p { max-width: 330px; font-size: 16px; line-height: 1.55; }
.footer h3 { margin: 0 0 18px; color: #f2a15d; text-transform: uppercase; font-size: 14px; letter-spacing: 0; }
.footer-links, .footer-contacts { display: grid; align-content: start; gap: 12px; font-weight: 700; color: rgba(255,255,255,.68); }
.footer-links a:hover, .footer-contacts a:hover { color: #fff; }
.footer-contacts a:first-of-type { color: #fff; font-size: 20px; }
.footer-contacts a:nth-of-type(2) { color: #f2a15d; font-size: 20px; }
.copyright { grid-column: 1 / -1; margin: 24px 0 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); color: rgba(255,255,255,.55); font-size: 13px; }

/* ===== TABLET 768-1024 ===== */
@media (max-width: 1024px) {
  .site-header-inner { padding: 0 24px; gap: 16px; }
  .mobile-header-tools { display: flex; gap: 8px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; left: 24px; right: 24px; top: 70px;
    display: none; padding: 18px; background: #fff;
    border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); z-index: 50;
  }
  .main-nav.is-open { display: flex; flex-direction: column; gap: 0; }
  .main-nav.is-open a { padding: 14px 20px; border-bottom: 1px solid var(--line); }
  .main-nav.is-open a::after { display: none; }
  .header-actions { display: none; }
  .hero-content { width: calc(100% - 48px); }
  .stats, .case-grid, .service-grid, .case-more-grid { grid-template-columns: repeat(2, 1fr); }
  .case-feature-wide { grid-column: auto; }
  .service-card-wide { grid-column: 1 / -1; }
  .split-section, .consult-card, .contact-layout { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 24px; }
  .about-scenarios { grid-template-columns: 1fr; }
}

/* ===== MOBILE < 768 ===== */
@media (max-width: 768px) {
  body { padding-bottom: 72px; }
  .site-header-inner { padding: 0 16px; height: 60px; gap: 12px; }
  .brand-logo { width: min(140px, calc(100vw - 160px)); max-height: 36px; transform: translateY(-7px); }
  .main-nav { left: 16px; right: 16px; top: 60px; }
  .hero { min-height: calc(100svh - 60px); padding-top: 60px; }
  .hero-content { width: calc(100% - 32px); min-height: calc(100svh - 60px); padding: 34px 0 32px; }
  .hero-copy { max-width: 340px; }
  .hero .eyebrow { font-size: 10px; margin-bottom: 26px; }
  h1 { font-size: clamp(32px, 9.2vw, 38px); line-height: 1.03; margin-bottom: 32px; max-width: 350px; }
  h1 span { white-space: nowrap; }
  h2 { font-size: 31px; line-height: 1.05; }
  .hero-lead { max-width: 318px; font-size: 16px; line-height: 1.5; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 48px; width: 100%; }
  .hero-actions .btn { width: 100%; min-height: 52px; padding: 12px 10px; font-size: 14px; }
  .contact-menu { min-width: 0; }
  .contact-dropdown { left: auto; right: 0; min-width: 172px; }
  section { padding: 58px 16px; scroll-margin-top: 70px; }
  .stats { display: none; }
  .trusted { padding-top: 42px; padding-bottom: 28px; }
  .trusted .section-head { margin-bottom: 24px; }
  .logo-marquee { padding: 12px 0; width: 100%; }
  .logo-track { gap: 12px; }
  .logo-track button { width: 172px; height: 82px; }
  .logo-track img { max-width: 148px; max-height: 58px; }
  .logo-text-mark { min-height: 42px; font-size: 17px; border-width: 1px; }
  .sticky-trust { padding: 8px 0; }
  .sticky-trust .logo-track button { width: 150px; height: 56px; }
  .sticky-trust .logo-track img { max-width: 126px; max-height: 39px; }
  .sticky-trust .logo-text-mark { min-height: 34px; font-size: 14px; }
  .split-section { grid-template-columns: 1fr; gap: 18px; padding-top: 50px; }
  .about-expert { padding-top: 50px; }
  .about-intro { gap: 18px; }
  .about-lead-panel h2 { font-size: 29px; }
  .about-lead-panel p, .about-card p, .about-card li { font-size: 15px; line-height: 1.55; }
  .risk-card, .about-card, .article-link-card { padding: 18px; }
  .about-scenarios { gap: 12px; margin-top: 18px; }
  .about-card summary { font-size: 17px; }
  .article-link-card strong { font-size: 22px; }
  .text-panel { display: contents; }
  .text-panel .eyebrow { display: none; }
  .text-panel h2 { order: 1; margin-bottom: 2px; max-width: 320px; }
  .text-panel > p { order: 3; font-size: 15px; margin: 0; }
  .photo-panel { order: 2; position: relative; max-width: 320px; width: 100%; }
  .photo-panel::before {
    content: "Ольга Клюева"; position: absolute; left: 18px; bottom: 18px; z-index: 2;
    color: #fff; text-transform: uppercase; font-size: 12px; font-weight: 900;
    text-shadow: 0 2px 12px rgba(0,0,0,.44);
  }
  .photo-panel::after {
    content: ""; position: absolute; inset: auto 0 0; height: 42%;
    border-radius: 0 0 var(--radius) var(--radius);
    background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.54)); pointer-events: none;
  }
  .photo-panel img { min-height: 0; height: min(50svh, 360px); object-position: center top; }
  .about-expert .photo-panel { max-width: 100%; }
  .benefits { order: 4; display: block; min-height: 84px; margin-top: 14px; position: relative; }
  .benefits span { display: none; min-height: 76px; align-items: center; padding: 17px 16px 17px 42px; box-shadow: 0 10px 26px rgba(25,18,12,.07); }
  .benefits span.is-active { display: flex; }
  .benefits span::before { top: 50%; transform: translateY(-50%); }
  .case-grid, .case-more-grid { grid-template-columns: 1fr; gap: 12px; }
  .case-card { min-height: auto; padding: 18px; }
  .case-card h3 { font-size: 18px; line-height: 1.25; }
  .case-card p, .case-card li { font-size: 15px; line-height: 1.5; }
  .case-intro h3 { font-size: 25px; }
  .service-grid { grid-template-columns: 1fr; gap: 12px; }
  .service-card, .service-grid article { min-height: auto; padding: 20px; }
  .service-card-wide { grid-column: auto; }
  .service-card summary { font-size: 18px; }
  .service-card-body h3 { font-size: 16px; }
  .service-card-body li, .service-card-body p, .service-link-list a { font-size: 15px; }
  .service-link-list { grid-template-columns: 1fr; }
  .review-shell { grid-template-columns: 1fr; }
  .slider-btn { display: none; }
  .review-slider { grid-auto-columns: 76%; }
  .review-card { min-height: 300px; padding: 24px 16px 14px; }
  .review-paper { min-height: 220px; }
  .review-card img { width: min(150px, 82%); max-height: 220px; }
  .review-company { font-size: 14px; }
  .modal { padding: 14px; }
  .modal img { max-height: 78vh; max-width: 94vw; }
  .consultation { padding-top: 42px; padding-bottom: 42px; }
  .consult-card { padding: 18px; gap: 14px; min-height: calc(100svh - 122px); align-content: center; }
  .consult-copy h2 { font-size: 26px; margin-bottom: 10px; }
  .consult-card p { font-size: 15px; line-height: 1.42; margin-bottom: 14px; }
  .consult-price { font-size: 21px !important; }
  .consult-points h3 { font-size: 16px; }
  .consult-points li { font-size: 14px; line-height: 1.4; }
  .consult-copy .btn { display: none; }
  .payment-form, .lead-form { gap: 9px; padding: 14px; }
  label { font-size: 12px; gap: 4px; }
  input, select { min-height: 40px; padding: 8px 10px; }
  .check { font-size: 11px; line-height: 1.25; }
  .payment-form .btn, .lead-form .btn { min-height: 46px; }
  .contact-layout { gap: 16px; }
  .contact-info { padding: 18px; }
  .contact-info a:not(.btn), .contact-info span { font-size: 17px; }
  .contact-buttons { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding-top: 12px; }
  .footer { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
}

/* ===== MOBILE/TABLET HEADER FINAL OVERRIDES ===== */
@media (max-width: 1024px) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(25, 18, 12, 0.06);
    box-shadow: 0 8px 26px rgba(25, 18, 12, 0.06);
    backdrop-filter: blur(18px) saturate(1.18);
    -webkit-backdrop-filter: blur(18px) saturate(1.18);
  }

  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 30px rgba(25, 18, 12, 0.08);
  }

  .site-header-inner {
    height: 76px;
  }

  .brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    line-height: 1;
  }

  .brand-logo {
    width: 220px;
    max-height: 52px;
    transform: translateY(0);
    filter: drop-shadow(0 6px 18px rgba(0, 0, 0, .12));
  }

  .brand-caption {
    display: block;
    width: 220px;
    color: rgba(23, 23, 23, .66);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: lowercase;
    text-align: center;
    line-height: 1;
    margin-top: -3px;
  }

  .mobile-header-tools {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-call,
  .nav-toggle {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .mobile-call::before {
    width: 22px;
    height: 22px;
    background: #d65a25;
  }

  .nav-toggle {
    padding: 0;
  }

  .nav-toggle span {
    width: 26px;
    height: 4px;
    margin: 3px auto;
    background: #d65a25;
    border-radius: 20px;
  }

  .nav-toggle span:nth-child(2) {
    display: none;
  }

  .main-nav {
    top: 78px;
    left: 24px;
    right: 24px;
    padding: 20px 18px;
    background: linear-gradient(135deg, rgba(255, 229, 204, 0.64), rgba(255, 255, 255, 0.34));
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 14px;
    box-shadow: 0 24px 60px rgba(28, 16, 8, 0.24);
    backdrop-filter: blur(22px) saturate(1.32);
    -webkit-backdrop-filter: blur(22px) saturate(1.32);
  }

  .main-nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main-nav.is-open a {
    justify-content: center;
    padding: 15px 18px;
    color: var(--orange);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(232, 102, 29, 0.18);
  }

  .main-nav.is-open a:last-child {
    border-bottom: 0;
  }

  .sticky-trust {
    background: rgba(255, 255, 255, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }

  .sticky-trust .logo-track button {
    background: rgba(255, 255, 255, 0.52);
    border-color: rgba(255, 255, 255, 0.38);
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    height: 74px;
    padding: 0 16px;
  }

  .brand-logo {
    width: min(206px, calc(100vw - 140px));
    max-height: 44px;
    transform: translateY(0);
  }

  .brand-caption {
    width: min(206px, calc(100vw - 140px));
    font-size: 8.5px;
    letter-spacing: .06em;
    margin-top: -1px;
  }

  .mobile-call,
  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    width: 25px;
    height: 4px;
    margin: 3px auto;
  }

  .main-nav {
    top: 82px;
    left: 16px;
    right: 16px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-content {
    min-height: calc(100svh - 74px);
  }

  .hero-actions {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 11px 8px;
    font-size: 12.5px;
    line-height: 1.1;
    letter-spacing: 0.2px;
    white-space: nowrap;
    text-align: center;
  }

  .hero-actions .btn-outline {
    font-size: 12.5px;
  }

  .contact-dropdown {
    right: 0;
    bottom: calc(100% + 10px);
    min-width: 178px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(255, 226, 192, 0.72), rgba(255, 255, 255, 0.34));
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 12px;
    box-shadow: 0 24px 54px rgba(23, 12, 6, 0.28);
    backdrop-filter: blur(22px) saturate(1.3);
    -webkit-backdrop-filter: blur(22px) saturate(1.3);
  }

  .contact-dropdown a {
    padding: 12px 8px;
    color: #171717;
    font-size: 15px;
    font-weight: 900;
  }

  .sticky-trust {
    padding: 7px 0;
    background: rgba(255, 255, 255, 0.5);
  }

  .sticky-trust .logo-track button {
    width: 145px;
    height: 54px;
    background: rgba(255, 255, 255, 0.48);
  }
}

@media (max-width: 390px) {
  .brand-logo,
  .brand-caption {
    width: min(188px, calc(100vw - 136px));
  }

  .brand-caption {
    font-size: 7.8px;
  }

  .mobile-header-tools {
    gap: 8px;
  }

  .mobile-call,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-actions .btn {
    font-size: 11.5px;
    padding-left: 6px;
    padding-right: 6px;
  }
}

/* ===== HEADER REQUEST OVERRIDES 2026-07-09 ===== */
@media (min-width: 1025px) {
  .brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .brand-logo {
    width: 178px;
    max-height: 44px;
    transform: translateY(0);
  }

  .brand-caption {
    display: block;
    width: 178px;
    margin-top: -5px;
    color: rgba(23, 23, 23, .66);
    font-size: 8px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: .06em;
    text-align: center;
    text-transform: lowercase;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.58);
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }

  .mobile-call,
  .nav-toggle {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(23, 23, 23, .24);
    background: rgba(255, 255, 255, .36);
    border-radius: 12px;
    box-shadow: none;
    backdrop-filter: blur(12px) saturate(1.12);
    -webkit-backdrop-filter: blur(12px) saturate(1.12);
  }

  .mobile-call::before {
    width: 23px;
    height: 23px;
    background: #d65a25;
  }

  .nav-toggle span {
    width: 27px;
    height: 4.5px;
    margin: 3px auto;
    background: #d65a25;
    border-radius: 999px;
  }

  .main-nav {
    background: linear-gradient(135deg, rgba(16, 12, 10, .86), rgba(0, 0, 0, .72));
    border: 1px solid rgba(255, 255, 255, .10);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .42);
    backdrop-filter: blur(22px) saturate(1.25);
    -webkit-backdrop-filter: blur(22px) saturate(1.25);
  }

  .main-nav.is-open a {
    color: var(--orange);
    border-bottom-color: rgba(232, 102, 29, .22);
  }
}

@media (max-width: 768px) {
  .mobile-call,
  .nav-toggle {
    width: 48px;
    height: 48px;
  }

  .nav-toggle span {
    width: 26px;
    height: 4.5px;
  }
}

@media (max-width: 390px) {
  .mobile-call,
  .nav-toggle {
    width: 46px;
    height: 46px;
  }
}

/* ===== HEADER FINAL TUNING 2026-07-09-2 ===== */
@media (min-width: 1025px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 8px 26px rgba(25, 18, 12, 0.06);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
  }

  .site-header-inner {
    height: 66px;
    align-items: center;
  }

  .brand {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 196px;
    line-height: 1;
  }

  .brand-logo {
    width: 190px;
    max-height: 42px;
    transform: translateY(0);
  }

  .brand-caption {
    display: block;
    width: 190px;
    margin-top: -2px;
    color: rgba(23, 23, 23, .68);
    font-size: 8.5px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .055em;
    text-align: center;
    text-transform: lowercase;
  }

  .main-nav {
    align-items: center;
  }

  .header-actions {
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.30);
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.055);
    backdrop-filter: blur(18px) saturate(1.24);
    -webkit-backdrop-filter: blur(18px) saturate(1.24);
  }

  .brand-logo {
    width: 236px;
    max-height: 54px;
  }

  .brand-caption {
    width: 236px;
    color: rgba(23, 23, 23, .72);
  }

  .mobile-call,
  .nav-toggle {
    width: 54px;
    height: 54px;
    border: 1px solid rgba(23, 23, 23, .30);
    background: rgba(255, 255, 255, 0.58);
    border-radius: 12px;
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
  }

  .nav-toggle span {
    display: block !important;
    width: 28px;
    height: 4.5px;
    margin: 2.5px auto;
    background: #d65a25;
    border-radius: 999px;
  }

  .nav-toggle span:nth-child(2) {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    height: 74px;
  }

  .brand-logo {
    width: min(214px, calc(100vw - 150px));
    max-height: 46px;
  }

  .brand-caption {
    width: min(214px, calc(100vw - 150px));
    font-size: 8.7px;
  }

  .mobile-call,
  .nav-toggle {
    width: 50px;
    height: 50px;
  }

  .nav-toggle span {
    width: 27px;
    height: 4.5px;
    margin: 2.4px auto;
  }
}

@media (max-width: 390px) {
  .brand-logo,
  .brand-caption {
    width: min(196px, calc(100vw - 142px));
  }

  .mobile-call,
  .nav-toggle {
    width: 46px;
    height: 46px;
  }

  .nav-toggle span {
    width: 25px;
    height: 4.2px;
    margin: 2.3px auto;
  }
}


/* ===== FINAL HEADER ADJUSTMENTS 2026-07-09 ===== */
@media (min-width: 1025px) {
  .site-header-inner {
    height: 64px;
    align-items: center;
  }

  .brand {
    transform: translateY(-3px);
  }

  .brand-logo {
    width: 198px;
    max-height: 46px;
  }

  .brand-caption {
    display: block;
    width: 198px;
    margin-top: -4px;
    color: rgba(23, 23, 23, .72);
    font-size: 8.8px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: .055em;
    text-align: center;
    text-transform: lowercase;
  }

  .main-nav,
  .header-actions {
    align-items: center;
  }
}

@media (max-width: 1024px) {
  .site-header,
  .site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.22);
    border-bottom: 1px solid rgba(23, 23, 23, 0.14);
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.045);
    backdrop-filter: blur(18px) saturate(1.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.22);
  }

  .mobile-call,
  .nav-toggle {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(23, 23, 23, 0.28);
    background: rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(1.22);
    -webkit-backdrop-filter: blur(18px) saturate(1.22);
  }

  .mobile-call::before {
    width: 22px;
    height: 22px;
    background: #d65a25;
  }

  .nav-toggle {
    display: grid;
    place-content: center;
    gap: 4px;
  }

  .nav-toggle span {
    display: block !important;
    width: 25px;
    height: 4px;
    margin: 0 auto;
    background: #d65a25;
    border-radius: 999px;
  }

  .nav-toggle span:nth-child(2) {
    display: block !important;
  }
}

@media (max-width: 768px) {
  .site-header-inner {
    height: 72px;
  }

  .brand-logo {
    width: min(220px, calc(100vw - 142px));
    max-height: 48px;
  }

  .brand-caption {
    width: min(220px, calc(100vw - 142px));
  }

  .mobile-call,
  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    width: 24px;
    height: 3.8px;
  }
}

@media (max-width: 390px) {
  .brand-logo,
  .brand-caption {
    width: min(202px, calc(100vw - 132px));
  }

  .mobile-call,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span {
    width: 22px;
    height: 3.7px;
  }
}
