:root {
  --ink: #14201e;
  --muted: #5f6b68;
  --paper: #f5f7f4;
  --paper-strong: #ffffff;
  --line: #dbe2dd;
  --forest: #14241f;
  --forest-deep: #0a1715;
  --copper: #b68c42;
  --gold: #d9b969;
  --blue: #3f6f72;
  --red: #8f554f;
  --surface: #edf2ef;
  --shadow: 0 20px 52px rgba(16, 32, 28, 0.13);
  font-family: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f7f8f5 0%, var(--paper) 42%, #eef3f0 100%);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.mobile-break {
  display: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px 56px;
  color: #ffffff;
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(247, 248, 245, 0.96);
  color: var(--ink);
  box-shadow: 0 14px 36px rgba(16, 32, 28, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 235px;
}

.brand-logo {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.22));
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand-text {
  min-width: 0;
  white-space: nowrap;
}

.brand strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0.7;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.84;
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 1;
}

.site-nav a[aria-current="page"] {
  opacity: 1;
  color: var(--gold);
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  white-space: nowrap;
}

.header-phone {
  color: currentColor;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.header-icon {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
  font: inherit;
  cursor: pointer;
}

.header-icon:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: #ffffff;
}

.site-header.is-scrolled .header-icon,
.site-header.is-open .header-icon {
  border-color: var(--line);
  background: #ffffff;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .lang-switch,
.site-header.is-open .lang-switch {
  border-color: var(--line);
  background: #ffffff;
}

.lang-switch a {
  display: inline-grid;
  min-width: 34px;
  min-height: 32px;
  place-items: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.lang-switch a[aria-current="true"] {
  background: var(--copper);
  color: #ffffff;
}

.icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 92vh;
  color: #ffffff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(15, 43, 38, 0.78) 52%, rgba(25, 70, 67, 0.34)),
    linear-gradient(0deg, rgba(7, 20, 18, 0.28), rgba(7, 20, 18, 0.04)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2200&q=85")
      center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 64px;
  align-items: end;
  min-height: 92vh;
  padding: 128px 64px 56px;
}

.hero-copy {
  max-width: 860px;
  min-width: 0;
}

.eyebrow,
.section-kicker,
.panel-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 860px;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 22px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--copper);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(81, 58, 20, 0.24);
}

.btn-primary:hover {
  background: #9c7432;
}

.btn:disabled,
.btn[aria-busy="true"] {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
  margin-top: 30px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.trust-row svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.offer-panel {
  overflow: hidden;
  border: 1px solid rgba(217, 185, 105, 0.32);
  border-radius: 8px;
  background: rgba(10, 26, 24, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  min-width: 0;
}

.offer-panel {
  padding: 28px;
}

.offer-panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.1;
}

.offer-panel p:not(.panel-label) {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #ffffff;
  font-weight: 800;
}

.panel-link svg {
  color: var(--gold);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper-strong);
}

.proof-strip div {
  min-height: 118px;
  padding: 28px 36px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  color: var(--forest);
  font-size: 30px;
  line-height: 1;
}

.proof-strip span {
  display: block;
  max-width: 250px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  color: #ffffff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.94), rgba(15, 43, 38, 0.76), rgba(25, 70, 67, 0.34)),
    linear-gradient(0deg, rgba(7, 20, 18, 0.26), rgba(7, 20, 18, 0.04)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=84")
      center / cover no-repeat;
  transform: scale(1.02);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  padding: 148px 64px 76px;
}

.page-hero h1 {
  margin: 0;
  font-size: 56px;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 21px;
}

.service-detail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-detail article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 10px 26px rgba(16, 32, 28, 0.07);
}

.service-detail svg {
  width: 28px;
  height: 28px;
  color: var(--copper);
}

.service-detail h3 {
  margin: 20px 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.service-detail p {
  font-size: 15px;
}

.section-action {
  margin-top: 28px;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 32px;
}

.intro {
  padding-bottom: 54px;
}

.two-col,
.section-heading,
.docs-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: 64px;
  align-items: start;
}

.section h2,
.request-copy h2,
.contacts-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  line-height: 1.04;
  letter-spacing: 0;
}

.section p,
.request-copy p,
.contacts-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.popular-direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.popular-direction-grid .category-card {
  min-height: 260px;
}

.company-snapshot {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 22px;
  width: min(1120px, calc(100% - 48px));
  margin: 22px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 34px rgba(16, 32, 28, 0.1);
}

.company-snapshot h2 {
  margin: 8px 0 8px;
  font-size: 28px;
  line-height: 1.12;
}

.company-snapshot p {
  margin: 0;
  color: var(--muted);
}

.company-snapshot-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.company-snapshot-facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font-weight: 850;
}

.company-snapshot-facts svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--copper);
}

.category-card,
.case-grid article,
.offer-grid article,
.benchmark-grid article,
.industry-grid article,
.resource-grid article,
.privacy-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 10px 26px rgba(16, 32, 28, 0.07);
}

.category-card {
  display: grid;
  align-content: start;
  min-height: 245px;
  padding: 24px;
}

.category-card svg,
.offer-grid svg,
.benchmark-grid svg,
.industry-grid svg,
.resource-grid svg {
  width: 30px;
  height: 30px;
  color: var(--copper);
}

.category-card h3,
.offer-grid h3,
.case-grid h3,
.benchmark-grid h3,
.industry-grid h3,
.resource-grid h3,
.privacy-list h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.16;
}

.category-card p,
.offer-grid p,
.case-grid p,
.benchmark-grid p,
.industry-grid p,
.resource-grid p,
.privacy-list p {
  font-size: 15px;
}

.category-card a,
.offer-grid a,
.resource-grid a {
  align-self: end;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 800;
}

.category-card-accent {
  background: linear-gradient(145deg, var(--forest) 0%, #183b34 100%);
  color: #ffffff;
}

.category-card-accent p,
.category-card-accent a {
  color: rgba(255, 255, 255, 0.78);
}

.category-card-accent svg {
  color: var(--gold);
}

.audience-section {
  padding-top: 54px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 36px;
}

.audience-grid span,
.safety-list span,
.doc-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 14px;
  font-weight: 800;
}

.audience-grid svg,
.safety-list svg,
.doc-list svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.task-table {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.task-table > div {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1.2fr);
  background: #ffffff;
}

.task-table span {
  padding: 18px 20px;
  color: var(--muted);
}

.task-table span:first-child {
  color: var(--ink);
  font-weight: 800;
}

.task-head {
  background: linear-gradient(90deg, var(--forest-deep) 0%, var(--forest) 100%) !important;
}

.task-head span {
  color: #ffffff !important;
  font-weight: 900 !important;
}

.benchmark-grid,
.industry-grid,
.resource-grid,
.privacy-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.benchmark-grid article,
.industry-grid article,
.resource-grid article,
.privacy-list article {
  min-height: 230px;
  padding: 24px;
}

.verification-section {
  padding-top: 54px;
  padding-bottom: 54px;
}

.verification-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: 36px;
  padding: 34px;
  border: 1px solid rgba(217, 185, 105, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 185, 105, 0.14), transparent 28%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 56%, #183b34 100%);
  color: #ffffff;
}

.verification-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  line-height: 1.08;
}

.verification-card p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.verification-list {
  display: grid;
  gap: 10px;
}

.verification-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
  font-weight: 800;
}

.verification-list svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.offer-band,
.process-band,
.docs-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(217, 185, 105, 0.12), transparent 28%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 52%, #183b34 100%);
  color: #ffffff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.offer-grid article {
  min-height: 250px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.offer-grid h3 {
  margin-top: 22px;
}

.process-band h2,
.docs-band h2,
.section-heading.light h2 {
  color: #ffffff;
}

.section-heading.light p,
.docs-band p {
  color: rgba(255, 255, 255, 0.74);
}

.company-proof-section {
  background: #f3f6f1;
}

.company-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-top: 28px;
}

.company-proof-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 36px rgba(16, 32, 28, 0.08);
}

.company-proof-grid h3 {
  margin: 0 0 16px;
  font-size: 22px;
}

.company-proof-grid .requisites span {
  border-color: var(--line);
  background: #f8faf7;
  color: var(--ink);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.download-actions .btn-secondary {
  border-color: rgba(20, 36, 31, 0.18);
  background: #ffffff;
  color: var(--ink);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(217, 185, 105, 0.22);
  border-radius: 8px;
  background: rgba(217, 185, 105, 0.16);
}

.process-grid article {
  min-height: 278px;
  padding: 18px;
  background: rgba(9, 28, 25, 0.72);
  display: flex;
  flex-direction: column;
}

.process-grid span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.process-grid p {
  margin: 32px 0 16px;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.34;
}

.process-photo {
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0.62;
  filter: saturate(0.68) contrast(0.92) brightness(0.78);
}

.process-grid article:hover .process-photo {
  opacity: 0.78;
  filter: saturate(0.82) contrast(0.96) brightness(0.88);
}

.safety-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.9fr);
  gap: 28px;
  margin-top: 38px;
}

.risk-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 12px 32px rgba(16, 32, 28, 0.08);
}

.risk-card::after,
.geo-grid article::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 118px;
  height: 56px;
  background: url("/assets/etar-logo-watermark.png") center / contain no-repeat;
  opacity: 0.58;
  pointer-events: none;
}

.risk-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.risk-card div {
  padding: 24px;
}

.risk-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.15;
}

.safety-list {
  display: grid;
  gap: 12px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.case-grid article {
  padding: 24px;
}

.case-grid span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.case-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--forest);
}

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

.geography-section {
  padding-bottom: 58px;
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.geo-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 12px 32px rgba(16, 32, 28, 0.08);
}

.geo-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.geo-grid div {
  padding: 22px;
}

.geo-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: 70px;
  align-items: start;
  padding: 96px 72px;
  background:
    linear-gradient(rgba(247, 248, 245, 0.95), rgba(237, 242, 239, 0.95)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=82")
      center / cover no-repeat;
}

.request-copy {
  position: sticky;
  top: 112px;
}

.request-copy h2 {
  font-size: 46px;
}

.request-copy p {
  margin-top: 20px;
}

.contact-strip {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-strip a,
.contact-strip button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: transparent;
  width: fit-content;
  color: var(--forest);
  font-weight: 900;
  font: inherit;
  cursor: pointer;
}

.contact-strip a:first-child {
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--copper);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(81, 58, 20, 0.18);
}

.contact-proof {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.contact-proof span {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.contact-proof svg {
  flex: 0 0 auto;
  color: var(--copper);
}

.call-funnel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.call-funnel-copy,
.callback-form {
  border: 1px solid rgba(217, 185, 105, 0.2);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 32, 28, 0.08);
}

.call-funnel-copy {
  padding: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 185, 105, 0.18), transparent 32%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 54%, #183b34 100%);
  color: #ffffff;
}

.call-funnel-copy h2 {
  max-width: 760px;
  color: #ffffff;
}

.call-funnel-copy p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.call-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn.light {
  border-color: rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.call-reasons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.call-reasons span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.call-reasons svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.callback-form {
  display: grid;
  gap: 14px;
  padding: 26px;
  background: #ffffff;
}

.callback-form h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.12;
}

.callback-form p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

.modal-open {
  overflow: hidden;
}

.wechat-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(8, 18, 15, 0.72);
  backdrop-filter: blur(8px);
}

.wechat-modal[hidden] {
  display: none;
}

.wechat-dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid rgba(217, 185, 105, 0.32);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
  text-align: center;
}

.wechat-dialog h2 {
  margin: 0;
  font-size: 28px;
}

.wechat-dialog p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.wechat-dialog img {
  display: block;
  width: min(320px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.wechat-dialog span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.wechat-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.wechat-section {
  padding-top: 34px;
}

.wechat-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(217, 185, 105, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(244, 247, 243, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(217, 185, 105, 0.18), transparent 36%);
  box-shadow: 0 14px 34px rgba(16, 32, 28, 0.08);
}

.wechat-copy p {
  max-width: 720px;
  color: var(--muted);
}

.wechat-copy .btn {
  margin-top: 22px;
}

.wechat-qr {
  margin: 0;
  text-align: center;
}

.wechat-qr img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.wechat-qr figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.seo-links-section {
  padding-top: 58px;
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.seo-link-grid article,
.seo-split article,
.seo-case-card,
.seo-step-grid article {
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 32, 28, 0.06);
}

.seo-link-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.seo-link-grid h3,
.seo-split h3,
.seo-case-card h2 {
  margin: 0;
  color: var(--ink);
}

.seo-link-grid p {
  margin: 0;
  color: var(--muted);
}

.seo-link-grid a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--copper);
  font-weight: 900;
}

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

.seo-split article {
  padding: 26px;
}

.seo-check-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.seo-check-list span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(20, 36, 31, 0.05);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
}

.seo-check-list svg {
  flex: 0 0 auto;
  color: var(--copper);
}

.seo-check-list a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(20, 36, 31, 0.05);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
}

.seo-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.seo-step-grid article {
  min-height: 132px;
  padding: 22px;
}

.seo-step-grid span {
  color: var(--copper);
  font-size: 13px;
  font-weight: 900;
}

.seo-step-grid p {
  margin: 18px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.seo-case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: start;
  padding: 30px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 185, 105, 0.16), transparent 35%),
    rgba(255, 255, 255, 0.94);
}

.seo-case-card p {
  color: var(--muted);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 22px;
  align-items: start;
}

.article-card,
.article-sidebar {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(16, 32, 28, 0.07);
}

.article-card h2 {
  margin: 10px 0 16px;
  font-size: 38px;
  line-height: 1.05;
}

.article-card p {
  color: var(--muted);
  font-size: 17px;
}

.article-card h3,
.article-sidebar h3 {
  margin: 24px 0 0;
}

.status-section {
  padding-top: 70px;
}

.status-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.status-card {
  padding: 34px;
  border: 1px solid rgba(217, 185, 105, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(244, 247, 243, 0.94)),
    radial-gradient(circle at 100% 0%, rgba(217, 185, 105, 0.2), transparent 35%);
  box-shadow: 0 14px 34px rgba(16, 32, 28, 0.08);
}

.status-card h2 {
  max-width: 760px;
}

.status-card p {
  max-width: 760px;
  margin-top: 16px;
  color: var(--muted);
}

.status-step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 26px;
}

.status-step-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
}

.status-step-grid b {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(217, 185, 105, 0.2);
  color: var(--copper);
  font-size: 11px;
}

.case-details {
  padding-top: 18px;
}

.case-detail-grid,
.crm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.case-detail-card,
.crm-grid article {
  padding: 24px;
  border: 1px solid rgba(20, 36, 31, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(16, 32, 28, 0.06);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
}

.case-meta span,
.case-meta em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.case-meta span {
  background: var(--forest);
  color: #ffffff;
}

.case-meta em {
  border: 1px solid rgba(217, 185, 105, 0.34);
  background: rgba(217, 185, 105, 0.14);
  color: var(--copper);
}

.case-detail-card h3,
.crm-grid h3 {
  margin: 0;
  color: var(--ink);
}

.case-steps {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.case-steps p {
  margin: 0;
  color: var(--muted);
}

.case-steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--forest);
}

.crm-section {
  padding-top: 52px;
}

.crm-grid article {
  position: relative;
  overflow: hidden;
}

.crm-grid svg {
  width: 28px;
  height: 28px;
  margin-bottom: 18px;
  color: var(--copper);
}

.crm-grid p {
  margin-top: 10px;
  color: var(--muted);
}

.request-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 1px;
  accent-color: var(--copper);
}

.consent-check span {
  min-width: 0;
}

.consent-check a {
  color: var(--copper);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8d2;
  border-radius: 8px;
  background: #fbfcfa;
  color: var(--ink);
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

input[type="file"] {
  display: flex;
  align-items: center;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
  min-height: 112px;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--copper);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(182, 140, 66, 0.16);
}

.brief-output {
  display: block;
  padding: 16px;
  border: 1px solid rgba(63, 111, 114, 0.22);
  border-radius: 8px;
  background: #eef5f2;
  color: var(--forest);
  white-space: pre-wrap;
  font-size: 14px;
  font-weight: 700;
}

.faq-section {
  padding-bottom: 72px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 38px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbf8 100%);
  box-shadow: 0 10px 26px rgba(16, 32, 28, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  padding: 0 20px 20px;
  font-size: 15px !important;
}

.contacts-section {
  padding: 0 72px 96px;
}

.contacts-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: 44px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(217, 185, 105, 0.16), transparent 32%),
    linear-gradient(135deg, var(--forest-deep) 0%, var(--forest) 58%, #183b34 100%);
  color: #ffffff;
}

.contacts-card h2 {
  color: #ffffff;
}

.contacts-card p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.requisites {
  display: grid;
  gap: 10px;
}

.requisites span {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.requisites strong {
  color: #ffffff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 72px;
  background: var(--forest-deep);
  color: #ffffff;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 82px;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
  background: #ffffff;
  padding: 6px;
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.site-footer nav {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}

.mobile-cta {
  display: none;
}

@media (max-width: 1100px) {
  .site-header {
    padding: 14px 24px;
  }

  .site-nav {
    gap: 14px;
    font-size: 13px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 34px;
    padding: 116px 24px 48px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .page-hero-inner {
    padding: 132px 32px 68px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .offer-panel {
    max-width: 620px;
  }

  .proof-strip,
  .category-grid,
  .popular-direction-grid,
  .company-snapshot-facts,
  .audience-grid,
  .offer-grid,
  .process-grid,
  .service-detail,
  .benchmark-grid,
  .industry-grid,
  .resource-grid,
  .seo-link-grid,
  .seo-step-grid,
  .case-detail-grid,
  .crm-grid,
  .privacy-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-col,
  .section-heading,
  .docs-layout,
  .company-snapshot,
  .company-proof-grid,
  .safety-layout,
  .request-section,
  .contacts-card,
  .verification-card,
  .call-funnel,
  .status-layout,
  .wechat-card,
  .article-layout,
  .seo-split,
  .seo-case-card {
    grid-template-columns: 1fr;
  }

  .section h2,
  .request-copy h2,
  .contacts-card h2,
  .verification-card h2 {
    font-size: 40px;
  }

  .request-section {
    padding: 88px 32px;
  }

  .request-copy {
    position: static;
  }

  .process-grid article {
    min-height: 264px;
  }

  .process-photo {
    height: 128px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .lang-switch {
    margin-left: auto;
  }

  .header-contact {
    margin-left: 0;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 15px 18px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero,
  .hero-content {
    min-height: auto;
  }

  .hero-content {
    padding-top: 108px;
  }

  .trust-row,
  .task-table > div,
  .case-grid,
  .doc-list,
  .geo-grid,
  .faq-list,
  .form-row,
  .service-detail,
  .benchmark-grid,
  .industry-grid,
  .resource-grid,
  .seo-link-grid,
  .seo-step-grid,
  .case-detail-grid,
  .crm-grid,
  .privacy-list {
    grid-template-columns: 1fr;
  }

  .task-table span {
    padding: 15px 16px;
  }

  .task-table span:first-child {
    padding-bottom: 0;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 68px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand small,
  .brand-text {
    display: none;
  }

  .header-contact {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .header-icon {
    width: 34px;
    height: 34px;
  }

  .header-contact a[aria-label="Telegram"] {
    display: none;
  }

  .lang-switch {
    display: none;
  }

  .site-nav {
    top: 68px;
    left: 12px;
    right: 12px;
  }

  .hero-content {
    display: block;
    width: 100vw;
    max-width: 100vw;
    padding: 90px 16px 32px;
    overflow: hidden;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .hero h1 {
    max-width: 100%;
    width: 100%;
    font-size: 24px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .mobile-break {
    display: block;
  }

  .page-hero {
    min-height: auto;
  }

  .page-hero-inner {
    padding: 94px 16px 42px;
  }

  .page-hero h1 {
    font-size: 27px;
    line-height: 1.06;
    overflow-wrap: anywhere;
  }

  .page-hero p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 16px;
  }

  .hero-lead {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.48;
    margin-top: 14px;
  }

  .eyebrow,
  .section-kicker,
  .panel-label {
    margin-bottom: 9px;
    font-size: 10px;
    line-height: 1.35;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 18px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    min-height: 46px;
    padding: 10px 13px;
    font-size: 14px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .trust-row span {
    min-width: 0;
    min-height: 46px;
    padding: 9px 10px;
    font-size: 12px;
    line-height: 1.2;
  }

  .offer-panel {
    display: none;
  }

  .offer-panel h2 {
    font-size: 24px;
  }

  .offer-panel p:not(.panel-label) {
    margin-top: 10px;
    font-size: 14px;
  }

  .panel-link {
    margin-top: 16px;
  }

  .proof-strip,
  .audience-grid,
  .offer-grid,
  .process-grid,
  .benchmark-grid,
  .industry-grid,
  .resource-grid,
  .popular-direction-grid,
  .company-snapshot-facts,
  .seo-link-grid,
  .seo-step-grid,
  .case-detail-grid,
  .crm-grid,
  .privacy-list {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    min-height: auto;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip strong {
    font-size: 21px;
  }

  .proof-strip span {
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.35;
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .request-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-snapshot {
    width: calc(100% - 24px);
    margin-top: 14px;
    padding: 16px;
  }

  .company-snapshot h2 {
    font-size: 22px;
  }

  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .section h2,
  .request-copy h2,
  .contacts-card h2,
  .verification-card h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .section p,
  .request-copy p,
  .contacts-card p,
  .verification-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .section-heading,
  .two-col,
  .docs-layout {
    gap: 18px;
  }

  .category-grid {
    display: flex;
    gap: 12px;
    margin-right: -16px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .category-grid::-webkit-scrollbar {
    display: none;
  }

  .category-card,
  .offer-grid article,
  .process-grid article,
  .service-detail article,
  .benchmark-grid article,
  .industry-grid article,
  .resource-grid article,
  .privacy-list article {
    min-height: auto;
  }

  .category-card {
    flex: 0 0 78%;
    min-width: 0;
    padding: 16px;
    scroll-snap-align: start;
  }

  .category-card h3,
  .offer-grid h3,
  .case-grid h3,
  .benchmark-grid h3,
  .industry-grid h3,
  .resource-grid h3,
  .privacy-list h3 {
    margin-top: 14px;
    font-size: 18px;
  }

  .category-card p,
  .offer-grid p,
  .case-grid p,
  .benchmark-grid p,
  .industry-grid p,
  .resource-grid p,
  .privacy-list p {
    font-size: 13px;
    line-height: 1.45;
  }

  .audience-grid span,
  .safety-list span,
  .doc-list span {
    min-height: 50px;
    padding: 11px 12px;
    font-size: 13px;
  }

  .task-table {
    margin-top: 24px;
  }

  .task-head {
    display: none !important;
  }

  .task-table > div {
    gap: 0;
    border-bottom: 1px solid var(--line);
  }

  .task-table > div:last-child {
    border-bottom: 0;
  }

  .process-grid p {
    margin: 0;
    min-height: auto;
  }

  .process-grid {
    gap: 10px;
    margin-top: 28px;
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .process-grid article {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 12px;
    align-items: center;
    border: 1px solid rgba(217, 185, 105, 0.18);
    border-radius: 8px;
    background: rgba(9, 28, 25, 0.7);
  }

  .process-grid span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(217, 185, 105, 0.34);
    border-radius: 50%;
    font-size: 11px;
  }

  .process-photo {
    display: none;
    grid-column: 1 / -1;
    height: 116px;
    margin-top: 2px;
  }

  .process-grid article:nth-child(1) .process-photo,
  .process-grid article:nth-child(5) .process-photo,
  .process-grid article:nth-child(9) .process-photo {
    display: block;
  }

  .process-grid article,
  .offer-grid article,
  .case-grid article,
  .service-detail article,
  .benchmark-grid article,
  .industry-grid article,
  .resource-grid article,
  .privacy-list article,
  .case-detail-card,
  .crm-grid article,
  .seo-link-grid article,
  .seo-split article,
  .seo-step-grid article,
  .seo-case-card,
  .call-funnel-copy,
  .callback-form,
  .status-card,
  .wechat-card,
  .risk-card div,
  .geo-grid div {
    padding: 18px;
  }

  .wechat-dialog {
    padding: 22px;
  }

  .wechat-dialog h2 {
    font-size: 23px;
  }

  .status-step-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .case-detail-grid,
  .crm-grid {
    gap: 12px;
    margin-top: 24px;
  }

  .call-funnel {
    gap: 12px;
  }

  .call-actions,
  .call-actions .btn {
    width: 100%;
  }

  .call-reasons {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 18px;
  }

  .call-reasons span {
    min-height: 46px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .callback-form h3 {
    font-size: 21px;
  }

  .contact-proof span {
    font-size: 12px;
  }

  .benchmark-grid,
  .industry-grid,
  .resource-grid,
  .privacy-list {
    gap: 12px;
    margin-top: 24px;
  }

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

  .verification-card {
    gap: 22px;
    padding: 22px;
  }

  .request-section {
    padding-top: 48px;
    padding-bottom: 50px;
  }

  .request-form {
    gap: 13px;
    padding: 16px;
  }

  label {
    gap: 6px;
    font-size: 12px;
  }

  input,
  select {
    min-height: 44px;
    padding: 0 11px;
  }

  textarea {
    min-height: 92px;
    padding: 10px 11px;
  }

  .contacts-section {
    padding: 0 16px 72px;
  }

  .contacts-card {
    padding: 24px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 16px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 80px;
    height: 48px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 10px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    max-width: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(219, 226, 221, 0.9);
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    background: rgba(247, 248, 245, 0.96);
    box-shadow: 0 14px 40px rgba(16, 32, 28, 0.2);
    backdrop-filter: blur(14px);
    overflow: hidden;
  }

  .mobile-cta a,
  .mobile-cta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    min-height: 42px;
    border-radius: 8px;
    background: var(--forest);
    color: #ffffff;
    font: inherit;
    padding: 0 4px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    cursor: pointer;
  }

  .mobile-cta a:first-child {
    background: var(--copper);
  }

  .mobile-cta svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .btn {
    font-size: 13px;
  }

  .brand strong {
    font-size: 14px;
  }

  .trust-row span,
  .category-card {
    flex-basis: 84%;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }
}
