:root {
  --accent-deep: #1e293b;
  --accent-soft: #475569;
  --bg-main: #f9fafb;
  --brand-blue: #3b82f6;
  --card-border: #d7e0ec;
  --card-shadow: 0 10px 30px #0f172a0c;
  --dark-card-shadow: 0 14px 38px #0f172a26;
  --drawer-inline: 16px;
  --focus-ring: #f59e0b;
  --focus-ring-offset: 3px;
  --focus-ring-width: 3px;
  --font-body: "PT Sans", sans-serif;
  --font-heading: "PT Serif", serif;
  --link-blue: #2563eb;
  --link-blue-hover: #1d4ed8;
  --site-header-height: 72px;
  --text-main: #111827;
  --text-muted: #475569;
}
/* reset */
@font-face {
  font-family: PT Sans;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/PTSans-Regular.woff2) format("woff2");
}
@font-face {
  font-family: PT Sans;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/PTSans-Bold.woff2) format("woff2");
}
@font-face {
  font-family: PT Serif;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/fonts/PTSerif-Regular.woff2) format("woff2");
}
@font-face {
  font-family: PT Serif;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url(/fonts/PTSerif-Bold.woff2) format("woff2");
}
*,
::before,
::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}
button {
  font: inherit;
  color: inherit;
}
html {
  max-width: 100%;
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  max-width: 100%;
  width: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.5;
  background-color: var(--bg-main);
  color: var(--text-main);
}
:where(a, button, iframe, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}
h1 {
  font-family: var(--font-body);
}
h2 {
  font-family: var(--font-heading);
}
section {
  scroll-margin-top: calc(var(--site-header-height, 72px) - 33px);
}
h3,
h4,
h5,
h6 {
  font-family: var(--font-body);
  line-height: 1.28;
}
h1,
h2 {
  line-height: 1.06;
}
/* utilities */
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0;
}
.z-50 {
  z-index: 50;
}
.mx-auto {
  margin-inline: auto;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-14 {
  margin-bottom: 3.5rem;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.inline-block {
  display: inline-block;
}
.aspect-square {
  aspect-ratio: 1;
}
.h-full {
  height: 100%;
}
.w-full {
  width: 100%;
}
.max-w-2xl {
  max-width: 600px;
}
.max-w-3xl {
  max-width: 48rem;
}
.max-w-4xl {
  max-width: 56rem;
}
.max-w-5xl {
  max-width: 64rem;
}
.max-w-7xl {
  max-width: 80rem;
}
.max-w-hero-copy {
  max-width: 555px;
}
.max-w-hero-title {
  max-width: 580px;
}
.max-w-xl {
  max-width: 36rem;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-center {
  align-items: center;
}
.items-start {
  align-items: flex-start;
}
.justify-center {
  justify-content: center;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-16 {
  gap: 1.35rem;
}
.overflow-hidden {
  overflow: hidden;
}
.border {
  border-style: solid;
  border-width: 1px;
}
.border-t {
  border-top-style: solid;
  border-top-width: 1px;
}
.border-b {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.border-slate-100 {
  border-color: #f1f5f9;
}
.bg-slate-50 {
  background-color: #f8fafc;
}
.bg-white {
  background-color: #fff;
}
.bg-white\/80 {
  background-color: #fffc;
}
.to-transparent {
  --tw-gradient-to: transparent;
}
.object-cover {
  object-fit: cover;
}
.p-10 {
  padding: 2.5rem;
}
.px-6 {
  padding-inline: 1.5rem;
}
.py-5 {
  padding-block: 1.25rem;
}
.py-16 {
  padding-block: 4rem;
}
.text-center {
  text-align: center;
}
.text-3xl {
  font-size: 1.875rem;
}
.text-4xl {
  font-size: 2.25rem;
}
.text-base {
  font-size: 1rem;
}
.text-lg {
  font-size: 1.125rem;
}
.text-sm {
  font-size: 0.875rem;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-tight {
  line-height: 1.25;
}
.font-bold {
  font-weight: 700;
}
.font-extrabold {
  font-weight: 800;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-blue-600 {
  color: #2563eb;
}
.text-slate-600 {
  color: #475569;
}
.text-slate-900 {
  color: #0f172a;
}
.text-white {
  color: #fff;
}
.uppercase {
  text-transform: uppercase;
}
.shadow-sm {
  box-shadow:
    0 1px 3px #0000001a,
    0 1px 2px -1px #0000001a;
}
.backdrop-blur-xl {
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
}
.transition-colors {
  transition:
    color 0.15s,
    background-color 0.15s,
    border-color 0.15s,
    text-decoration-color 0.15s,
    fill 0.15s,
    stroke 0.15s;
}
.max-w-7xl,
.max-w-5xl,
.max-w-3xl {
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
.font-body {
  font-family: var(--font-body);
}
.font-heading {
  font-family: var(--font-heading);
}
.rounded-\[48px\] {
  border-radius: 48px;
}
.text-\[10px\] {
  font-size: 10px;
}
.text-\[13px\] {
  font-size: 13px;
}
.from-white\/20 {
  --tw-gradient-from: #fff3;
}
.bg-gradient-to-t {
  background-image: linear-gradient(
    to top,
    var(--tw-gradient-from, #0000),
    var(--tw-gradient-to, transparent)
  );
}
.narrow-title {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.site-arrow {
  display: inline-block;
  height: 0.72em;
  width: 1.02em;
  margin-left: 0.28em;
  overflow: visible;
  vertical-align: -0.05em;
  color: currentColor;
}
.site-arrow path {
  stroke: currentColor;
}
.site-arrow-left {
  margin-left: 0;
  margin-right: 0.24em;
  transform: scaleX(-1);
}
/* layout */
:where(.space-y-1 > :not(:last-child)) {
  margin-bottom: 0.25rem;
}
:where(.space-y-2 > :not(:last-child)) {
  margin-bottom: 0.4rem;
}
:where(.space-y-3 > :not(:last-child)) {
  margin-bottom: 0.8rem;
}
:where(.space-y-5 > :not(:last-child)) {
  margin-bottom: 1.3rem;
}
:where(.space-y-6 > :not(:last-child)) {
  margin-bottom: 1.55rem;
}
.sp {
  padding: 84px 0;
}
.section-muted {
  background: #f9fafb;
}
.section-dark {
  background: #0f172a;
}
.sec-label {
  margin-bottom: 0.6rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #475569;
  text-transform: uppercase;
}
.section-desc {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  font-size: 0.875rem;
  color: #475569;
}
.section-desc.mb-4 {
  margin-bottom: 1rem;
}
.section-desc.mb-8 {
  margin-bottom: 2rem;
}
.section-desc.mb-10 {
  margin-bottom: 2.5rem;
}
.section-desc-light {
  color: #cbd5e1;
}
.section-reveal .section-reveal-item {
  opacity: 0;
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s,
    border-color 0.25s;
  will-change: opacity, transform;
}
.section-reveal .section-reveal-card {
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s,
    border-color 0.25s;
  will-change: opacity, transform;
}
.section-reveal .section-reveal-zoom {
  opacity: 0;
  transform: scale(0.8);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.section-reveal .reveal-from-right {
  transform: translate3d(34px, 0, 0);
}
.section-reveal .reveal-from-left {
  transform: translate3d(-34px, 0, 0);
}
.section-reveal .reveal-from-bottom {
  transform: translate3d(0, 26px, 0);
}
.section-reveal.is-visible .section-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: var(--reveal-delay, 0ms);
}
.section-reveal.is-visible .section-reveal-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay:
    var(--reveal-delay, 100ms), var(--reveal-delay, 100ms), 0ms, 0ms;
}
.section-reveal.is-visible .section-reveal-zoom {
  opacity: 1;
  transform: scale(1);
  transition-delay: var(--reveal-delay, 0ms), var(--reveal-delay, 0ms);
}
@keyframes site-header-in {
  from {
    opacity: 0;
    transform: translate3d(0, -16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
/* buttons */
.btn-expert {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  background-color: var(--accent-deep);
  color: #fff;
  border: none;
  border-radius: 12px;
  transition:
    background-color 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.btn-expert:hover {
  background-color: var(--brand-blue);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.btn-outline {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  background: 0 0;
  color: var(--accent-deep);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.btn-outline:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.section-reveal.is-reveal-complete .btn-expert.section-reveal-item {
  transition:
    background-color 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.section-reveal.is-reveal-complete .btn-outline.section-reveal-item {
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.section-reveal.is-reveal-complete .btn-expert.section-reveal-item:hover,
.section-reveal.is-reveal-complete .btn-outline.section-reveal-item:hover {
  transform: translateY(-1px);
}
.btn-wa {
  background: #0f7f4a;
  color: #fff;
}
.btn-wa:hover {
  background: #25d366;
}
.btn-tg {
  background: #0878ad;
  color: #fff;
}
.btn-tg:hover {
  background: #0088cc;
}
.btn-blue {
  background: #1d4ed8;
}
.btn-blue:hover {
  background: #2563eb;
  color: #fff;
}
.btn-compact {
  padding: 0.85rem 1.35rem;
  font-size: 13px;
}
.article-cta-phone {
  align-items: center;
  box-sizing: border-box;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.article-cta-phone:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
#contact .btn-expert,
#contact .btn-outline {
  padding-bottom: 0.9rem;
  padding-top: 0.9rem;
}
.btn-expert,
.btn-outline,
.article-cta-phone {
  gap: 8px;
}
.btn-expert .cta-contact-icon {
  height: 18px;
  width: 18px;
}
.btn-outline .cta-phone-icon,
.article-cta-phone .cta-phone-icon {
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}
#contact .contact-cta {
  display: grid;
  grid-template-columns: 38px minmax(0, 126px);
  gap: 14px;
  justify-content: center;
  align-items: center;
  min-height: 72px;
  padding: 1rem 1.25rem;
  text-align: left;
}
#contact .contact-cta-icon {
  flex: 0 0 34px;
  height: 34px;
  width: 34px;
}
#contact .contact-cta-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.18;
  text-align: left;
}
#contact .max-w-3xl {
  max-width: 640px;
}
#contact .sec-label {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
}
#contact .sec-label .cta-contact-icon {
  height: 16px;
  width: 16px;
}
.contact-panel {
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
}
/* navigation */
.nav-link {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.nav-link:hover {
  color: #0f172a;
}
.site-header {
  left: 0;
  right: 0;
  max-width: 100vw;
  min-height: var(--site-header-height);
  width: 100%;
  padding: 10px 0;
  overflow: visible;
  background-color: #fffc;
  animation: site-header-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* scroll progress */
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #0f172a);
  transform: scaleX(var(--site-scroll-progress, 0));
  transform-origin: left center;
  transition: transform 80ms linear;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .site-header::after {
    transition: none;
  }
}
.site-logo {
  display: block;
  height: 100%;
  width: auto;
  object-fit: contain;
}
.site-brand-link {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 12px;
  min-width: max-content;
  border-radius: 10px;
  text-decoration: none;
}
.site-brand-link .site-logo {
  flex: 0 0 auto;
  height: 48px;
}
.site-brand-text {
  display: block;
  min-width: max-content;
}
.nav-shell {
  position: relative;
  align-items: center;
  display: flex;
  gap: 16px;
  min-width: 0;
  width: 100%;
}
.nav-desktop {
  align-items: center;
  display: flex;
  flex: 1 1 auto;
  gap: 18px;
  justify-content: center;
  max-width: none;
  min-width: 0;
}
.nav-lang-switcher {
  align-items: center;
  display: flex;
  gap: 0.5rem;
}
.nav-lang-switcher a {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  color: var(--text-muted);
  border-radius: 6px;
}
.nav-lang-switcher a.font-bold {
  color: #334155;
}
.nav-lang-switcher a:hover,
.nav-lang-switcher a.font-bold:hover {
  color: #0f172a;
}
.nav-contact-cta {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  height: 44px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  background-color: var(--accent-deep);
  color: #fff;
  border-radius: 14px;
  transition:
    color 0.3s,
    background-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.nav-contact-cta:hover {
  background-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.site-header .site-brand-link .text-base {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.15;
  color: #111827;
  text-transform: none;
}
.site-header .site-brand-link .text-base span {
  color: #2563eb;
}
.site-header .header-lang-switcher {
  display: flex;
  flex: 0 0 auto;
  margin-left: auto;
}
.site-header .desktop-contact-cta {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 2px;
}
.site-header .header-contact-cta {
  display: none;
  flex: 0 0 auto;
}
.nav-contact-cta .nav-contact-icon {
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}
/* mobile-nav */
.mobile-nav-toggle {
  align-items: center;
  display: none;
  justify-content: center;
  height: 44px;
  width: 44px;
  background: #fff;
  color: #1e293b;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  border-width: 2px;
  box-shadow: 0 6px 18px #0f172a0f;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  cursor: pointer;
}
.mobile-nav-toggle:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.mobile-contact-stack {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}
.nav-link.active,
.mobile-nav-link.active,
.footer-link.active {
  color: #2563eb;
}
.btn-expert,
.btn-outline,
.btn-compact,
.nav-contact-cta,
.article-cta-phone,
.mobile-nav-link {
  line-height: 1.28;
}
.site-header .mobile-nav-toggle {
  position: relative;
  z-index: 90;
  display: none;
  flex: 0 0 44px;
  margin-left: 0;
}
.burger-lines {
  display: block;
  height: 22px;
  width: 22px;
  overflow: visible;
}
.burger-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2.2;
  transform-box: view-box;
  transform-origin: center;
  transition:
    opacity 0.16s ease,
    transform 0.24s ease;
  vector-effect: non-scaling-stroke;
}
.burger-line-top {
  transform: translateY(-5px);
}
.burger-line-bottom {
  transform: translateY(5px);
}
.mobile-nav-toggle.is-open .burger-line-top {
  transform: rotate(45deg);
}
.mobile-nav-toggle.is-open .burger-line-middle {
  opacity: 0;
  transform: scaleX(0.3);
}
.mobile-nav-toggle.is-open .burger-line-bottom {
  transform: rotate(-45deg);
}
.mobile-backdrop {
  inset: 0;
  position: fixed;
  z-index: 49;
  background: #0f172a47;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.mobile-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer {
  position: fixed;
  right: 0;
  top: var(--site-header-height);
  z-index: 60;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: calc(100dvh - var(--site-header-height));
  max-height: calc(100dvh - var(--site-header-height));
  max-width: calc(100vw - 12px);
  width: 210px;
  padding: var(--focus-ring-width) 0 calc(env(safe-area-inset-bottom) + 18px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fffc;
  border-left: 1px solid #e2e8f0;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transform: translate(100%);
  transition: transform 0.3s;
}
.mobile-drawer.open {
  transform: translate(0);
}
.mobile-drawer-shell {
  box-sizing: border-box;
  width: 100%;
  padding-left: var(--drawer-inline);
  padding-right: var(--drawer-inline);
}
.mobile-drawer-actions {
  align-items: center;
  display: none;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 12px;
  padding-bottom: 8px;
  padding-top: 16px;
}
.mobile-drawer-actions .nav-lang-switcher,
.mobile-drawer-actions .mobile-drawer-contact-cta {
  display: none;
}
.mobile-drawer-actions .nav-lang-switcher {
  padding-left: 4px;
}
.mobile-drawer > .mobile-nav-link {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-height: 39px;
  margin-left: var(--drawer-inline);
  margin-right: var(--drawer-inline);
  padding: 6px 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  border-bottom: 1px solid #dbe3ec;
  border-radius: 0;
  transition:
    color 0.2s,
    background-color 0.2s;
  text-decoration: none;
}
.mobile-drawer > .mobile-nav-link:focus-visible {
  border-radius: 8px;
  outline-offset: 0;
}
.mobile-drawer > .mobile-nav-link:hover {
  color: #0f172a;
}
.mobile-drawer > .mobile-contact-stack {
  display: block;
  gap: 0;
  margin-left: var(--drawer-inline);
  margin-right: var(--drawer-inline);
  margin-top: auto;
  padding-bottom: 11px;
  padding-top: 9px;
}
.mobile-drawer .mobile-contact-stack .mb-8 {
  margin-bottom: 2rem;
}
.mobile-drawer .footer-heading {
  padding-left: 4px;
}
.mobile-drawer .footer-social {
  width: 150px;
  padding-left: 4px;
}
/* cards */
.card {
  padding: 2.05rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  transition:
    border-color 0.25s,
    background-color 0.25s;
}
.badge {
  display: inline-block;
  padding: 6px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  background: #f1f5f9;
  color: var(--accent-soft);
  border-radius: 100px;
  text-transform: uppercase;
}
.dark-panel {
  background: #ffffff0a;
  border: 1px solid #ffffff14;
  border-radius: 20px;
}
/* home */
.trust-pill {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 100px;
}
.trust-check {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: #2563eb;
}
.hero-actions {
  align-items: stretch;
  display: grid;
  column-gap: 16px;
  row-gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 480px;
  width: 100%;
}
.hero-actions .btn-expert,
.hero-actions .btn-outline {
  min-height: 48px;
  width: 100%;
}
.sit-card {
  padding: 1.55rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
  transition:
    background-color 0.25s,
    border-color 0.25s;
  cursor: default;
}
.sit-card:hover {
  background: #eff6ff;
  border-color: #bfdbfe;
}
.consult-item {
  align-items: flex-start;
  display: flex;
  gap: 10px;
  padding: 0.6rem 0;
}
.consult-dot {
  flex-shrink: 0;
  height: 7px;
  width: 7px;
  margin-top: 6px;
  background: #3b82f6;
  border-radius: 50%;
}
.service-card {
  height: 100%;
  padding: 2.05rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.case-tag {
  margin-bottom: 0.3rem;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #3b82f6;
  text-transform: uppercase;
}
.reviews-widget {
  --case-pad: max(20px, calc((100vw - 56rem) / 2 + 28px));
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 0.9rem;
  padding: 0 var(--case-pad);
}
.reviews-widget-frame {
  display: inline-flex;
  flex: 0 0 114px;
  width: 114px;
  overflow: hidden;
  border-radius: 5px;
}
.reviews-widget iframe {
  display: block;
  flex: 0 0 114px;
  height: 28px;
  width: 114px;
  max-width: none;
  overflow: hidden;
  border: 0;
}
.reviews-widget-frame:focus-visible {
  outline: var(--focus-ring-width) solid var(--focus-ring);
  outline-offset: var(--focus-ring-offset);
}
.reviews-verified {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  line-height: 1.25;
  color: #64748b;
  text-align: right;
  white-space: normal;
}
.review-card {
  padding: 1.85rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}
.review-copy {
  margin-bottom: 1.05rem;
  font-size: 14px;
  color: #334155;
}
.review-author {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}
.review-card.review-card-2gis {
  --review-toggle-font-size: 13px;
  --review-toggle-line-height: 1.35;
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.2rem;
  background: #f5f5f5;
  border: 0;
  box-shadow: none;
  color: #202124;
}
.review-card-2gis .review-head {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 0.72rem;
}
.review-card-2gis .review-avatar {
  align-items: center;
  display: inline-flex;
  flex: 0 0 42px;
  justify-content: center;
  height: 42px;
  width: 42px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  background: #d6d8dc;
  color: #c2c5c9;
  border-radius: 999px;
  pointer-events: none;
  text-align: center;
  user-select: none;
}
.review-card-2gis .review-author {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
  color: #334155;
}
.review-card-2gis .review-source {
  margin-top: 0.2rem;
  font-size: 13px;
  line-height: 1.15;
  color: #64748b;
}
.review-card-2gis a.review-source {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  border-radius: 5px;
  transition: color 0.2s;
  text-decoration: none;
}
.review-card-2gis .review-source .site-arrow {
  height: 0.68em;
  width: 0.96em;
  margin-left: 0.24em;
}
.review-card-2gis a.review-source:hover {
  color: #0f172a;
}
.review-card-2gis .review-rating {
  align-items: center;
  display: flex;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
}
.review-star-icons {
  display: inline-flex;
  gap: 0;
  line-height: 1;
  color: #f6a400;
  transform: translateY(0.2px);
}
.review-star-icons svg {
  display: block;
  height: 14px;
  width: 70px;
  fill: currentColor;
}
.review-card-2gis .review-date {
  font-size: 14px;
  color: #64748b;
}
.review-card-2gis .review-copy {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.2rem;
  font-size: 13px;
  line-height: 1.35;
  color: #334155;
  transition: max-height 0.35s ease;
}
.review-card-2gis .review-copy.is-collapsed {
  display: -webkit-box;
  min-height: calc(1.35em * 8);
  max-height: calc(1.35em * 8);
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  line-clamp: 8;
}
.review-card-2gis .review-copy.is-animating {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
}
.review-card-2gis:has(.review-toggle:not([hidden]))
  .review-copy.is-collapsed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(1.35em * 3);
  background: linear-gradient(
    to bottom,
    rgba(245, 245, 245, 0) 0%,
    #f5f5f5 75%,
    #f5f5f5 100%
  );
  pointer-events: none;
}
.review-toggle {
  align-self: flex-start;
  display: inline-flex;
  width: fit-content;
  padding: 0;
  font: inherit;
  font-size: var(--review-toggle-font-size);
  font-weight: 700;
  line-height: var(--review-toggle-line-height);
  background: transparent;
  color: #64748b;
  border: 0;
  border-radius: 5px;
  transition: color 0.2s;
  cursor: pointer;
}
.review-toggle[hidden] {
  display: none !important;
}
.review-toggle:hover {
  color: #0f172a;
}
.review-card-2gis:has(.review-toggle[hidden])::after {
  content: "";
  display: block;
  height: calc(
    var(--review-toggle-font-size) * var(--review-toggle-line-height)
  );
}
.faq-item {
  overflow: hidden;
  border-bottom: 1px solid #dbe3ec;
}
.faq-q {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 0.9rem;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 1.12rem 26px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  background: 0 0;
  color: #334155;
  border: none;
  border-radius: 8px;
  transition: color 0.2s;
  cursor: pointer;
  text-align: left;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a.open {
  max-height: 300px;
}
.faq-a p {
  box-sizing: border-box;
  margin: 0;
  padding: 0 26px 1.12rem;
  font-size: 14px;
  color: #475569;
}
.faq-icon {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  height: 24px;
  width: 24px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 50%;
  transition:
    color 0.3s,
    background-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}
.faq-lines {
  display: block;
  height: 13px;
  width: 13px;
  overflow: visible;
}
.faq-line {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
  transform-box: view-box;
  transform-origin: center;
  transition: transform 0.24s ease;
  vector-effect: non-scaling-stroke;
}
.faq-q:hover {
  color: #0f172a;
}
.faq-q:focus-visible {
  outline: 0;
}
.faq-q:focus-visible::after {
  content: "";
  position: absolute;
  inset: 0 -8px 0 -4px;
  border: var(--focus-ring-width) solid var(--focus-ring);
  border-radius: 10px;
  pointer-events: none;
}
.faq-q:hover .faq-icon {
  color: var(--brand-blue);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.faq-item.open .faq-q {
  color: #1e293b;
}
.faq-item.open .faq-line-horizontal {
  transform: rotate(45deg);
}
.faq-item.open .faq-line-vertical {
  transform: rotate(45deg);
}
.pm-card {
  align-items: center;
  display: flex;
  gap: 0.9rem;
  padding: 1.12rem 1.35rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  transition:
    background-color 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.pm-card:hover {
  border-color: #bfdbfe;
  transform: translate(4px);
}
.section-reveal .pm-card.section-reveal-item {
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s,
    border-color 0.25s;
}
.section-reveal.is-visible .pm-card.section-reveal-item {
  transition-delay:
    var(--reveal-delay, 0ms), var(--reveal-delay, 0ms), 0ms, 0ms;
}
.section-reveal.is-reveal-complete .pm-card.section-reveal-item {
  transition:
    background-color 0.25s,
    border-color 0.25s,
    transform 0.25s;
}
.section-reveal.is-reveal-complete .pm-card.section-reveal-item:hover {
  transform: translate(4px);
}
.hero-section {
  padding-top: calc(var(--site-header-height, 72px) + 32px);
  padding-bottom: 84px;
}
.hero-note {
  max-width: 480px;
  margin-bottom: 1.85rem;
  padding: 0.95rem 1.15rem;
  background: #eff6ff;
  border-left: 3px solid #3b82f6;
  border-radius: 0 12px 12px 0;
}
.hero-note-title {
  margin-bottom: 2px;
  font-size: 14px;
  color: #1e3a5f;
}
.hero-note-text {
  font-size: 12px;
  color: #475569;
}
.hero-photo-frame img {
  transition: transform 1s;
}
.hero-photo-frame:hover img {
  transform: scale(1.02);
}
.hero-photo-frame .hero-photo-overlay {
  pointer-events: none;
}
.home-situations-grid .sit-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  cursor: pointer;
  text-decoration: none;
}
.home-situations-grid .sit-card-action {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--link-blue);
  text-decoration: none;
}
.home-situations-grid .sit-card:hover .sit-card-action {
  color: var(--link-blue-hover);
}
.home-situations-grid .all-situations-card,
.situations-grid .all-situations-card {
  position: relative;
  overflow: hidden;
  background: #1e293b;
  border-color: #1e293b;
  box-shadow: var(--dark-card-shadow);
  translate: 0 0;
  transition: none;
}
.home-situations-grid .all-situations-card > *,
.situations-grid .all-situations-card > * {
  position: relative;
  z-index: 1;
}
.home-situations-grid .all-situations-card:before,
.situations-grid .all-situations-card:before {
  content: "";
  inset: 0;
  position: absolute;
  z-index: 0;
  background: #3b82f6;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.home-situations-grid .all-situations-card:hover,
.situations-grid .all-situations-card:hover {
  border-color: #1e293b;
  box-shadow: var(--dark-card-shadow);
  transform: none;
}
.home-situations-grid .all-situations-card:hover:before,
.situations-grid .all-situations-card:hover:before {
  opacity: 0.2;
}
.section-reveal .home-situations-grid .all-situations-card.section-reveal-card,
.section-reveal .situations-grid .all-situations-card.section-reveal-card {
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.25s,
    border-color 0.25s;
}
.sit-card-title {
  margin-bottom: 0.4rem;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}
.sit-card-title-light {
  margin-bottom: 0.4rem;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}
.sit-card-text {
  font-size: 13px;
  color: #475569;
}
.sit-card-text-muted {
  font-size: 13px;
  color: #cbd5e1;
  transition: color 0.2s ease;
}
.sit-card-action-light {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 12px;
  font-weight: 700;
  color: #93c5fd;
  transition: color 0.2s ease;
  text-decoration: none;
}
.consult-label {
  margin-bottom: 0.6rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #93c5fd;
  text-transform: uppercase;
}
.consult-copy {
  color: #cbd5e1;
}
.consult-price {
  margin-bottom: 2rem;
  padding: 1.55rem;
}
.consult-results {
  padding: 1.85rem;
}
.consult-price-label {
  margin-bottom: 0.8rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #93c5fd;
  text-transform: uppercase;
}
.consult-price-value {
  font-size: 32px;
  color: #fff;
}
.consult-price-value span {
  font-weight: 400;
}
.consult-price-note {
  margin-top: 0.3rem;
  font-size: 13px;
  color: #cbd5e1;
}
.consult-result-label {
  margin-bottom: 0.9rem;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #93c5fd;
  text-transform: uppercase;
}
.consult-result-text {
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}
.consult-disclaimer {
  margin-top: 1.35rem;
  padding: 1.15rem;
  font-size: 13px;
  background: #3b82f61f;
  color: #cbd5e1;
  border: 1px solid #3b82f62e;
  border-radius: 16px;
}
.consult-disclaimer strong {
  color: #fff;
}
.service-card-dark {
  background: #1e293b;
  border-color: #1e293b;
  box-shadow: var(--dark-card-shadow);
}
.section-reveal .service-card.section-reveal-card {
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.3s,
    border-color 0.3s;
}
.svc-cat {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #3b82f6;
  text-transform: uppercase;
}
.svc-cat.light {
  color: #93c5fd;
}
.service-title {
  margin-bottom: 0.55rem;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}
.service-title-light {
  margin-bottom: 0.55rem;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.service-copy {
  margin-bottom: 1.05rem;
  font-size: 13px;
  color: #475569;
}
.service-copy-light {
  color: #cbd5e1;
}
.service-link {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: var(--link-blue);
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.service-link:hover {
  color: var(--link-blue-hover);
}
.service-link-light {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: #93c5fd;
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
.service-card-dark .service-link-light:hover {
  color: #fff;
}
#services .service-card {
  display: flex;
  flex-direction: column;
}
#services .service-card > a {
  align-self: flex-start;
  display: inline-flex;
  margin-top: auto;
  padding-top: 0;
}
.business-label-light {
  margin-bottom: 0.9rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #93c5fd;
  text-transform: uppercase;
}
.biz-col {
  padding: 2.05rem;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--card-shadow);
}
.biz-col.highlight {
  background: #1e293b;
  color: #fff;
  border-color: #1e293b;
  box-shadow: var(--dark-card-shadow);
}
.business-note {
  margin-top: 1.85rem;
  padding-top: 1.35rem;
  font-size: 12px;
  color: #cbd5e1;
  border-top: 1px solid #ffffff1a;
}
.business-copy {
  margin-bottom: 1rem;
  font-size: 13px;
  color: #475569;
}
.trust-card-kicker {
  margin-bottom: 1rem;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #93c5fd;
  text-transform: uppercase;
}
.trust-card-copy {
  font-size: 13px;
  color: #cbd5e1;
}
#trust .consult-results {
  display: flex;
  flex-direction: column;
}
#trust .consult-results:has(> a) .trust-card-copy {
  margin-bottom: 1.05rem;
}
.trust-link-light {
  align-items: center;
  display: inline-flex;
  width: fit-content;
  font-size: 12px;
  font-weight: 700;
  color: #93c5fd;
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
}
#trust .consult-results > a {
  align-self: flex-start;
  display: inline-flex;
  margin-top: auto;
  padding-top: 0;
}
#trust .trust-link-light:hover {
  color: #fff;
}
.step-num {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  height: 56px;
  width: 56px;
  font-size: 20px;
  font-weight: 800;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 18px;
}
.step-title {
  margin-bottom: 0.3rem;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}
.step-copy {
  font-size: 14px;
  color: #475569;
}
#how-it-works .card {
  display: flex;
}
#how-it-works.section-reveal .card.section-reveal-card {
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s,
    background-color 0.25s;
}
.case-media {
  min-width: 120px;
}
.case-body {
  flex: 1;
}
.case-label {
  margin-bottom: 0.3rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #475569;
  text-transform: uppercase;
}
.case-copy {
  margin-bottom: 0.85rem;
  font-size: 13px;
  color: #334155;
}
.case-result {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
}
#cases .space-y-6,
#reviews .grid {
  --case-fade: 160px;
  --case-pad: max(20px, calc((100vw - 56rem) / 2 + 28px));
  display: flex;
  gap: 1.2rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 var(--case-pad);
  overflow-x: auto;
  overflow-y: hidden;
  cursor: default;
  touch-action: auto;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(var(--case-pad) - var(--case-fade)),
    #000 var(--case-pad),
    #000 calc(100% - var(--case-pad)),
    transparent calc(100% - var(--case-pad) + var(--case-fade)),
    transparent 100%
  );
  -webkit-overflow-scrolling: touch;
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    transparent calc(var(--case-pad) - var(--case-fade)),
    #000 var(--case-pad),
    #000 calc(100% - var(--case-pad)),
    transparent calc(100% - var(--case-pad) + var(--case-fade)),
    transparent 100%
  );
  scroll-behavior: smooth;
  scroll-padding-inline: var(--case-pad);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
#reviews .grid {
  align-items: flex-start;
}
#cases .space-y-6::-webkit-scrollbar,
#reviews .grid::-webkit-scrollbar {
  display: none;
}
#cases .space-y-6 > .card,
#reviews .grid > .review-card {
  flex: 0 0 min(calc(100vw - 40px), calc(56rem - 56px));
  box-shadow: none;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
#cases .space-y-6 > .card {
  margin-bottom: 0;
}
#cases .space-y-6:focus-visible,
#reviews .grid:focus-visible {
  outline: 0;
}
.situations-grid .sit-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
}
.situations-grid .sit-card-action {
  display: inline-block;
  margin-top: auto;
  padding-top: 0.9rem;
  font-size: 12px;
  font-weight: 700;
  color: var(--link-blue);
  text-decoration: none;
}
.situations-grid .sit-card:hover .sit-card-action {
  color: var(--link-blue-hover);
}
.section-reveal.is-visible
  .home-situations-grid
  .all-situations-card.section-reveal-card,
.section-reveal.is-visible
  .situations-grid
  .all-situations-card.section-reveal-card,
.section-reveal.is-visible .service-card.section-reveal-card,
#how-it-works.section-reveal.is-visible .card.section-reveal-card {
  transition-delay:
    var(--reveal-delay, 100ms), var(--reveal-delay, 100ms), 0ms, 0ms;
}
.section-reveal.is-reveal-complete
  .home-situations-grid
  .all-situations-card.section-reveal-card,
.section-reveal.is-reveal-complete
  .situations-grid
  .all-situations-card.section-reveal-card {
  transform: none;
  transition: none;
  transition-delay: 0ms;
  will-change: auto;
}
.home-situations-grid .all-situations-card:hover .sit-card-text-muted,
.situations-grid .all-situations-card:hover .sit-card-text-muted {
  color: #cbd5e1;
}
.home-situations-grid .all-situations-card:hover .sit-card-action-light,
.situations-grid .all-situations-card:hover .sit-card-action-light {
  color: #fff;
}
.situations-grid h2.sit-card-title,
.situations-grid h2.sit-card-title-light {
  font-family: var(--font-body);
}
.situations-index-section {
  padding-top: 52px;
  background: #fff;
}
/* footer */
.footer-link {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  height: 22px;
  width: 110px;
  padding: 0 5px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 5px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-link:hover {
  color: #0f172a;
}
.footer-social {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 7px;
  height: 22px;
  width: 150px;
  padding: 0 5px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  border-radius: 5px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-social:hover {
  color: #0f172a;
}
.footer-social svg {
  flex-shrink: 0;
  height: 15px;
  width: 15px;
}
.footer-root {
  padding-bottom: 0;
  background: #fff;
}
.footer-root .grid > div:first-child > .flex.items-center.gap-3.mb-4 {
  margin-bottom: 0;
}
.footer-root .grid > div:first-child {
  max-width: 410px;
}
.footer-logo {
  display: block;
  height: 40px;
  width: auto;
  border-radius: 22%;
  object-fit: contain;
}
.footer-brand-link {
  align-items: center;
  display: none;
  gap: 10px;
  width: 170px;
  border-radius: 10px;
  text-decoration: none;
}
.footer-brand-text {
  display: block;
  min-width: max-content;
}
.footer-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #111827;
  text-transform: none;
}
.footer-brand-name span {
  color: #2563eb;
}
.footer-brand-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #475569;
  text-transform: uppercase;
}
.footer-fact {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}
.footer-fact-spaced {
  margin-bottom: 0;
  margin-top: 0;
  font-size: 12px;
  font-weight: 600;
  color: #475569;
}
.footer-proof {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 0;
  height: 22px;
  width: 150px;
  margin-bottom: 7px;
  margin-top: 1px;
  padding: 0 5px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-muted);
  border-radius: 5px;
  transition: color 0.2s;
  text-decoration: none;
}
.footer-proof:hover {
  color: #0f172a;
}
.footer-proof:focus-visible,
.footer-social:focus-visible,
.footer-link:focus-visible {
  outline-offset: 1px;
}
.footer-heading {
  margin-bottom: 1rem;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #475569;
  text-transform: uppercase;
}
.footer-social-list {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-root .space-y-2 > :not(:last-child) {
  margin-bottom: 2px;
}
.footer-bottom {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid #f1f5f9;
}
.footer-copy {
  font-size: 11px;
  color: #475569;
}
.footer-link.active {
  font-weight: 700;
}
.article-intro-lead,
.consult-copy,
.consult-price-note,
.consult-disclaimer,
.consult-result-text,
.list-text,
.service-copy,
.service-copy-light,
.business-copy,
.arrow-row-text,
.trust-card-copy,
.step-copy,
.case-copy,
.case-result,
.review-copy,
.doc-copy,
.sit-card-text,
.sit-card-text-muted,
.article-cta-text,
.footer-fact,
.footer-fact-spaced,
.footer-proof,
.footer-link,
.footer-social {
  line-height: 1.46;
}
/* article */
.doc-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}
.doc-copy {
  font-size: 12px;
  color: #475569;
}
.article-shell {
  padding: 0;
  background: #fff;
}
.article-intro {
  position: relative;
  padding: 156px 24px 96px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 60%, #1e3a5f 100%);
  text-align: center;
}
.article-intro:before {
  content: "";
  left: 50%;
  position: absolute;
  top: -50%;
  height: 800px;
  width: 800px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.12) 0%,
    transparent 70%
  );
  transform: translate(-50%);
  pointer-events: none;
}
.article-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.article-intro-badge {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.1);
  color: #93c5fd;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  text-transform: uppercase;
}
.article-intro-title {
  margin: 22px 0 18px;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
}
.article-intro-lead {
  max-width: 660px;
  margin: 0 auto 26px;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 400;
  color: #cbd5e1;
}
.article-intro-meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  justify-content: center;
  font-size: 14px;
  color: #cbd5e1;
}
.article-intro-meta span {
  white-space: nowrap;
}
.article-content-wrap {
  padding-bottom: 92px;
  padding-top: 84px;
}
.article-body-section {
  padding: 52px 0 36px;
  background: #fff;
}
.article-body-grid {
  display: block;
}
.article-copy {
  padding-left: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1.36;
  color: #000;
  hyphens: auto;
  overflow-wrap: break-word;
  text-align: justify;
}
.article-copy > p {
  margin: 0 0 10px;
  overflow: hidden;
  text-indent: 2em;
}
.article-visual {
  width: min(360px, 40%);
  margin: 0 30px 22px 0;
  float: left;
}
.article-visual-frame {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid var(--card-border);
  border-radius: 48px;
  box-shadow: var(--card-shadow);
  cursor: zoom-in;
}
.article-visual-frame img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.article-visual-frame:hover img {
  transform: scale(1.02);
}
.article-visual-frame:after {
  content: "";
  inset: 0;
  position: absolute;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}
.article-image-note {
  margin: 0.55rem 0 0;
  padding-inline: 48px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.46;
  color: #64748b;
  hyphens: none;
  overflow-wrap: normal;
  text-align: center;
  word-break: normal;
}
.image-lightbox {
  inset: 0;
  position: fixed;
  z-index: 120;
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 72px 24px 32px;
  background: rgba(15, 23, 42, 0.82);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.image-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.image-lightbox-inner {
  position: relative;
  max-width: min(1100px, 92vw);
  margin-top: 58px;
}
.image-lightbox img {
  display: block;
  max-height: calc(84vh - 58px);
  max-width: min(1100px, 92vw);
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  object-fit: contain;
  cursor: zoom-out;
}
.image-lightbox-close {
  position: absolute;
  right: 0;
  top: -58px;
  z-index: 2;
  align-items: center;
  display: flex;
  justify-content: center;
  height: 46px;
  width: 46px;
  padding: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition:
    background 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.image-lightbox-close svg {
  height: 21px;
  width: 21px;
}
.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.38);
}
.article-sources-section {
  padding: 44px 0 82px;
  background: #fff;
}
.article-faq-section {
  padding: 76px 0;
  background: #f9fafb;
}
.article-standalone-cta {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  clip-path: inset(0 -100vmax);
  background: #f9fafb;
  box-shadow: 0 0 0 100vmax #f9fafb;
}
.article-cta-card {
  padding: 34px 30px;
  background: #1e293b;
  border-radius: 32px;
  text-align: center;
}
.article-cta-kicker {
  margin-bottom: 13px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #93c5fd;
  text-transform: uppercase;
}
.article-cta-title {
  margin: 0 0 13px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}
.article-cta-text {
  margin: 0 auto 23px;
  font-size: 14px;
  color: #cbd5e1;
}
.article-cta-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
}
.article-cta-actions .btn-expert,
.article-cta-actions .article-cta-phone {
  flex: 1 1 0;
  max-width: 220px;
  min-width: 0;
  min-height: 48px;
}
.article-intro-title-narrow {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}
.article-breadcrumbs {
  bottom: 28px;
  left: 50%;
  position: absolute;
  z-index: 2;
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  max-width: 80rem;
  width: 100%;
  padding: 0 28px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.16;
  color: #cbd5e1;
  transform: translateX(-50%);
  text-align: left;
}
.article-breadcrumbs a {
  align-items: center;
  display: inline-flex;
  padding: 2px 4px;
  line-height: 1.16;
  color: #cbd5e1;
  border-radius: 5px;
  transition: color 0.2s;
  text-decoration: none;
}
.article-breadcrumbs a:hover {
  color: #fff;
}
.article-breadcrumbs span[aria-current="page"] {
  flex: 0 1 auto;
  max-width: 100%;
  min-width: 0;
  padding: 2px 4px;
  line-height: 1.16;
  color: #93c5fd;
}
.article-breadcrumbs-motion {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 2px;
  max-width: 100%;
  min-width: 0;
}
.article-breadcrumbs .site-arrow {
  margin-left: 0;
  vertical-align: -0.05em;
}
.article-intro-wrap {
  position: relative;
}
.article-related-section {
  padding: 0 0 74px;
  background: #fff;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .section-reveal .section-reveal-item,
  .section-reveal .section-reveal-card,
  .section-reveal .section-reveal-zoom {
    opacity: 1 !important;
    transform: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}
/* 404 */
.not-found-page {
  display: grid;
  min-height: 100svh;
  padding: 72px 0;
  place-items: center;
  background: #0f172a;
  color: #fff;
}
.not-found-shell {
  width: min(100%, 960px);
  text-align: center;
}
.not-found-code {
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(88px, 18vw, 180px);
  font-weight: 700;
  line-height: 0.86;
  color: #60a5fa;
}
.not-found-language-grid {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 48px;
}
.not-found-language-column {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.not-found-language-card {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  min-height: 300px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  text-align: left;
}
.not-found-language-card-primary {
  background: rgba(59, 130, 246, 0.14);
  border-color: rgba(96, 165, 250, 0.45);
}
.not-found-language-name {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #93c5fd;
  text-transform: uppercase;
}
.not-found-language-title {
  margin-bottom: 2px;
  font-family: var(--font-heading);
  font-size: clamp(23px, 2.7vw, 25px);
  font-weight: 700;
  line-height: 1.08;
  color: #fff;
}
.not-found-language-note {
  flex: 1 1 auto;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}
.not-found-language-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.not-found-extra-link {
  position: absolute;
  left: 15px;
  top: 100%;
  align-items: center;
  display: inline-flex;
  width: fit-content;
  margin-top: 14px;
  padding: 2px 4px;
  color: #93c5fd;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s;
}
.not-found-extra-link-card {
  display: none;
}
.not-found-extra-link:hover {
  color: #fff;
}
.not-found-language-link {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 800;
  background: #3b82f6;
  color: #fff;
  border-radius: 12px;
  transition:
    background-color 0.3s,
    color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.not-found-language-link:hover {
  background: #60a5fa;
  color: #fff;
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.not-found-language-contact {
  align-items: center;
  display: inline-flex;
  gap: 7px;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  transition:
    color 0.3s,
    background-color 0.3s,
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  text-decoration: none;
}
.not-found-language-contact:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 25px #3b82f633;
  transform: translateY(-1px);
}
.not-found-language-contact-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}
.list-text {
  font-size: 13px;
  color: #334155;
}
.arrow-row-text {
  font-size: 13px;
  color: #cbd5e1;
}
.compact-cta-wrap {
  margin-top: 1.5rem;
}
@media (hover: hover) {
  .hover\:text-blue-600:hover {
    color: #2563eb;
  }
}
@media (min-width: 40rem) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 48rem) {
  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:gap-10 {
    gap: 2.5rem;
  }
  .md\:p-16 {
    padding: 4rem;
  }
  .md\:text-4xl {
    font-size: 2.25rem;
  }
  .md\:text-5xl {
    font-size: 3rem;
  }
  .footer-root .md\:grid-cols-3 {
    grid-template-columns: minmax(0, 1.52fr) minmax(0, 1fr) minmax(0, 0.7fr);
  }
}
@media (min-width: 64rem) {
  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 63.999rem) {
  .hero-photo-frame {
    max-width: 473px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-section h1.badge {
    display: block;
    width: 100%;
    max-width: 473px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .hero-section .max-w-hero-title {
    max-width: 473px;
  }
  .article-sources-section .section-desc {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .article-intro-title {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .article-sources-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1199px) {
  .site-header .nav-desktop {
    display: none;
  }
  .site-header .header-lang-switcher {
    margin-left: auto;
  }
  .site-header .header-contact-cta {
    display: inline-flex;
    margin-left: 0;
  }
  .site-header .mobile-nav-toggle {
    display: inline-flex;
  }
}
@media (max-width: 1180px) {
  .article-cta-card {
    padding: 32px 22px;
  }
  .article-cta-actions {
    gap: 10px;
  }
}
@media (max-width: 1024px) {
  .article-visual {
    max-width: 560px;
  }
  .article-cta-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 820px) {
  .review-card-2gis .review-copy.is-collapsed {
    min-height: calc(1.35em * 12);
    max-height: calc(1.35em * 12);
    -webkit-line-clamp: 12;
    line-clamp: 12;
  }
}
@media (max-width: 55rem) {
  #cases .space-y-6,
  #reviews .grid {
    -webkit-mask-image: none;
    mask-image: none;
  }
}
@media (max-width: 700px) {
  h1,
  h2 {
    line-height: 1.05;
  }
  body {
    line-height: 1.45;
  }
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.25;
  }
  .max-w-7xl,
  .max-w-5xl,
  .max-w-3xl {
    padding-left: 24px;
    padding-right: 24px;
  }
  #contact .max-w-3xl {
    max-width: 320px;
  }
  .sp {
    padding: 68px 0;
  }
  .sp .mb-14 {
    margin-bottom: 2.55rem;
  }
  .sp .mb-10 {
    margin-bottom: 1.85rem;
  }
  .sp .mb-8 {
    margin-bottom: 1.5rem;
  }
  .sp .gap-16 {
    gap: 2.7rem;
  }
  .sp .gap-10 {
    gap: 1.85rem;
  }
  .sp .gap-6 {
    gap: 1.15rem;
  }
  .sp .gap-5 {
    gap: 0.95rem;
  }
  .situations-index-section {
    padding-top: 42px;
  }
  :where(.space-y-1 > :not(:last-child)) {
    margin-bottom: 0.16rem;
  }
  :where(.space-y-2 > :not(:last-child)) {
    margin-bottom: 0.38rem;
  }
  :where(.space-y-3 > :not(:last-child)) {
    margin-bottom: 0.58rem;
  }
  :where(.space-y-5 > :not(:last-child)) {
    margin-bottom: 0.95rem;
  }
  :where(.space-y-6 > :not(:last-child)) {
    margin-bottom: 1.15rem;
  }
  .btn-expert,
  .btn-outline {
    padding: 0.85rem 1.35rem;
    font-size: 14px;
  }
  .site-header .nav-shell {
    gap: 14px;
  }
  .hero-section {
    align-items: flex-start;
    padding-bottom: 68px;
    padding-top: calc(var(--site-header-height, 72px) + 28px);
  }
  .consult-item {
    gap: 9px;
    padding: 0.48rem 0;
  }
  .card,
  .service-card,
  .biz-col {
    padding: 1.5rem;
  }
  .sit-card {
    padding: 1.25rem;
  }
  .consult-results,
  .review-card {
    padding: 1.4rem;
  }
  .consult-price {
    padding: 1.3rem;
  }
  .consult-disclaimer {
    margin-top: 1.1rem;
    padding: 0.95rem;
  }
  .faq-q {
    gap: 0.8rem;
    padding: 0.95rem 22px;
  }
  .faq-a p {
    padding: 0 22px 0.95rem;
  }
  .pm-card {
    gap: 0.8rem;
    padding: 0.95rem 1.05rem;
  }
  #how-it-works .card {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.68rem 0.95rem;
  }
  #how-it-works .card > .step-num + div {
    display: contents;
  }
  #how-it-works .step-title {
    flex: 1 1 15rem;
    min-width: 0;
    margin-bottom: 0;
  }
  #how-it-works .step-copy {
    flex: 0 0 100%;
    width: 100%;
    margin-top: 0;
  }
  .consult-result-label,
  .footer-heading,
  .business-label-light {
    margin-bottom: 0.7rem;
  }
  .footer-root {
    padding-top: 56px;
  }
  .footer-root .gap-10 {
    gap: 1.85rem;
  }
  .footer-root .mb-10 {
    margin-bottom: 1.85rem;
  }
  .footer-social-list {
    gap: 6px;
  }
  .footer-bottom {
    gap: 0.75rem;
    padding-bottom: 1.2rem;
    padding-top: 1.2rem;
  }
  .article-intro-lead,
  .consult-copy,
  .consult-price-note,
  .consult-disclaimer,
  .consult-result-text,
  .list-text,
  .service-copy,
  .service-copy-light,
  .business-copy,
  .arrow-row-text,
  .trust-card-copy,
  .step-copy,
  .case-copy,
  .case-result,
  .review-copy,
  .doc-copy,
  .sit-card-text,
  .sit-card-text-muted,
  .article-cta-text,
  .footer-fact,
  .footer-fact-spaced,
  .footer-proof,
  .footer-link,
  .footer-social {
    line-height: 1.43;
  }
  .article-intro {
    padding: 132px 20px 124px;
  }
  .article-intro-title {
    margin: 18px 0 16px;
    font-size: 2rem;
  }
  .article-intro-lead {
    margin-bottom: 22px;
    font-size: 17px;
  }
  .article-intro-meta {
    gap: 8px;
    font-size: 13px;
  }
  .article-body-section {
    padding: 42px 0 24px;
  }
  .article-copy {
    font-size: 16px;
    line-height: 1.34;
  }
  .article-visual {
    max-width: 560px;
    width: 100%;
    margin: 0 auto 24px;
    float: none;
  }
  .article-visual-frame {
    border-radius: 32px;
  }
  .article-image-note {
    padding-inline: 32px;
  }
  .image-lightbox {
    padding: 74px 14px 24px;
  }
  .image-lightbox-inner {
    max-width: 94vw;
    margin-top: 52px;
  }
  .image-lightbox img {
    max-height: calc(78vh - 52px);
    max-width: 94vw;
  }
  .image-lightbox-close {
    right: 0;
    top: -52px;
    height: 42px;
    width: 42px;
  }
  .article-breadcrumbs {
    bottom: 24px;
    padding: 0 20px;
    font-size: 12px;
  }
  .article-copy > p {
    margin-bottom: 9px;
    text-indent: 1.85em;
  }
  .article-content-wrap {
    padding-bottom: 64px;
    padding-top: 56px;
  }
  .article-sources-section {
    padding: 32px 0 58px;
  }
  .article-faq-section {
    padding: 58px 0;
  }
  .article-related-section {
    padding-bottom: 58px;
  }
  .article-cta-card {
    padding: 28px 22px;
    border-radius: 28px;
  }
  .article-cta-title {
    font-size: 26px;
  }
  .article-cta-actions {
    flex-wrap: wrap;
    gap: 9px;
  }
  #contact .contact-panel {
    padding: 30px 22px;
  }
  #contact .mb-10 {
    margin-bottom: 24px;
  }
  #contact .gap-4 {
    gap: 10px;
  }
  .not-found-page {
    padding: 0;
  }
  .not-found-language-grid {
    grid-template-columns: 1fr;
    margin-bottom: 0;
  }
  .not-found-language-card {
    height: auto;
    min-height: 0;
  }
  .not-found-language-actions {
    flex-flow: row wrap;
  }
  .not-found-language-actions .not-found-language-link,
  .not-found-language-actions .not-found-language-contact {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
  }
  .not-found-extra-link {
    display: none;
  }
  .not-found-extra-link-card {
    position: static;
    display: inline-flex;
    margin-top: 2px;
    margin-left: 0;
  }
}
@media (max-width: 350px) {
  .not-found-language-actions {
    flex-direction: column;
  }
  .not-found-language-actions .not-found-language-link,
  .not-found-language-actions .not-found-language-contact {
    width: 100%;
  }
}
@media (max-width: 560px) {
  .site-header .header-lang-switcher {
    display: none;
  }
  .site-header .header-contact-cta {
    margin-left: auto;
  }
  .mobile-drawer-actions {
    display: flex;
  }
  .mobile-drawer-actions .nav-lang-switcher {
    display: flex;
  }
}
@media (max-width: 480px) {
  h1,
  h2 {
    line-height: 1.03;
  }
  body {
    line-height: 1.4;
  }
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.22;
  }
  .max-w-7xl,
  .max-w-5xl,
  .max-w-3xl {
    padding-left: 20px;
    padding-right: 20px;
  }
  .sp {
    padding: 52px 0;
  }
  .sp .mb-14 {
    margin-bottom: 2rem;
  }
  .sp .mb-10 {
    margin-bottom: 1.4rem;
  }
  .sp .mb-8 {
    margin-bottom: 1.15rem;
  }
  .sp .mb-6 {
    margin-bottom: 0.95rem;
  }
  .sp .gap-16 {
    gap: 2rem;
  }
  .sp .gap-10 {
    gap: 1.35rem;
  }
  .sp .gap-6 {
    gap: 0.85rem;
  }
  .sp .gap-5 {
    gap: 0.72rem;
  }
  .situations-index-section {
    padding-top: 34px;
  }
  :where(.space-y-1 > :not(:last-child)) {
    margin-bottom: 0.1rem;
  }
  :where(.space-y-2 > :not(:last-child)) {
    margin-bottom: 0.28rem;
  }
  :where(.space-y-3 > :not(:last-child)) {
    margin-bottom: 0.44rem;
  }
  :where(.space-y-5 > :not(:last-child)) {
    margin-bottom: 0.72rem;
  }
  :where(.space-y-6 > :not(:last-child)) {
    margin-bottom: 0.9rem;
  }
  .btn-expert,
  .btn-outline,
  .btn-compact,
  .nav-contact-cta,
  .article-cta-phone,
  .mobile-nav-link {
    line-height: 1.24;
  }
  .hero-section {
    padding-bottom: 52px;
    padding-top: calc(var(--site-header-height, 72px) + 24px);
  }
  .consult-item {
    gap: 8px;
    padding: 0.38rem 0;
  }
  .card,
  .service-card,
  .biz-col {
    padding: 1.15rem;
  }
  .sit-card {
    padding: 1.05rem;
  }
  .consult-results,
  .review-card {
    padding: 1.12rem;
  }
  .review-card-2gis .review-copy.is-collapsed {
    min-height: calc(1.35em * 16);
    max-height: calc(1.35em * 16);
    -webkit-line-clamp: 16;
    line-clamp: 16;
  }
  .consult-price {
    padding: 1.08rem;
  }
  .faq-q {
    gap: 0.7rem;
    padding: 0.78rem 16px;
  }
  .faq-a p {
    padding: 0 16px 0.78rem;
  }
  .pm-card {
    gap: 0.7rem;
    padding: 0.82rem 0.92rem;
  }
  .consult-disclaimer {
    margin-top: 0.9rem;
    padding: 0.82rem;
  }
  .service-title,
  .service-title-light {
    margin-bottom: 0.45rem;
  }
  .service-copy {
    margin-bottom: 0.85rem;
  }
  #trust .consult-results:has(> a) .trust-card-copy {
    margin-bottom: 0.85rem;
  }
  .home-situations-grid .sit-card-action,
  .situations-grid .sit-card-action,
  .sit-card-action-light,
  .trust-link-light {
    padding-top: 0.68rem;
  }
  #how-it-works .card {
    gap: 0.58rem 0.8rem;
  }
  #how-it-works .step-num {
    height: 44px;
    width: 44px;
    font-size: 18px;
    border-radius: 14px;
  }
  #how-it-works .step-title {
    flex-basis: 13rem;
  }
  .footer-root {
    padding-top: 48px;
  }
  .footer-root .gap-10 {
    gap: 1.35rem;
  }
  .footer-root .mb-10 {
    margin-bottom: 1.4rem;
  }
  .footer-social-list {
    gap: 5px;
  }
  .footer-bottom {
    gap: 0.6rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
  }
  .consult-result-label,
  .footer-heading,
  .business-label-light {
    margin-bottom: 0.58rem;
  }
  .article-intro-lead,
  .consult-copy,
  .consult-price-note,
  .consult-disclaimer,
  .consult-result-text,
  .list-text,
  .service-copy,
  .service-copy-light,
  .business-copy,
  .arrow-row-text,
  .trust-card-copy,
  .step-copy,
  .case-copy,
  .case-result,
  .review-copy,
  .doc-copy,
  .sit-card-text,
  .sit-card-text-muted,
  .article-cta-text,
  .footer-fact,
  .footer-fact-spaced,
  .footer-proof,
  .footer-link,
  .footer-social {
    line-height: 1.4;
  }
  .article-intro {
    padding-bottom: 132px;
    padding-top: 112px;
  }
  .article-copy > p {
    margin-bottom: 8px;
    text-indent: 1.7em;
  }
  .article-content-wrap {
    padding-bottom: 52px;
    padding-top: 44px;
  }
  .article-body-section {
    padding: 34px 0 20px;
  }
  .article-sources-section {
    padding: 26px 0 48px;
  }
  .article-faq-section {
    padding: 48px 0;
  }
  .article-related-section {
    padding-bottom: 48px;
  }
  .article-intro-title {
    margin-bottom: 14px;
    margin-top: 16px;
  }
  .article-intro-lead {
    margin-bottom: 20px;
  }
  .article-intro-meta {
    gap: 7px;
  }
  .article-cta-card {
    padding: 24px 18px;
  }
  .article-cta-kicker,
  .article-cta-title {
    margin-bottom: 11px;
  }
  .article-cta-text {
    margin-bottom: 19px;
  }
  .article-cta-actions {
    gap: 8px;
  }
  .article-copy {
    line-height: 1.32;
  }
}
@media (max-width: 440px) {
  .site-header .nav-shell {
    gap: 8px;
  }
  .site-header .header-contact-cta {
    display: inline-flex;
    gap: 5px;
    height: 40px;
    padding: 0 10px;
    font-size: 12px;
    border-radius: 12px;
  }
  .site-header .mobile-nav-toggle {
    flex-basis: 40px;
    height: 40px;
    width: 40px;
    margin-left: 0;
    border-radius: 12px;
  }
  .site-header .nav-contact-cta .nav-contact-icon {
    height: 16px;
    width: 16px;
  }
  .hero-actions {
    grid-template-columns: 1fr;
  }
  .article-cta-actions {
    flex-direction: column;
  }
  .article-cta-actions .btn-expert,
  .article-cta-actions .article-cta-phone {
    align-self: stretch;
    flex: 1 1 auto;
    max-width: none;
    width: 100%;
  }
}
@media (max-width: 420px), (max-height: 740px) {
  .mobile-drawer {
    padding-bottom: calc(env(safe-area-inset-bottom) + 10px);
  }
  .mobile-drawer > .mobile-nav-link {
    min-height: 38px;
    padding-bottom: 6px;
    padding-top: 6px;
    font-size: 15px;
  }
}
@media (max-width: 360px), (max-height: 640px) {
  .mobile-drawer > .mobile-nav-link {
    min-height: 34px;
    padding-bottom: 4px;
    padding-top: 4px;
    font-size: 14px;
  }
}
@media (max-width: 374px) {
  .site-header .site-brand-link {
    gap: 8px;
    min-width: 0;
  }
  .site-header .site-brand-link .site-logo {
    height: 42px;
  }
  .site-header .site-brand-text {
    min-width: 0;
  }
  .site-header .site-brand-link .text-base {
    font-size: 14px;
    line-height: 1.02;
  }
  .site-header .site-brand-link .text-base span {
    display: block;
  }
  .site-header .site-brand-text .text-\[10px\] {
    margin-top: 2px;
    font-size: 9px;
    line-height: 1.1;
    letter-spacing: 0.08em;
  }
}
@media (min-width: 320px) and (max-width: 47.999rem) {
  .footer-root > .max-w-7xl > .grid {
    grid-template-columns: minmax(150px, 1.4fr) minmax(110px, 0.6fr);
    column-gap: clamp(12px, 5vw, 20px);
    row-gap: 1.35rem;
  }
  .footer-root > .max-w-7xl > .grid > div:first-child {
    grid-column: 1 / -1;
    max-width: none;
    width: 100%;
  }
  .footer-root > .max-w-7xl > .grid > div:nth-child(2) .footer-social {
    width: 150px;
    gap: 6px;
  }
  .footer-root > .max-w-7xl > .grid > div:nth-child(3) {
    min-width: 0;
  }
  .footer-root > .max-w-7xl > .grid > div:nth-child(3) .footer-link {
    width: 110px;
    padding-right: 2px;
    font-size: 12px;
  }
}
@media (max-width: 299px) {
  .site-header .site-brand-link .site-logo {
    display: none;
  }
  .footer-root .grid > div:first-child > .flex.items-center.gap-3.mb-4 {
    margin-bottom: 1rem;
  }
  .footer-brand-link {
    display: inline-flex;
  }
}
@media (max-width: 249px) {
  .site-header .site-brand-text {
    display: none;
  }
}
