:root {
  --bg: #0f1115;
  --bg-soft: #171b22;
  --text: #f5f7fb;
  --muted: #c8d0dc;
  --dark: #111111;
  --light: #ffffff;
  --accent: #ff6b00;
  --accent-2: #ffd400;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1240px;
  --focus: 0 0 0 4px rgba(255, 212, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 0, 0.16), transparent 30%),
    linear-gradient(180deg, #0f1115 0%, #12151b 100%);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

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

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

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

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

.page-wrap {
  overflow: hidden;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 12, 16, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 212, 0, 0.15);
  transition: 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}

.logo span {
  color: var(--accent-2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-weight: 700;
  color: #eef2f8;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  font-weight: 800;
  white-space: nowrap;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  border-radius: 3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 0;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, opacity 0.2s ease;
  text-align: center;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--accent-2), #ffef70 60%, #ffc400);
  box-shadow: 0 12px 30px rgba(255, 212, 0, 0.28);
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.8);
  color: #fff;
  background: transparent;
}

.btn-lg {
  min-height: 60px;
  padding: 0 30px;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.68) 45%, rgba(10, 10, 10, 0.45) 100%),
    linear-gradient(180deg, rgba(255, 107, 0, 0.18), rgba(0, 0, 0, 0.35));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 110px 0 80px;
}

.hero-badge,
.section-kicker {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.16);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.section-kicker.yellow {
  background: rgba(255, 212, 0, 0.12);
  border-color: rgba(255, 212, 0, 0.3);
  color: var(--accent-2);
}

.section-kicker.dark {
  background: rgba(17,17,17,0.08);
  border-color: rgba(17,17,17,0.15);
  color: #111;
}

.hero h1,
.section h2,
.footer-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 980px;
  margin: 20px 0 18px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
}

.hero-text {
  max-width: 760px;
  font-size: 20px;
  line-height: 1.6;
  color: #eef2f8;
}

.hero-summary {
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-summary li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.hero-summary li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-2);
}

.hero-meta {
  margin-top: 28px;
}

.hero-meta-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.hero-meta-card .material-symbols-outlined {
  color: var(--accent-2);
  font-size: 28px;
}

.hero-meta-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-meta-card strong {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
}

.hero-meta-card span:last-child {
  color: #f9fbff;
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

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

.hero-point {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 18px 20px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.hero-point .material-symbols-outlined {
  color: var(--accent-2);
  font-size: 28px;
}

.stats-strip {
  background: linear-gradient(90deg, #ff6b00, #ff8f00 55%, #ffd400);
  padding: 22px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  background: rgba(17,17,17,0.9);
  color: #fff;
  border-radius: 18px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-num {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: var(--accent-2);
  line-height: 1;
}

.stat-label {
  margin-top: 8px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 12px;
}

.section {
  padding: 96px 0;
}

.section-light {
  background:
    linear-gradient(180deg, #f7f8fb 0%, #eef2f7 100%);
  color: #111827;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(255, 212, 0, 0.08), transparent 28%),
    linear-gradient(180deg, #12161d 0%, #0e1117 100%);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
}

.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.04;
}

.section-head p,
.regions-text p,
.lead-info p,
.footer-text,
.quote-card p,
.workflow-card p,
.faq-item p {
  font-size: 18px;
  line-height: 1.65;
}

.section-head p {
  max-width: 520px;
  color: #4b5563;
}

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

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  border: 1px solid rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.portfolio-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card h3,
.adv-item h3,
.portfolio-info h3,
.portfolio-cta-box h3,
.lead-info h2,
.quote-author strong {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.service-card h3,
.workflow-card h3,
.faq-item summary {
  margin: 0 0 12px;
  font-size: 24px;
}

.service-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
}

.accent-card {
  background: linear-gradient(135deg, #ff6b00 0%, #ff9d00 100%);
  color: #fff;
  display: flex;
  align-items: stretch;
}

.accent-card p,
.accent-card h3 {
  color: #fff;
}

.mini-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.advantages-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
}

.adv-list {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.adv-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
}

.adv-num,
.workflow-num {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), #ffb800);
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 24px;
}

.adv-item p {
  margin: 8px 0 0;
  color: #d0d7e2;
  line-height: 1.6;
}

.advantages-visual {
  position: relative;
}

.advantages-visual img,
.trust-image img {
  width: 100%;
  border-radius: 26px;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.floating-note {
  position: absolute;
  left: -20px;
  bottom: 28px;
  max-width: 320px;
  background: linear-gradient(135deg, var(--accent), #ff9500);
  color: #fff;
  padding: 20px 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-card {
  background: #fff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(17, 24, 39, 0.06);
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
}

.workflow-card h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  margin-top: 18px;
}

.workflow-card p {
  margin: 0;
  color: #4b5563;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-auto-rows: 280px;
  gap: 20px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
  transition: transform 0.25s ease;
}

.portfolio-card.large {
  grid-row: span 2;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-info {
  position: absolute;
  inset: auto 0 0 0;
  padding: 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
}

.portfolio-info span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-info h3 {
  margin: 10px 0 0;
  color: #fff;
  font-size: 24px;
}

.portfolio-card.accent {
  background: linear-gradient(135deg, #141821, #1b202c);
  border: 2px solid rgba(255, 212, 0, 0.18);
}

.portfolio-cta-box {
  height: 100%;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.portfolio-cta-box p {
  color: #d7dfeb;
  line-height: 1.6;
}

.regions-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff4de 100%);
  color: #111827;
}

.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.region-item {
  padding: 14px 20px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
}

.map-embed-card {
  position: relative;
  min-height: 460px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(255, 107, 0, 0.14), transparent 45%),
    linear-gradient(180deg, #10151d 0%, #171d27 100%);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
}

.map-embed-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.2;
  pointer-events: none;
}

.map-embed-card iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 424px;
  border: 0;
  border-radius: 22px;
  background: #fff;
}

.trust-section {
  background: linear-gradient(135deg, #ffd400 0%, #ffb800 100%);
  color: #111;
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: center;
}

.quote-card {
  margin-top: 24px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.quote-author {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-author span {
  color: #4b5563;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-tags span {
  padding: 12px 16px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: 0 12px 30px rgba(16, 24, 40, 0.06);
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px 22px 0;
  position: relative;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 22px;
  color: #4b5563;
}

.lead-section {
  background:
    radial-gradient(circle at top left, rgba(255, 107, 0, 0.2), transparent 30%),
    linear-gradient(180deg, #0f1115 0%, #151922 100%);
}

.lead-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  color: #111827;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.lead-info {
  padding: 42px;
  background: linear-gradient(135deg, #ff6b00, #ff9d00);
  color: #fff;
}

.lead-info h2 {
  margin: 18px 0;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.02;
}

.contact-stack {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.messenger-line {
  margin-top: 6px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  width: fit-content;
  transition: transform 0.2s ease, background 0.2s ease;
}

.messenger-line:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.22);
}

.form-wrap {
  padding: 42px;
}

.lead-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  gap: 10px;
}

.form-row label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 16px 18px;
  font: inherit;
  resize: vertical;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12);
}

.btn-submit {
  width: 100%;
}

.form-note {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
  text-align: center;
}

.site-footer {
  background: #0b0d11;
  color: #fff;
  border-top: 4px solid var(--accent-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 28px;
  padding: 54px 0;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.footer-title {
  margin: 0 0 14px;
  font-size: 18px;
}

.footer-text,
.footer-links a,
.footer-contacts a,
.footer-contacts span {
  color: #c7cfda;
}

.footer-links,
.footer-contacts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-address {
  font-style: normal;
}

.footer-max-link {
  color: var(--accent-2) !important;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom-inner {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #9ba5b4;
  font-size: 14px;
}

.max-float {
  position: fixed;
  right: 20px;
  bottom: 108px;
  z-index: 1150;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #111 0%, #252c39 100%);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.max-float .material-symbols-outlined {
  color: var(--accent-2);
}

.max-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.42);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(14, 17, 23, 0.96);
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.09);
}

.cookie-banner a {
  color: var(--accent-2);
  text-decoration: underline;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  font-size: 14px;
  line-height: 1.5;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 600, "GRAD" 0, "opsz" 24;
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: 86px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: rgba(11, 13, 17, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .burger {
    display: block;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-points,
  .services-grid,
  .portfolio-grid,
  .advantages-wrap,
  .regions-grid,
  .trust-grid,
  .lead-box,
  .footer-grid,
  .stats-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card.large {
    grid-row: span 1;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .advantages-visual img,
  .trust-image img {
    min-height: 340px;
  }

  .floating-note {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .map-embed-card {
    min-height: auto;
  }

  .map-embed-card iframe {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    min-height: 74px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo actions"
      "phone phone";
    align-items: center;
    gap: 8px 12px;
    padding: 10px 0;
  }

  .logo {
    grid-area: logo;
    font-size: 26px;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
  }

  .header-phone {
    grid-area: phone;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 96px 0 56px;
  }

  .hero-text,
  .section-head p,
  .regions-text p,
  .lead-info p,
  .footer-text,
  .quote-card p,
  .workflow-card p,
  .faq-item p {
    font-size: 16px;
  }

  .hero-meta-card {
    width: 100%;
    align-items: flex-start;
  }

  .hero-summary li {
    font-size: 15px;
  }

  .section {
    padding: 72px 0;
  }

  .service-card img {
    height: 210px;
  }

  .lead-info,
  .form-wrap {
    padding: 28px 20px;
  }

  .map-embed-card {
    padding: 12px;
    border-radius: 22px;
  }

  .map-embed-card iframe {
    height: 300px;
    border-radius: 16px;
  }

  .faq-item {
    padding: 0 16px;
  }

  .faq-item summary {
    font-size: 16px;
    padding-right: 24px;
  }

  .max-float {
    right: 12px;
    bottom: 92px;
    padding: 12px 16px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-btn {
    width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
