:root {
  --ink: #0b0d12;
  --ink-soft: #151922;
  --surface: #ffffff;
  --surface-soft: #f5f6f8;
  --line: #e3e6eb;
  --text: #161a22;
  --muted: #616977;
  --red: #d71920;
  --red-dark: #a70f15;
  --amber: #ffb000;
  --green: #168a4a;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 10px 30px rgba(11, 13, 18, 0.08);
  --shadow: 0 24px 70px rgba(11, 13, 18, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

a,
button,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  line-height: 1.15;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 4.7rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.18rem;
  letter-spacing: -0.02em;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 200;
  border-radius: 10px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 800;
  padding: 10px 16px;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.topbar {
  background: var(--ink);
  color: #e9ecf1;
  font-size: 0.82rem;
  font-weight: 700;
}

.topbar .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.topbar strong,
.topbar a {
  color: #ffffff;
}

.topbar strong {
  color: var(--amber);
  letter-spacing: 0.05em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(11, 13, 18, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(11, 13, 18, 0.04);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 26px;
}

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

.brand-logo-frame {
  display: inline-flex;
  width: 80px;
  height: 58px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e1e4e9;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 7px 20px rgba(11, 13, 18, 0.1);
  padding: 4px;
}

.brand-logo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
  object-position: center;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.12;
  text-transform: uppercase;
}

.brand-copy span:last-child {
  color: var(--red);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav-list {
  display: flex;
  align-items: center;
  gap: 23px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav-list li {
  position: relative;
  margin: 0;
}

.site-nav-list .sub-menu {
  position: absolute;
  top: calc(100% - 12px);
  left: -18px;
  display: none;
  width: 240px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  list-style: none;
  padding: 10px;
}

.site-nav-list li:hover > .sub-menu,
.site-nav-list li:focus-within > .sub-menu {
  display: block;
}

.site-nav-list .sub-menu a {
  display: block;
  border-radius: 9px;
  padding: 10px 12px;
}

.site-nav-list .sub-menu a::after {
  display: none;
}

.site-nav a {
  position: relative;
  padding: 27px 0 24px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.3rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 14px;
  appearance: none;
  cursor: pointer;
  font-family: "Manrope", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding: 14px 22px;
  text-align: center;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--red);
  box-shadow: 0 10px 26px rgba(215, 25, 32, 0.28);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--red-dark);
  color: #ffffff;
}

.button-dark {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.button-whatsapp {
  background: var(--green);
  box-shadow: 0 10px 25px rgba(22, 138, 74, 0.24);
  color: #ffffff;
}

.button-whatsapp:hover {
  background: #0f6e39;
  color: #ffffff;
}

.button-outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--red);
  color: var(--red);
}

.header-call {
  min-height: 48px;
  flex: 0 0 auto;
  border-radius: 14px;
  padding-inline: 22px;
  padding: 12px 18px;
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after,
.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 8, 12, 0.97) 0%, rgba(6, 8, 12, 0.86) 44%, rgba(6, 8, 12, 0.3) 78%, rgba(6, 8, 12, 0.15) 100%);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 680px;
  align-items: center;
  padding-block: 88px 116px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 19px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  border: 1px solid rgba(255, 176, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.1);
  color: #ffc44a;
  letter-spacing: 0.08em;
  padding: 8px 14px;
}

.eyebrow-light::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 176, 0, 0.12);
}

.hero h1,
.page-hero h1 {
  margin-bottom: 20px;
  color: #ffffff;
}

.hero h1 em {
  color: #ff4b50;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 31px;
  color: #d2d6df;
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  line-height: 1.72;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero .button {
  min-height: 58px;
  font-size: 1rem;
  padding-inline: 25px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.trust-chip {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f0f2f5;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 13px;
}

.ad-note {
  margin: 18px 0 0;
  color: #aeb5c2;
  font-size: 0.82rem;
}

.quick-strip {
  position: relative;
  z-index: 5;
  margin-top: -52px;
}

.quick-strip-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  grid-template-columns: repeat(4, 1fr);
}

.quick-item {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid var(--line);
  padding: 22px;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff0f1;
  color: var(--red);
  font-size: 1.1rem;
  font-weight: 900;
}

.quick-item strong {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.95rem;
}

.quick-item span:last-child {
  color: var(--muted);
  font-size: 0.79rem;
}

.section {
  padding-block: 96px;
}

.section-sm {
  padding-block: 72px;
}

.section-soft {
  background: var(--surface-soft);
}

.section-dark {
  background: var(--ink);
  color: #d6dae2;
}

.section-dark h2,
.section-dark h3 {
  color: #ffffff;
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.section-dark .section-head p {
  color: #b4bbc7;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.service-card:hover {
  border-color: rgba(215, 25, 32, 0.32);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

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

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.card-body p {
  flex: 1;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.93rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--red);
  font-weight: 900;
}

.text-link:hover {
  color: var(--red-dark);
}

.split {
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.split-media {
  position: relative;
}

.split-media img {
  display: block;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.split-badge {
  position: absolute;
  right: -16px;
  bottom: -22px;
  max-width: 220px;
  border-radius: 16px;
  background: var(--red);
  box-shadow: 0 15px 35px rgba(215, 25, 32, 0.28);
  color: #ffffff;
  font-weight: 800;
  padding: 18px 21px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  display: inline-flex;
  width: 23px;
  height: 23px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff0f1;
  color: var(--red);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 900;
}

.check-list strong {
  color: var(--ink);
}

.section-dark .check-list strong {
  color: #ffffff;
}

.step-card,
.info-card,
.region-card {
  padding: 27px;
}

.step-number {
  color: var(--red);
  font-family: "Sora", Arial, sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.step-card h3 {
  margin: 17px 0 9px;
}

.step-card p,
.info-card p,
.region-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.region-tag {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  padding: 8px 14px;
  transition: 160ms ease;
}

.region-tag:hover {
  border-color: var(--red);
  background: #fff4f4;
  color: var(--red);
  transform: translateY(-1px);
}

.road-box {
  border: 1px solid #2b303b;
  border-radius: var(--radius);
  background: var(--ink-soft);
  padding: 28px;
}

.road-box h2,
.road-box h3,
.road-box strong {
  color: #ffffff;
}

.road-box p {
  color: #b9c0cc;
  margin: 0;
}

.road-box-feature {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: center;
}

.section-link {
  margin-top: 24px;
}

.road-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.road-pills span {
  border: 1px solid #3a404d;
  border-radius: 999px;
  color: #f1f3f7;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 7px 11px;
}

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

.price-item {
  display: flex;
  gap: 13px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 16px;
}

.price-item strong {
  display: block;
  color: var(--ink);
}

.price-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-icon {
  color: var(--red);
  font-weight: 900;
}

.faq-list {
  display: grid;
  max-width: 880px;
  gap: 12px;
  margin-inline: auto;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  padding: 0 20px;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  color: var(--ink);
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  list-style: none;
  padding: 20px 38px 20px 0;
}

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

.faq-list summary::after {
  position: absolute;
  right: 3px;
  color: var(--red);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
}

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

.faq-list details p {
  margin: -4px 0 20px;
  color: var(--muted);
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: center;
  gap: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, #d71920 0%, #a10c12 100%);
  box-shadow: 0 25px 70px rgba(167, 15, 21, 0.25);
  color: #ffffff;
  grid-template-columns: 1fr auto;
  padding: 45px 48px;
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 330px;
  height: 330px;
  border: 50px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.cta-panel h2 {
  margin-bottom: 8px;
  color: #ffffff;
}

.cta-panel p {
  margin: 0;
  color: #ffe5e6;
}

.cta-panel .button-dark {
  background: #ffffff;
  color: var(--red-dark);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #ffffff;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding-block: 84px 92px;
}

.page-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 4.8vw, 4.15rem);
}

.page-hero p {
  max-width: 700px;
  margin-bottom: 0;
  color: #cbd0da;
  font-size: 1.08rem;
}

.page-hero-actions,
.service-actions {
  margin-top: 26px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #b8bec9;
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.service-detail {
  display: grid;
  align-items: start;
  gap: 45px;
  padding-block: 65px;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
}

.service-detail + .service-detail {
  border-top: 1px solid var(--line);
}

.service-detail img {
  width: 100%;
  min-height: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  object-fit: cover;
}

.service-detail h2 {
  margin-bottom: 15px;
}

.service-detail p {
  color: var(--muted);
}

.service-detail .cta-row {
  margin-top: 24px;
}

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

.region-card {
  scroll-margin-top: 118px;
}

.region-card h2 {
  margin-bottom: 11px;
  font-size: 1.35rem;
}

.region-card h2 a:hover {
  color: var(--red);
}

.region-card-link {
  margin-top: 20px;
}

.region-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.region-meta span {
  border-radius: 999px;
  background: var(--surface-soft);
  color: #454c58;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 10px;
}

.contact-grid {
  display: grid;
  align-items: stretch;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.contact-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  padding: 28px;
}

.contact-card-title {
  font-size: 1.45rem;
}

.contact-card p {
  flex: 1;
  color: var(--muted);
}

.map-frame {
  width: 100%;
  min-height: 440px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-grid {
  display: grid;
  align-items: start;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}

.article-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 27px;
}

.article-card .article-meta {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-card h2 {
  font-size: 1.22rem;
}

.article-card p {
  flex: 1;
  color: var(--muted);
  font-size: 0.91rem;
}

.article-shell {
  display: grid;
  align-items: start;
  gap: 48px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.article-body {
  max-width: 780px;
}

.article-featured {
  margin-bottom: 34px;
}

.article-featured img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.article-body h2 {
  margin: 42px 0 13px;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
}

.article-body p,
.article-body li {
  color: #434a56;
}

.article-body a {
  color: var(--red);
  font-weight: 800;
}

.article-body ul,
.article-body ol {
  padding-left: 22px;
}

.article-callout {
  margin-block: 30px;
  border-left: 4px solid var(--red);
  border-radius: 0 14px 14px 0;
  background: #fff3f3;
  padding: 20px 22px;
}

.article-sidebar {
  position: sticky;
  top: 110px;
  padding: 24px;
}

.article-sidebar p {
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h2 {
  margin: 38px 0 12px;
  font-size: 1.55rem;
}

.legal-copy p,
.legal-copy li {
  color: #484f5b;
}

.entry-content {
  color: #434a56;
}

.entry-content > * {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: var(--container);
}

.entry-content > .alignfull {
  max-width: none;
}

.post-card-meta,
.post-meta {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pagination {
  margin-top: 42px;
}

.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pagination .page-numbers {
  display: inline-flex;
  min-width: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  font-weight: 800;
  padding: 8px 12px;
}

.pagination .current {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.site-footer {
  background: #090b0f;
  color: #aeb4bf;
}

.footer-grid {
  display: grid;
  gap: 38px;
  padding-block: 62px 45px;
  grid-template-columns: 1.35fr repeat(3, 1fr);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
}

.footer-brand .brand-logo-frame {
  width: 84px;
  height: 62px;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.3);
}

.footer-intro {
  max-width: 340px;
  font-size: 0.88rem;
}

.footer-title {
  margin-bottom: 16px;
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
  font-size: 0.87rem;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.86rem;
  font-weight: 700;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-phone {
  color: #ffffff;
  font-size: 1.04rem;
  font-weight: 900;
}

.footer-bottom {
  border-top: 1px solid #242833;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-block: 20px;
  font-size: 0.77rem;
  font-weight: 700;
}

.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.floating-contact .button {
  min-height: 48px;
  box-shadow: 0 12px 32px rgba(11, 13, 18, 0.25);
}

.mobile-contact-bar {
  display: none;
}

.error-page {
  display: flex;
  min-height: 65vh;
  align-items: center;
}

.center-content {
  max-width: 760px;
  text-align: center;
}

.center-actions {
  justify-content: center;
}

.consent-banner {
  position: fixed;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 160;
  display: grid;
  max-width: 920px;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
  border: 1px solid #2c313d;
  border-radius: 18px;
  background: #11151d;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
  color: #d9dde5;
  grid-template-columns: 1fr auto;
  padding: 22px 24px;
}

.consent-banner[hidden] {
  display: none;
}

.consent-banner strong {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
  font-family: "Sora", Arial, sans-serif;
}

.consent-banner p {
  margin: 0;
  font-size: 0.87rem;
}

.consent-actions {
  display: flex;
  gap: 9px;
}

.consent-reject {
  border-color: #3b414e;
  background: transparent;
  color: #ffffff;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 1060px) {
  .header-inner {
    gap: 13px;
  }

  .site-nav {
    gap: 15px;
    font-size: 0.82rem;
  }

  .site-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav-list .sub-menu {
    position: static;
    display: block;
    width: auto;
    border: 0;
    box-shadow: none;
    padding: 0 0 0 16px;
  }

  .brand {
    min-width: 190px;
  }

  .brand img {
    width: 62px;
    height: 48px;
  }

  .brand-copy {
    font-size: 0.76rem;
  }

  .header-call {
    display: none;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-item:nth-child(2) {
    border-right: 0;
  }

  .quick-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 90px;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .topbar .container {
    min-height: 42px;
  }

  .topbar .topbar-detail {
    display: none;
  }

  .header-inner {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo-frame {
    width: 62px;
    height: 48px;
    border-radius: 10px;
    padding: 3px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    position: fixed;
    top: 110px;
    right: 0;
    left: 0;
    display: none;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(11, 13, 18, 0.16);
    padding: 10px 20px 20px;
  }

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

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

  .site-nav a::after {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 640px;
  }

  .hero::after,
  .page-hero::after {
    background: linear-gradient(90deg, rgba(6, 8, 12, 0.95), rgba(6, 8, 12, 0.7));
  }

  .hero-inner {
    padding-block: 76px 102px;
  }

  .section {
    padding-block: 72px;
  }

  .section-sm {
    padding-block: 56px;
  }

  .grid-3,
  .split,
  .service-detail,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .split-media {
    order: -1;
  }

  .split-badge {
    right: 12px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 37px 30px;
  }

  .region-grid,
  .contact-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .floating-contact {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99990;
    display: grid !important;
    width: 100%;
    min-height: 68px;
    visibility: visible !important;
    opacity: 1 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--ink);
    box-shadow: 0 -10px 30px rgba(11, 13, 18, 0.2);
    grid-template-columns: 1fr 1fr;
    isolation: isolate;
    padding: 9px 12px calc(9px + env(safe-area-inset-bottom, 0px));
    transform: translateZ(0);
  }

  .consent-banner {
    right: 12px;
    bottom: 78px;
    left: 12px;
    z-index: 99991;
    grid-template-columns: 1fr;
    padding: 19px;
  }

  .consent-actions .button {
    flex: 1;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .site-nav {
    top: 156px;
    max-height: calc(100vh - 156px);
  }

  .mobile-contact-bar a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 900;
    line-height: 1.15;
    text-decoration: none !important;
  }

  .mobile-contact-bar a:first-child {
    border-radius: 10px;
    background: var(--red);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand-copy span:first-child {
    max-width: 150px;
  }

  .hero,
  .hero-inner {
    min-height: 660px;
  }

  .hero-media {
    object-position: 62% center;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .cta-row .button {
    width: 100%;
  }

  .trust-row {
    gap: 7px;
  }

  .trust-chip {
    font-size: 0.74rem;
  }

  .quick-strip-grid,
  .grid-2,
  .grid-4,
  .price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quick-item {
    min-height: 88px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .quick-item:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .section-head {
    margin-bottom: 28px;
  }

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

  .split-media img {
    min-height: 330px;
  }

  .page-hero-inner {
    padding-block: 65px 72px;
  }

  .page-hero h1 {
    font-size: 2.3rem;
  }

  .cta-panel {
    padding: 32px 23px;
  }

  .footer-bottom .container {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
