*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

:root {
  --ink: #172033;
  --muted: #687586;
  --line: #dde7f2;
  --paper: #f7fbff;
  --white: #ffffff;
  --night: #172033;
  --night-soft: #eef5ff;
  --blue: #176bff;
  --blue-dark: #0f55cc;
  --blue-soft: #e8f1ff;
  --amber: #b35c00;
  --green: #16794a;
  --radius: 14px;
  --radius-lg: 28px;
  --container: 1180px;
  --mobile-gutter: clamp(22px, 7vw, 40px);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-hy: "Noto Sans Armenian", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 520px),
    var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.58;
}

html[lang="hy"] body {
  font-family: var(--font-hy);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.visually-hidden,
.skip-link:not(:focus),
.icon-sprite {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link:focus {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(23, 107, 255, 0.15), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #edf6ff 48%, #f8fbff 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease, transform 420ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.012);
  pointer-events: none;
}

.preloader-shell {
  display: grid;
  justify-items: center;
  gap: 22px;
}

.preloader-mark {
  position: relative;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 48, 75, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 24px 70px rgba(20, 37, 63, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: preloader-breathe 1400ms ease-in-out infinite;
}

.preloader-mark::before,
.preloader-mark::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(23, 107, 255, 0.2);
  border-radius: 34px;
  opacity: 0;
  animation: preloader-ring 1700ms ease-out infinite;
}

.preloader-mark::after {
  animation-delay: 520ms;
}

.preloader-mark img {
  width: 58px;
  height: auto;
}

.preloader-track {
  width: 126px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 32, 51, 0.1);
}

.preloader-track span {
  display: block;
  width: 52%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  animation: preloader-track 1050ms ease-in-out infinite;
}

@keyframes preloader-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-3px) scale(1.025);
  }
}

@keyframes preloader-ring {
  0% {
    opacity: 0.78;
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    transform: scale(1.22);
  }
}

@keyframes preloader-track {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(210%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-preloader,
  .preloader-mark,
  .preloader-mark::before,
  .preloader-mark::after,
  .preloader-track span {
    animation: none;
    transition: none;
  }
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 680;
  line-height: 1.1;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 14px 30px rgba(23, 107, 255, 0.2);
}

.btn-primary:hover {
  background: var(--blue-dark);
}

.btn-secondary {
  border-color: rgba(16, 24, 40, 0.16);
  background: #fff;
  color: var(--ink);
}

.btn-compact {
  min-height: 40px;
  padding: 10px 18px;
  font-size: 0.86rem;
}

.site-header {
  position: fixed;
  top: 16px;
  right: 0;
  left: 0;
  z-index: 140;
  pointer-events: none;
}

.site-header.is-open .header-bar {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 46px rgba(20, 37, 63, 0.14);
}

.header-bar {
  position: relative;
  z-index: 160;
  width: min(100% - 28px, var(--container));
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 14px 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(31, 48, 75, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 60px rgba(20, 37, 63, 0.13);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  pointer-events: auto;
}

.brand img {
  width: 112px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(23, 32, 51, 0.66);
  font-size: 0.88rem;
  font-weight: 680;
}

html[lang="hy"] .desktop-nav {
  gap: 13px;
  font-size: 0.82rem;
  font-weight: 650;
}

html[lang="hy"] .header-bar {
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.desktop-nav a {
  padding: 8px 0;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--ink);
}

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

.header-actions .btn {
  border-radius: 16px;
}

.language-switcher {
  position: relative;
}

.language-current {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(31, 48, 75, 0.12);
  border-radius: 16px;
  padding: 5px 10px 5px 7px;
  background: #f2f6fc;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 720;
}

.language-current svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.language-switcher.is-open .language-current svg {
  transform: rotate(-90deg);
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 140;
  width: 190px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(31, 48, 75, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 60px rgba(20, 37, 63, 0.14);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.language-switcher.is-open .language-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.language-options a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px;
  color: rgba(23, 32, 51, 0.68);
  font-size: 0.9rem;
  font-weight: 680;
}

.language-options a:hover,
.language-options a.is-active {
  background: #eef5ff;
  color: var(--ink);
}

.language-options strong {
  color: rgba(23, 32, 51, 0.42);
  font-size: 0.72rem;
}

.flag {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24), 0 2px 7px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.flag-hy {
  background: linear-gradient(to bottom, #d90012 0 33.33%, #0033a0 33.33% 66.66%, #f2a800 66.66% 100%);
}

.flag-ru {
  background: linear-gradient(to bottom, #fff 0 33.33%, #1c57a7 33.33% 66.66%, #d52b1e 66.66% 100%);
}

.flag-en {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 72 72'%3E%3Cdefs%3E%3CclipPath id='c'%3E%3Ccircle cx='36' cy='36' r='36'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23c)'%3E%3Cpath fill='%23012169' d='M0 0h72v72H0z'/%3E%3Cpath fill='%23fff' d='M0 0h9.5L72 62.5V72h-9.5L0 9.5zm72 0v9.5L9.5 72H0v-9.5L62.5 0z'/%3E%3Cpath fill='%23c8102e' d='M0 0h5.8L72 66.2V72h-5.8L0 5.8zm72 0v5.8L5.8 72H0v-5.8L66.2 0z'/%3E%3Cpath fill='%23fff' d='M27 0h18v72H27zM0 27h72v18H0z'/%3E%3Cpath fill='%23c8102e' d='M31 0h10v72H31zM0 31h72v10H0z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

.header-phone {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 650;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(31, 48, 75, 0.12);
  border-radius: 16px;
  background: #f2f6fc;
  cursor: pointer;
  line-height: 0;
  appearance: none;
}

.menu-toggle span:not(.visually-hidden) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--night);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.menu-toggle span:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.menu-toggle span:nth-child(2) { transform: translate(-50%, -50%); }
.menu-toggle span:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }
.menu-toggle.is-active span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-toggle.is-active {
  background: var(--blue);
  border-color: var(--blue);
}

.menu-toggle.is-active span:not(.visually-hidden) {
  opacity: 0;
  visibility: hidden;
  transition: none;
}

.menu-toggle.is-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #fff;
}

.menu-toggle.is-active::after {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: #fff;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  padding: 96px clamp(16px, 5vw, 28px) max(24px, env(safe-area-inset-bottom));
  overflow-y: auto;
  overflow-x: hidden;
  background: #f7fbff;
  color: var(--ink);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
  pointer-events: none;
}

.mobile-menu.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-inner {
  width: min(100%, 520px);
  max-width: 100%;
  min-height: calc(100dvh - 120px);
  display: grid;
  align-content: start;
  gap: clamp(16px, 3vh, 24px);
}

.mobile-menu-inner > a {
  border-bottom: 1px solid rgba(31, 48, 75, 0.12);
  max-width: 100%;
  padding: clamp(9px, 1.7vh, 14px) 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 7vw, 2.7rem);
  font-weight: 680;
  line-height: 1.08;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.mobile-contact {
  display: grid;
  width: 100%;
  max-width: 100%;
  gap: clamp(10px, 1.8vh, 14px);
  margin-top: clamp(2px, 1vh, 8px);
  padding: clamp(16px, 4vw, 20px);
  border: 1px solid #c8d9ee;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 0, rgba(23, 107, 255, 0.16), transparent 34%),
    linear-gradient(155deg, #edf6ff 0%, #f8fbff 52%, #eaf3ff 100%);
  box-shadow:
    0 20px 46px rgba(20, 37, 63, 0.13),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
}

.mobile-contact-list {
  display: grid;
  gap: 8px;
}

.contact-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #cfddeb;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  box-shadow:
    0 8px 18px rgba(31, 62, 105, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.contact-line svg {
  width: 18px;
  height: 18px;
  margin: 0 auto;
  fill: none;
  stroke: #82b2ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(23, 107, 255, 0.16));
}

.contact-line span {
  min-width: 0;
  color: var(--ink);
  font-size: clamp(0.9rem, 3.8vw, 1rem);
  font-weight: 650;
  line-height: 1.45;
  letter-spacing: 0;
  text-transform: none;
  overflow-wrap: anywhere;
}

.mobile-contact a:not(.btn) {
  color: var(--ink);
}

.mobile-contact .btn {
  width: 100%;
  min-width: 0;
  min-height: 46px;
}

.map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 40px;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid #cfddeb;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #f1f7ff 100%);
  color: var(--ink);
  font-size: clamp(0.76rem, 3.2vw, 0.84rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(31, 62, 105, 0.05);
}

.map-actions a:first-child {
  border-color: #cfddeb;
  background: linear-gradient(180deg, #fff 0%, #f1f7ff 100%);
  color: var(--ink);
}

.map-actions a:last-child {
  border-color: #cfddeb;
  background: linear-gradient(180deg, #fff 0%, #f1f7ff 100%);
  color: var(--ink);
}

.map-actions svg {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-actions span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.home-hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #f7fbff;
  color: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("/hero-bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: saturate(0.98) contrast(1.04) brightness(0.98);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--container));
  height: 100%;
  margin: 0 auto;
  padding: clamp(112px, 15vh, 150px) 0 clamp(42px, 8vh, 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.54fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.home-copy {
  max-width: 690px;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.38);
}

.home-copy h1,
.home-copy p:not(.eyebrow) {
  color: #fff;
}

.home-copy .eyebrow {
  color: #58a0ff;
}

.eyebrow {
  color: var(--blue);
  font-size: 0.74rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-top: 14px;
  font-size: clamp(2.05rem, 4vw, 3.25rem);
  font-weight: 660;
}

h2 {
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  font-weight: 660;
}

h3 {
  font-size: 1.08rem;
  font-weight: 650;
}

html[lang="hy"] h1,
html[lang="hy"] h2,
html[lang="hy"] .mobile-menu-inner > a {
  font-weight: 600;
}

.home-copy p:not(.eyebrow),
.page-hero p,
.feature-copy p,
.detail-body p,
.request-aside p,
.empty-state p,
.legal-copy p,
.contact-panel p {
  margin-top: 16px;
  color: var(--muted);
}

.home-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  font-size: 1.05rem;
}

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

.hero-service-panel {
  width: min(100%, 430px);
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.34);
  border-radius: 26px;
  background: rgba(247,251,255,0.88);
  box-shadow: 0 24px 64px rgba(9, 20, 36, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-service-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.hero-service-head span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 720;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-service-head strong {
  font-size: 1rem;
  font-weight: 700;
}

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

.hero-service-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 12px;
  border: 1px solid #cfddeb;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
  color: var(--ink);
  box-shadow:
    0 8px 18px rgba(31, 62, 105, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.hero-service-item svg {
  width: 21px;
  height: 21px;
  margin: 3px auto 0;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-service-item strong {
  display: block;
  font-weight: 700;
  line-height: 1.18;
}

.hero-service-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.34;
}

.home-section,
.content-section,
.detail-layout,
.contact-layout,
.feature-split,
.site-footer {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.home-section,
.content-section,
.detail-layout,
.contact-layout {
  padding: 82px 0;
}

.page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  min-height: clamp(420px, 58vh, 620px);
  width: 100%;
  margin: 0;
  padding: 158px 0 76px;
  overflow: hidden;
  background-image: var(--page-hero-image);
  background-position: center;
  background-size: cover;
  color: #fff;
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-hero::before {
  background:
    linear-gradient(90deg, rgba(10, 16, 28, 0.86) 0%, rgba(10, 16, 28, 0.62) 46%, rgba(10, 16, 28, 0.24) 100%),
    linear-gradient(180deg, rgba(10, 16, 28, 0.45) 0%, rgba(10, 16, 28, 0.76) 100%);
}

.page-hero::after {
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.16;
}

.page-hero-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.page-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(2.35rem, 4.2vw, 4.55rem);
  line-height: 1.04;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
}

.page-hero p {
  max-width: 760px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  line-height: 1.7;
}

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

.section-head h2 {
  margin-top: 10px;
}

.mobile-section-lead {
  display: none;
}

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

.info-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid #c8d9ee;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(23,107,255,0.08), transparent 42%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 16px 38px rgba(20, 37, 63, 0.06);
}

.info-card svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  margin-top: 30px;
  font-size: clamp(1.08rem, 1.45vw, 1.35rem);
  line-height: 1.18;
}

.info-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.services-intro,
.overview-section,
.service-highlights,
.listing-guide,
.contact-guide,
.faq-intro {
  padding-bottom: 22px;
}

.services-catalog,
.services-details,
.contact-details,
.faq-support {
  padding-top: 30px;
}

.overview-section + .detail-layout,
.service-highlights + .detail-layout,
.contact-guide + .contact-layout,
.listing-guide + .content-section,
.faq-intro + .content-section {
  padding-top: 30px;
}

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

.home-paths .service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(23,107,255,0.06), transparent 40%),
    #fff;
  box-shadow: 0 14px 36px rgba(20, 37, 63, 0.06);
}

.service-card svg,
.detail-icon {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin-top: 26px;
}

.service-card p {
  margin-top: 12px;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
}

.service-card a svg {
  width: 16px;
  height: 16px;
}

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

.service-mini-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 38px;
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 37, 63, 0.05);
}

.service-mini-card > svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-mini-card h3 {
  font-size: 0.98rem;
}

.service-mini-card p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.48;
}

.service-mini-card a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue);
  background: #f8fbff;
}

.service-mini-card a svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.section-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue);
  font-weight: 700;
}

.home-paths .section-link {
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
}

.work-formats {
  padding-top: 0;
}

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

.format-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid #c8d9ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 0, rgba(23, 107, 255, 0.12), transparent 32%),
    linear-gradient(155deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 16px 38px rgba(20, 37, 63, 0.06);
}

.format-card svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.format-card h3 {
  margin-top: 46px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.format-card p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(20, 37, 63, 0.08);
}

.feature-image {
  min-width: 0;
  min-height: 420px;
}

.feature-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.02) brightness(1.02);
}

.feature-copy {
  min-width: 0;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding: clamp(42px, 4vw, 58px);
}

.ford-brand-mark {
  width: 136px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(20, 37, 63, 0.14));
}

.feature-copy h2 {
  max-width: 100%;
  margin: 0;
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.feature-copy p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.feature-copy .btn {
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.process-grid li {
  min-height: 228px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 37, 63, 0.04);
}

.process-grid span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: 700;
}

.process-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.consultation-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(23, 107, 255, 0.26), transparent 45%),
    #111a2a;
  color: #fff;
  box-shadow: 0 18px 48px rgba(20, 37, 63, 0.12);
}

.consultation-band h2 {
  max-width: 760px;
  color: #fff;
}

.consultation-band p {
  max-width: 720px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 24px;
}

.detail-body,
.request-aside,
.empty-state,
.success-box,
.contact-panel,
.request-form {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 37, 63, 0.05);
}

.detail-body h2,
.text-block h2 {
  margin-top: 22px;
  overflow-wrap: break-word;
}

.text-block + .text-block {
  margin-top: 34px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  overflow-wrap: break-word;
}

.content-list li::marker {
  color: var(--blue);
}

.request-aside {
  align-self: start;
  position: sticky;
  top: 110px;
}

.related-section,
.prep-section {
  padding-top: 0;
}

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

.related-card,
.prep-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(23,107,255,0.06), transparent 40%),
    #fff;
  box-shadow: 0 12px 30px rgba(20, 37, 63, 0.05);
}

.related-card svg,
.prep-card svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.related-card h3,
.prep-card h3 {
  margin-top: 24px;
}

.related-card p,
.prep-card p {
  margin-top: 12px;
  color: var(--muted);
}

.related-card a {
  display: inline-flex;
  margin-top: auto;
  color: var(--blue);
  font-weight: 700;
}

.listing-block + .listing-block {
  margin-top: 52px;
}

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

.listing-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 37, 63, 0.05);
}

.listing-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--blue);
  font-weight: 700;
}

.listing-card p {
  color: var(--ink);
  font-weight: 620;
}

.services-custom-request {
  padding-top: 24px;
}

.custom-request-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
  border: 1px solid #bdd5f4;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0, rgba(23, 107, 255, 0.16), transparent 34%),
    linear-gradient(155deg, #fff 0%, #f4f9ff 100%);
  box-shadow: 0 18px 48px rgba(20, 37, 63, 0.08);
}

.custom-request-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d9ee;
  border-radius: 18px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 10px 22px rgba(20, 37, 63, 0.06);
}

.custom-request-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.custom-request-card h2 {
  max-width: 780px;
}

.custom-request-card p {
  max-width: 760px;
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
}

.cases-section {
  padding-top: 30px;
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.case-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 28px;
  border: 1px solid #c8d9ee;
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 0, rgba(23, 107, 255, 0.12), transparent 34%),
    linear-gradient(155deg, #fff 0%, #f7fbff 100%);
  box-shadow: 0 18px 44px rgba(20, 37, 63, 0.07);
}

.case-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.case-number {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 760;
}

.case-card-meta {
  max-width: 70%;
  padding: 7px 10px;
  border: 1px solid #cfddeb;
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
  line-height: 1.2;
  text-align: right;
}

.case-card > svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case-vehicle {
  margin-top: 22px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 10px;
  font-size: clamp(1.35rem, 2vw, 1.95rem);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.case-request {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.case-work-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.case-work-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink);
  font-weight: 560;
  line-height: 1.48;
}

.case-work-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #fff;
}

.case-result {
  margin-top: auto;
  padding-top: 22px;
}

.case-result strong {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-result p {
  margin-top: 8px;
  padding: 16px;
  border: 1px solid #cfddeb;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.5;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid #bdd5f4;
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0, rgba(23, 107, 255, 0.16), transparent 34%),
    linear-gradient(155deg, #fff 0%, #f5f9ff 100%);
  box-shadow: 0 18px 48px rgba(20, 37, 63, 0.08);
}

.support-band h2 {
  max-width: 760px;
}

.support-band p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
}

.system-success-section {
  display: grid;
  gap: 18px;
}

.system-success-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border: 1px solid #bdd5f4;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 0, rgba(23, 107, 255, 0.18), transparent 34%),
    linear-gradient(155deg, #fff 0%, #f3f8ff 100%);
  box-shadow: 0 20px 52px rgba(20, 37, 63, 0.09);
}

.system-success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid #c8d9ee;
  border-radius: 22px;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 12px 26px rgba(23, 107, 255, 0.12);
}

.system-success-mark svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.system-success-copy span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-success-copy h2 {
  max-width: 760px;
  margin-top: 10px;
}

.system-success-copy p {
  max-width: 840px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.62;
}

.system-success-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

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

.success-step-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20, 37, 63, 0.05);
}

.success-step-card span {
  display: block;
  margin-bottom: 30px;
  color: var(--blue);
  font-weight: 760;
}

.success-step-card h3 {
  font-size: 1.05rem;
}

.success-step-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.56;
}

.narrow {
  max-width: 880px;
}

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

details {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 700;
}

details p {
  margin-top: 12px;
  color: var(--muted);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
  gap: 24px;
}

.request-form {
  display: grid;
  gap: 16px;
}

.request-form label {
  display: grid;
  gap: 8px;
  font-weight: 650;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
}

.contact-panel {
  align-self: start;
  display: grid;
  gap: 18px;
  overflow: hidden;
  border-color: #c8d9ee;
  background:
    radial-gradient(circle at 12% 0, rgba(23, 107, 255, 0.13), transparent 34%),
    linear-gradient(155deg, #edf6ff 0%, #f8fbff 52%, #eaf3ff 100%);
  box-shadow:
    0 20px 46px rgba(20, 37, 63, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.contact-stack {
  display: grid;
  gap: 10px;
}

.contact-panel-line {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 13px;
  border: 1px solid #cfddeb;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff 0%, #f9fbff 100%);
  color: var(--ink);
  font-weight: 650;
  box-shadow:
    0 8px 18px rgba(31, 62, 105, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.96);
}

.contact-panel-line svg {
  width: 20px;
  height: 20px;
  margin: 0 auto;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 4px 8px rgba(23, 107, 255, 0.16));
}

.contact-panel-line span {
  min-width: 0;
  font-size: clamp(0.92rem, 3.6vw, 1rem);
  overflow-wrap: anywhere;
}

.contact-map-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-map-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 48px;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.93rem;
  font-weight: 720;
  line-height: 1.1;
  text-align: center;
  overflow: hidden;
}

.contact-map-actions a:first-child {
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(23,107,255,0.24);
}

.contact-map-actions a:last-child {
  background: #26354a;
}

.contact-map-actions svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-map-actions span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-panel > p {
  margin: 0;
  padding: 14px 16px;
  border-left: 3px solid var(--blue);
  border-radius: 16px;
  background: #f2f6ff;
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  width: 100%;
  margin: 88px 0 0;
  background:
    linear-gradient(135deg, rgba(23, 107, 255, 0.16), transparent 34%),
    #111a2a;
  color: #fff;
}

.footer-inner {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
  padding: 54px 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
  gap: clamp(34px, 7vw, 110px);
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 22px;
}

.footer-brand img {
  width: 126px;
  height: auto;
}

.footer-brand p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-contact {
  display: grid;
  gap: 14px;
  color: #fff;
  font-style: normal;
}

.footer-contact span {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 42px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 560;
  line-height: 1.45;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: #69a4ff;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .header-phone,
  .btn-compact {
    display: none;
  }

  .desktop-nav {
    gap: 13px;
  }
}

@media (max-width: 1240px) {
  html[lang="hy"] .header-phone,
  html[lang="hy"] .btn-compact {
    display: none;
  }

  html[lang="hy"] .desktop-nav {
    justify-content: flex-end;
  }
}

@media (max-width: 900px) {
  .site-header {
    top: 10px;
  }

  .header-bar {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 62px;
    width: auto;
    max-width: var(--container);
    margin-right: var(--mobile-gutter);
    margin-left: var(--mobile-gutter);
    padding: 8px 10px 8px 14px;
    gap: 10px;
    border-radius: 24px;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .desktop-nav {
    display: none;
  }

  .header-phone,
  .header-actions > .btn {
    display: none !important;
  }

  .header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    min-width: 0;
  }

  .language-switcher {
    flex: 0 0 auto;
  }

  .menu-toggle {
    display: grid !important;
    place-items: center;
    width: 44px;
    min-width: 44px;
    flex: 0 0 44px;
  }

  .home-hero-inner {
    width: auto;
    max-width: var(--container);
    margin-right: var(--mobile-gutter);
    margin-left: var(--mobile-gutter);
    grid-template-columns: 1fr;
    gap: clamp(16px, 3vh, 28px);
    padding: clamp(96px, 14vh, 126px) 0 clamp(24px, 6vh, 58px);
  }

  .home-copy h1 {
    font-size: clamp(2rem, 8.4vw, 2.75rem);
  }

  html[lang="hy"] .home-copy h1 {
    font-size: clamp(1.78rem, 7.4vw, 2.42rem);
  }

  .home-copy .eyebrow,
  .home-copy p:not(.eyebrow) {
    display: none;
  }

  .mobile-section-lead {
    display: block;
    max-width: 640px;
    margin-top: 14px;
    color: var(--muted);
  }

  .service-grid,
  .info-grid,
  .service-mini-grid,
  .format-grid,
  .related-grid,
  .prep-grid,
  .listing-card-grid,
  .case-card-grid,
  .process-grid,
  .detail-layout,
  .contact-layout,
  .feature-split,
  .consultation-band,
  .support-band,
  .custom-request-card {
    grid-template-columns: 1fr;
  }

  .system-success-card,
  .success-step-grid {
    grid-template-columns: 1fr;
  }

  .home-paths .service-grid {
    grid-template-columns: 1fr;
  }

  .system-success-actions {
    justify-content: flex-start;
  }

  .request-aside {
    position: static;
  }

  .feature-copy {
    gap: 18px;
  }

  .feature-copy h2 {
    max-width: 720px;
    font-size: clamp(1.9rem, 5vw, 2.65rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: auto;
    max-width: none;
    margin-right: 10px;
    margin-left: 10px;
    padding: 8px 10px;
    gap: 8px;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .home-section,
  .content-section,
  .detail-layout,
  .contact-layout {
    padding: 58px 0;
  }

  .home-section,
  .content-section,
  .detail-layout,
  .contact-layout,
  .feature-split,
  .page-hero-inner,
  .home-hero-inner {
    width: auto;
    max-width: var(--container);
    margin-right: var(--mobile-gutter);
    margin-left: var(--mobile-gutter);
  }

  .footer-inner {
    width: auto;
    max-width: var(--container);
    margin-right: var(--mobile-gutter);
    margin-left: var(--mobile-gutter);
    padding: 42px 0 28px;
  }

  .brand img {
    width: 92px;
  }

  .language-current {
    min-height: 36px;
    gap: 6px;
    padding: 4px 8px 4px 6px;
  }

  .language-current .flag {
    width: 26px;
    height: 26px;
  }

  .menu-toggle {
    width: 40px;
    min-width: 40px;
    flex-basis: 40px;
    height: 38px;
  }

  h1 {
    font-size: clamp(1.92rem, 8.6vw, 2.55rem);
  }

  h2 {
    font-size: clamp(1.55rem, 7vw, 2.12rem);
  }

  .section-head {
    max-width: 100%;
    margin-bottom: 22px;
  }

  .home-hero {
    height: 100svh;
    min-height: 100svh;
  }

  .home-hero-inner {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: clamp(11px, 1.9vh, 16px);
    padding: clamp(86px, 12svh, 108px) 0 max(16px, env(safe-area-inset-bottom));
  }

  .home-copy {
    max-width: 100%;
  }

  .home-copy h1 {
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(1.78rem, 7.8vw, 2.26rem);
    line-height: 1.06;
  }

  html[lang="hy"] .home-copy h1 {
    font-size: clamp(1.48rem, 6.55vw, 2rem);
    line-height: 1.06;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 43px;
    padding: 11px 14px;
    border-radius: 17px;
    font-size: 0.92rem;
  }

  .page-hero {
    min-height: 58svh;
    padding: 118px 0 48px;
    background-position: center;
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 7.6vw, 2.42rem);
    line-height: 1.08;
  }

  html[lang="hy"] .page-hero h1 {
    font-size: clamp(1.62rem, 7.2vw, 2.2rem);
    line-height: 1.08;
  }

  .page-hero p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .feature-image {
    min-height: 240px;
    aspect-ratio: 1.35 / 1;
  }

  .feature-copy,
  .info-card,
  .service-card,
  .case-card,
  .format-card,
  .related-card,
  .prep-card,
  .listing-card,
  .consultation-band,
  .support-band,
  .custom-request-card,
  .system-success-card,
  .success-step-card,
  .detail-body,
  .request-aside,
  .empty-state,
  .success-box,
  .contact-panel,
  .request-form {
    padding: 24px;
  }

  .service-card,
  .info-card,
  .format-card,
  .related-card,
  .prep-card,
  .listing-card,
  .success-step-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    border-radius: 20px;
  }

  .detail-body,
  .request-aside,
  .contact-panel,
  .request-form,
  .text-block {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .service-card h3,
  .info-card h3,
  .format-card h3,
  .related-card h3,
  .prep-card h3,
  .detail-body h2,
  .text-block h2,
  .content-list li,
  .listing-card p,
  .hero-service-item strong,
  .service-mini-card h3 {
    overflow-wrap: break-word;
  }

  .service-card h3,
  .info-card h3 {
    margin-top: 22px;
    font-size: 1.05rem;
    line-height: 1.18;
  }

  html[lang="hy"] .service-card h3,
  html[lang="hy"] .info-card h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .service-card p,
  .info-card p,
  .related-card p,
  .prep-card p {
    font-size: 0.95rem;
    line-height: 1.56;
  }

  .service-mini-card {
    grid-template-columns: 38px minmax(0, 1fr) 34px;
    min-height: 0;
    padding: 14px;
    gap: 10px;
    border-radius: 18px;
  }

  .service-mini-card h3 {
    font-size: 0.95rem;
    line-height: 1.18;
  }

  .service-mini-card p {
    font-size: 0.86rem;
  }

  .format-card h3 {
    margin-top: 28px;
  }

  .hero-service-panel {
    width: 100%;
    padding: 12px;
    gap: 9px;
    border-radius: 22px;
  }

  .hero-service-head {
    align-items: flex-start;
    gap: 10px;
  }

  .hero-service-head strong {
    max-width: 72%;
    font-size: 0.9rem;
    line-height: 1.18;
    text-align: right;
  }

  .hero-service-list {
    gap: 8px;
  }

  .hero-service-item {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    min-height: 46px;
    padding: 9px 10px;
    border-radius: 16px;
  }

  .hero-service-item svg {
    width: 19px;
    height: 19px;
    margin-top: 0;
  }

  .hero-service-item strong {
    font-size: 0.93rem;
    line-height: 1.14;
  }

  html[lang="hy"] .hero-service-item strong {
    font-size: 0.88rem;
  }

  .hero-service-item p {
    display: none;
  }

  .ford-brand-mark {
    width: 112px;
  }

  .feature-copy h2 {
    font-size: clamp(1.55rem, 6.4vw, 2.05rem);
    line-height: 1.08;
  }

  .feature-copy p {
    line-height: 1.62;
  }

  .contact-panel-line {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
  }

  .contact-panel-line span {
    font-size: 0.92rem;
  }

  .contact-map-actions a {
    font-size: 0.86rem;
  }

  .case-card {
    min-height: 0;
  }

  .case-card-top {
    align-items: flex-start;
  }

  .case-card-meta {
    max-width: 76%;
  }

  .case-card h3 {
    font-size: clamp(1.28rem, 6vw, 1.7rem);
  }

  .custom-request-card {
    gap: 18px;
  }

  .custom-request-card .btn {
    width: 100%;
  }

  .system-success-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .system-success-actions .btn {
    width: 100%;
  }
}

@media (max-height: 720px) and (max-width: 900px) {
  .home-hero-inner {
    gap: 12px;
    padding: 88px 0 24px;
  }

  .home-copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .home-copy h1 {
    font-size: clamp(1.72rem, 8.2vw, 2.15rem);
  }

  html[lang="hy"] .home-copy h1 {
    font-size: clamp(1.36rem, 6.15vw, 1.82rem);
  }

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

  .hero-service-panel {
    padding: 12px;
    border-radius: 20px;
    gap: 8px;
  }

  .hero-service-head {
    font-size: 0.86rem;
  }

  .hero-service-list {
    gap: 8px;
  }

  .hero-service-item {
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    padding: 10px;
  }

  .hero-service-item p {
    display: none;
  }

  .hero-service-item svg {
    margin-top: 0;
  }

  .mobile-menu {
    padding-top: 86px;
  }

  .mobile-menu-inner {
    gap: 12px;
  }

  .mobile-menu-inner > a {
    padding: 8px 0;
    font-size: clamp(1.25rem, 6.2vw, 2.05rem);
    line-height: 1.04;
  }

  .mobile-contact {
    border-radius: 20px;
    padding: 14px;
  }
}

@media (max-height: 600px) and (max-width: 900px) {
  .home-hero-inner {
    gap: 10px;
    padding: 78px 0 18px;
  }

  .home-copy h1 {
    font-size: clamp(1.48rem, 7.4vw, 1.9rem);
  }

  html[lang="hy"] .home-copy h1 {
    font-size: clamp(1.2rem, 5.7vw, 1.58rem);
  }

  .eyebrow {
    font-size: 0.66rem;
  }

  .hero-actions {
    margin-top: 14px;
  }

  .hero-actions .btn {
    min-height: 40px;
  }

  .hero-service-panel {
    padding: 10px;
    gap: 8px;
  }

  .hero-service-head {
    display: none;
  }

  .hero-service-item {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .mobile-menu {
    padding-top: 78px;
  }

  .mobile-menu-inner > a {
    font-size: clamp(1.08rem, 5.4vw, 1.65rem);
  }

  .mobile-contact .btn {
    min-height: 42px;
  }
}
