:root {
  --bg-dark: #060b24;
  --bg-dark-2: #0a1235;
  --bg-light: #f5f8ff;
  --bg-light-2: #ffffff;
  --text-dark: #0d1736;
  --text-light: #f7faff;
  --muted-light: rgba(255, 255, 255, 0.72);
  --muted-dark: rgba(13, 23, 54, 0.72);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(10, 18, 53, 0.08);
  --primary: #5f8fe0;
  --primary-2: #2e4fa0;
  --shadow: 0 18px 60px rgba(6, 11, 36, 0.18);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-light);
  background: var(--bg-dark);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(95, 143, 224, 0.14), transparent 25%),
    radial-gradient(circle at 80% 15%, rgba(70, 110, 214, 0.16), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
  z-index: -1;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(6,11,36,0.9), rgba(6,11,36,0.45));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo, .footer-logo { height: 48px; width: auto; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  color: rgba(255,255,255,0.88);
  font-weight: 500;
  transition: color .25s ease, transform .25s ease, opacity .25s ease;
}
.main-nav a:not(.btn) {
  position: relative;
  padding: 8px 0;
}
.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7da9f2, #4f77d2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .85;
}
.main-nav a:hover { color: white; transform: translateY(-1px); }
.main-nav a:not(.btn):hover::after,
.main-nav a.is-active:not(.btn)::after {
  transform: scaleX(1);
}
.main-nav a.is-active:not(.btn) {
  color: #ffffff;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
}

section { position: relative; overflow: clip; }
.section-dark {
  background:
    radial-gradient(circle at 25% 15%, rgba(95,143,224,0.12), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(95,143,224,0.10), transparent 20%),
    linear-gradient(180deg, var(--bg-dark), var(--bg-dark-2));
  color: var(--text-light);
}
.section-light {
  background:
    radial-gradient(circle at 20% 0%, rgba(95,143,224,0.10), transparent 22%),
    radial-gradient(circle at 90% 0%, rgba(95,143,224,0.08), transparent 20%),
    linear-gradient(180deg, var(--bg-light), var(--bg-light-2));
  color: var(--text-dark);
}

.hero {
  padding: 12px 0 24px;
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 72% 28%, rgba(95,143,224,0.20), transparent 24%),
    linear-gradient(90deg, rgba(4, 10, 34, 0.92) 0%, rgba(6, 15, 54, 0.84) 52%, rgba(5, 12, 40, 0.80) 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0)),
    url('assets/hero-bg-overlay.png') center right / cover no-repeat;
  opacity: 0.42;
  z-index: -1;
  pointer-events: none;
}
.hero > .container {
  position: relative;
  z-index: 1;
}
/* Removed bottom separator glow from all sections per latest revision. */
.hero::after,
.about::after,
.services::after,
.clients::after,
.contact::after {
  content: none;
}
.hero-grid,
.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy { padding: 8px 0 0; }
.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  font-size: 0.95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--primary);
}
.hero h1,
section h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.04em;
}
.hero h1 {
  max-width: 700px;
  font-size: clamp(2.9rem, 5.2vw, 4.75rem);
}
.hero h1 span,
section h2 { color: inherit; }
.hero h1 span { color: #7da9f2; }
.hero-text,
.section-head p,
.content p,
.review-card p,
.form-note {
  line-height: 1.7;
  font-size: 1.05rem;
}
.hero-text {
  color: var(--muted-light);
  max-width: 640px;
  margin: 16px 0 0;
  font-size: 1rem;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin: 24px 0 18px;
}
.hero-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}
.hero-tags li { position: relative; }
.hero-tags li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.28);
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  border: none;
  outline: none;
  background: linear-gradient(90deg, #6e9be4 0%, #385cb5 100%);
  box-shadow: 0 10px 30px rgba(63, 96, 183, 0.34);
  background-clip: padding-box;
  position: relative;
  z-index: 1;
}
.btn-secondary {
  color: white;
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
}
.btn-sm { min-height: 42px; padding: 0 16px; }

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.device-stack {
  position: relative;
  width: min(96%, 470px);
  aspect-ratio: 1 / 1;
}
.device {
  position: absolute;
  overflow: hidden;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}
.device-large {
  width: 54%; height: 80%; right: 0; top: -2%;
}
.device-mid {
  width: 48%; height: 62%; left: 4%; bottom: 16%;
}
.device-small {
  width: 46%; height: 54%; right: 8%; bottom: -2%;
}
.hero-image-card {
  margin: 0;
}
.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 35, 0.08) 0%, rgba(9, 18, 35, 0.32) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.glass {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(125,169,242,0.11);
  border-radius: 50%;
}
.orbit-a {
  width: 430px; height: 430px;
  animation: spin 28s linear infinite;
}
.orbit-b {
  width: 315px; height: 315px;
  animation: spin 18s linear infinite reverse;
}
.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.glow-1 {
  width: 180px; height: 180px;
  background: rgba(95,143,224,0.14);
  top: 14%; left: 16%;
}
.glow-2 {
  width: 160px; height: 160px;
  background: rgba(95,143,224,0.18);
  right: 2%; bottom: 6%;
}
.floating { animation: float 7s ease-in-out infinite; }

.about, .services, .clients, .contact { padding: 80px 0 64px; }
section h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  max-width: 720px;
  margin-bottom: 20px;
}
.content p { color: var(--muted-light); }
.section-light .content p,
.section-light .section-head p,
.section-light .form-note { color: var(--muted-dark); }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.stat-card,
.review-card {
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.stat-card strong {
  display: block;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.stat-card span { color: var(--muted-light); }
.visual-card { display: flex; justify-content: center; }
.card-dark {
  position: relative;
  width: min(100%, 520px);
  min-height: 420px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow);
}
.mini-chart {
  position: absolute;
  inset: 54px 46px auto;
  height: 170px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(95,143,224,0.22), rgba(95,143,224,0.08));
}
.mini-panel {
  position: absolute;
  right: 42px; bottom: 42px;
  width: 180px; height: 110px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
}
.mini-person {
  position: absolute;
  bottom: 44px;
  width: 26px; height: 90px;
  border-radius: 18px;
  background: linear-gradient(180deg, #9ab6f2, #6c8fe7);
}
.person-1 { left: 72px; }
.person-2 { left: 118px; height: 76px; }
.person-3 { left: 162px; height: 100px; }

.section-head { margin-bottom: 40px; }
.service-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.services-shell {
  width: min(calc(100% - 40px), 1240px);
}

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

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

.service-feature {
  position: sticky;
  top: 104px;
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(60, 96, 182, 0.98), rgba(37, 68, 141, 0.98));
  color: #fff;
  box-shadow: 0 16px 44px rgba(31, 54, 110, 0.24);
}

.service-feature-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.service-feature h3 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.15;
}

.service-feature p {
  margin: 0 0 18px;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.service-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.service-points li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,.92);
  line-height: 1.5;
}

.service-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .63em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
}

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

.service-card {
  min-height: 100%;
  padding: 22px 20px;
  border-radius: 20px;
  border: 1px solid rgba(10, 18, 53, 0.09);
  background: rgba(255,255,255,0.78);
  box-shadow: 0 12px 34px rgba(14,24,64,0.07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(14,24,64,0.10);
  border-color: rgba(63,96,183,0.20);
}
.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #e9f0ff, #d7e5ff);
  color: var(--primary-2);
  font-weight: 800;
  margin-bottom: 16px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.28;
  color: var(--text-dark);
}
.service-card p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.58;
  font-size: .96rem;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}
.logo-row span {
  display: grid;
  place-items: center;
  min-height: 84px;
  border-radius: 18px;
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
}
.review-card h3 {
  margin: 18px 0 6px;
  font-size: 1rem;
}
.review-card span { color: var(--muted-light); }
.stars { color: #ffbf5f; letter-spacing: 0.14em; }

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}
.contact-list a,
.contact-list span {
  color: var(--text-dark);
  font-weight: 600;
}
.contact-form {
  padding: 28px;
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line-light);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(12, 21, 47, 0.08);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--text-dark); font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(10,18,53,0.12);
  background: #fff;
  color: var(--text-dark);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input:focus, textarea:focus {
  border-color: rgba(63,96,183,0.5);
  box-shadow: 0 0 0 4px rgba(63,96,183,0.10);
}
.form-note { margin: 14px 0 0; font-size: .95rem; }

.site-footer {
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-copy-line {
  display: block;
  line-height: 1.5;
}
.footer-copy-line:last-child {
  text-align: left;
}
.footer-legal {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.footer-legal a {
  font-size: 0.92rem;
  opacity: 0.88;
}

.footer-legal a:hover {
  opacity: 1;
}
.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-wrap p { margin: 0; color: var(--muted-light); }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}


/* Compact desktop fit for internal sections */
.about,
.services,
.clients,
.contact {
  min-height: calc(100svh - 82px);
  display: flex;
  align-items: center;
  scroll-margin-top: 82px;
}

.about {
  padding-top: 44px;
  padding-bottom: 44px;
}

.services,
.clients,
.contact {
  padding-top: 54px;
  padding-bottom: 52px;
}

.about .split-grid,
.contact-grid {
  gap: 32px;
  align-items: center;
}

.about .content,
.contact .content {
  align-self: center;
}

.about .section-kicker,
.services .section-kicker,
.clients .section-kicker,
.contact .section-kicker {
  margin-bottom: 8px;
}

.services h2,
.clients h2,{
  max-width: 100%;
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  margin-bottom: 14px;
  white-space: nowrap;
}

.about h2,
.contact h2 {
  font-size: clamp(1.9rem, 3.7vw, 3rem);
  margin-bottom: 14px;
}

.about .content p,
.services .section-head p,
.clients .section-head p,
.contact .content p,
.review-card p,
.service-card p,
.form-note {
  font-size: 0.98rem;
  line-height: 1.55;
}

.about .content p {
  margin: 0 0 16px;
}

.about .stat-grid {
  margin-top: 20px;
  gap: 14px;
}

.about .stat-card {
  padding: 16px 14px;
}

.about .stat-card strong {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.about .stat-card span {
  font-size: 0.9rem;
}

.about .card-dark {
  min-height: 340px;
}

.about .mini-chart {
  inset: 38px 34px auto;
  height: 134px;
}

.about .mini-panel {
  right: 30px;
  bottom: 30px;
  width: 150px;
  height: 88px;
}

.about .mini-person {
  bottom: 32px;
  width: 20px;
  height: 76px;
}

.about .person-1 { left: 58px; }
.about .person-2 { left: 94px; height: 62px; }
.about .person-3 { left: 130px; height: 84px; }

.services .container,
.clients .container {
  width: min(calc(100% - 40px), 1160px);
}

.services .section-head,
.clients .section-head {
  margin-bottom: 26px;
}

.services .service-grid {
  gap: 16px;
}

.services .service-card {
  padding: 20px;
  border-radius: 18px;
}

.services .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.services .service-card h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.clients .logo-row {
  gap: 12px;
  margin-bottom: 18px;
}

.clients .logo-row span {
  min-height: 66px;
  border-radius: 16px;
  font-size: 0.96rem;
}

.clients .review-grid {
  gap: 16px;
}

.clients .review-card {
  padding: 18px;
  border-radius: 18px;
}

.clients .review-card h3 {
  margin: 14px 0 4px;
}

.contact .contact-grid {
  gap: 30px;
}

.contact .contact-list {
  gap: 12px;
  margin-top: 20px;
}

.contact .contact-form {
  padding: 22px;
  border-radius: 22px;
}

.contact label {
  gap: 6px;
  margin-bottom: 12px;
  font-size: 0.96rem;
}

.contact input,
.contact textarea {
  padding: 13px 14px;
  border-radius: 12px;
}

.contact textarea {
  min-height: 132px;
}


@media (max-width: 1080px) {
  .hero { min-height: auto; padding: 16px 0 40px; }
  .about, .services, .clients, .contact { min-height: auto; padding: 56px 0 48px; }

  .services-layout {
    grid-template-columns: 1fr;
  }
  .service-feature {
    position: relative;
    top: 0;
  }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .service-grid,
  .review-grid,
  .logo-row,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-grid,
  .split-grid,
  .contact-grid { align-items: start; }
  .service-grid article:last-child,
  .review-grid article:last-child,
  .logo-row span:last-child,
  .stat-grid article:last-child { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .hero { padding: 14px 0 36px; }
  .service-grid-compact,
  .review-grid,
  .logo-row,
  .stat-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .services-shell {
    width: min(calc(100% - 28px), 1240px);
  }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(6,11,36,0.96);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
  }
  .main-nav a:not(.btn)::after { bottom: 0; }
  .main-nav.is-open { display: flex; }
  .hero-grid,
  .split-grid,
  .contact-grid,
  .service-grid,
  .review-grid,
  .logo-row,
  .stat-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 24px; }
  .hero-visual { min-height: 340px; }
  .about, .services, .clients, .contact { padding: 88px 0; }
  .brand-logo, .footer-logo { height: 42px; }
}


.scroll-top-btn {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #6e9be4 0%, #385cb5 100%);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(63, 96, 183, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  z-index: 9999;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

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

@media (max-width: 820px) {
  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
@media (max-width: 640px) {
  .hero-copy { padding: 4px 0; }
  .hero-visual { min-height: 280px; }
  .hero h1 { font-size: clamp(2.5rem, 12vw, 3.6rem); }
  .hero-text { font-size: .98rem; }
}


/* Services card compact layout option */
.service-card {
  padding: 18px 18px 16px;
}

.service-card-top {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.service-card .icon-box {
  width: 42px;
  height: 42px;
  margin-bottom: 0;
  border-radius: 12px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.service-card h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.service-card p {
  font-size: 0.93rem;
  line-height: 1.5;
}

@media (max-width: 820px) {
  .service-card-top {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }

  .service-card .icon-box {
    width: 40px;
    height: 40px;
  }
}


/* Services heading single-line desktop fix */
@media (min-width: 821px) {
  .services-head h2,
  .services h2 {
    max-width: 100%;
    width: 100%;
    white-space: nowrap;
    font-size: clamp(1.7rem, 2.6vw, 2.7rem);
  }
}


@media (max-width: 820px) {
  .hero::before {
    background-position: 66% center;
    background-size: cover;
    opacity: 0.26;
  }
}


/* About section track record card */
.track-record-card {
  min-height: 420px;
  padding: 28px;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 16px;
  background:
    radial-gradient(circle at 50% 0%, rgba(125,169,242,0.10), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
}

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

.track-header h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #eef4ff;
}

.track-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding-bottom: 13px;
}

.track-icon span {
  display: block;
  width: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #a8c2ff, #6e9be4);
}
.track-icon span:nth-child(1) { height: 16px; }
.track-icon span:nth-child(2) { height: 24px; }
.track-icon span:nth-child(3) { height: 32px; }

.track-primary,
.track-middle,
.track-bottom,
.track-mini-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  border-radius: 22px;
}

.track-primary {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-primary strong,
.track-primary span {
  display: flex;
  align-items: center;
  min-height: 100%;
}

.track-primary strong {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: #9fc0ff;
  letter-spacing: -0.04em;
}

.track-primary span {
  font-size: 1.4rem;
  color: #eef4ff;
  line-height: 1.15;
}

.track-middle {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
}

.track-middle-icon,
.track-score-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #a8c2ff;
  border: 1px solid rgba(125,169,242,0.24);
  background: rgba(255,255,255,0.03);
  font-weight: 700;
}

.track-project-icon {
  font-size: 1rem;
  transform: translateY(-1px);
  text-shadow: 0 0 10px rgba(125,169,242,0.25);
}

.track-middle-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #eef4ff;
  line-height: 1.2;
}

.track-middle-text strong {
  font-size: 3rem;
  line-height: 1;
  color: #eef4ff;
  letter-spacing: -0.04em;
}

.track-middle-text span {
  font-size: 1.2rem;
  color: #d7e5ff;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.track-bottom {
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
}

.track-score-text {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.track-score-text strong {
  font-size: 3rem;
  line-height: 1;
  color: #eef4ff;
  letter-spacing: -0.04em;
}

.track-score-text span {
  font-size: 1.2rem;
  color: #d7e5ff;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

.track-footer-row {
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
  padding-left: 0;
}

.track-logo {
  height: 40px;
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.18));
  flex: 0 0 auto;
}

.track-since {
  color: #dbe7ff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.about .card-dark.track-record-card {
  min-height: 420px;
}

@media (max-width: 1080px) {
  .track-record-card {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .track-record-card {
    padding: 18px;
    gap: 12px;
  }

  .track-header h3 {
    font-size: 1.18rem;
  }

  .track-primary {
    padding: 18px 16px;
    gap: 10px;
  }

  .track-primary span {
    font-size: 1.02rem;
  }

  .track-middle-text strong {
    font-size: 2.1rem;
  }

  .track-middle-text span {
    font-size: 1rem;
  }

  .track-score-text strong {
    font-size: 2.2rem;
  }

  .track-score-text span {
    font-size: 1rem;
  }

  .track-since {
    font-size: 1rem;
  }
}


@media (max-width: 640px) {
  .track-footer-row {
    justify-content: center;
    gap: 12px;
  }

  .track-logo {
    height: 34px;
    align-self: flex-start;
  }
}


/* Clients reviews section polish */
.clients .section-head p {
  max-width: 920px;
}

.clients .review-card p {
  font-size: 1rem;
  line-height: 1.65;
}

.clients .review-card span {
  display: inline-block;
  margin-top: 2px;
}

.clients .logo-row span {
  text-align: center;
  padding: 0 10px;
}


/* Compact clients section with rotating reviews */
.clients-shell {
  width: min(calc(100% - 40px), 1180px);
}

.clients {
  padding-top: 58px;
  padding-bottom: 46px;
}

.clients-head {
  margin-bottom: 22px;
}

.clients .section-head p {
  max-width: 920px;
}

.clients-topline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.clients-topline span {
  display: grid;
  place-items: center;
  min-height: 58px;
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.88);
  font-weight: 600;
  text-align: center;
  font-size: 0.95rem;
}

.review-rotator {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  align-items: stretch;
}

.review-rotator-main,
.review-side-panel {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.review-rotator-main {
  padding: 28px 28px 24px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}

.review-side-panel {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-quote {
  margin: 12px 0 22px;
  font-size: 1.12rem;
  line-height: 1.7;
  color: #f3f7ff;
  min-height: 132px;
}

.review-meta {
  margin-top: auto;
}

.review-meta h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}

.review-meta span {
  color: rgba(255,255,255,0.72);
}

.review-side-label {
  margin: 0;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8fb2ff;
  font-weight: 700;
}

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.review-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eef4ff;
  font-size: 0.9rem;
}

.review-progress {
  margin-top: auto;
}

.review-progress-text {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}

.review-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.review-progress-bar span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #8fb2ff, #5f8fe0);
  transition: width 6.8s linear;
}

.review-dots {
  display: flex;
  flex-wrap: nowrap;
  gap: 3px;
  margin-top: 2px;
  width: 100%;
  overflow: hidden;
}

.review-dot {
  appearance: none;
  border: 0;
  padding: 0;
  height: 4px;
  flex: 1 1 0;
  min-width: 0;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: background .25s ease, box-shadow .25s ease;
}

.review-dot.is-active {
  background: linear-gradient(90deg, #8fb2ff, #5f8fe0);
  box-shadow: 0 0 8px rgba(95, 143, 224, 0.18);
}

.review-fade {
  animation: reviewFade 0.55s ease;
}

@keyframes reviewFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .clients {
    min-height: auto;
    padding: 54px 0 46px;
  }

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

  .clients-topline span:last-child {
    grid-column: 1 / -1;
  }

  .review-rotator {
    grid-template-columns: 1fr;
  }

  .review-rotator-main {
    min-height: 0;
  }

  .review-quote {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .clients {
    padding: 72px 0 52px;
  }

  .clients-shell {
    width: min(calc(100% - 28px), 1180px);
  }

  .clients-topline {
    grid-template-columns: 1fr;
  }

  .review-rotator-main {
    padding: 22px 20px 20px;
  }

  .review-side-panel {
    padding: 18px 16px;
  }

  .review-quote {
    font-size: 1rem;
  }
}


/* Clients section tighter fit */
.clients {
  padding-top: 46px;
  padding-bottom: 38px;
}

.clients-head {
  margin-bottom: 16px;
}

.clients .section-head p {
  max-width: 980px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.clients-topline {
  gap: 8px;
  margin-bottom: 14px;
}

.clients-topline span {
  min-height: 50px;
  font-size: 0.88rem;
  border-radius: 14px;
}

.review-rotator {
  gap: 14px;
}

.review-rotator-main {
  padding: 22px 22px 18px;
  min-height: 268px;
  border-radius: 20px;
}

.review-side-panel {
  padding: 18px 16px;
  gap: 12px;
  border-radius: 20px;
}

.review-quote {
  margin: 8px 0 16px;
  font-size: 1rem;
  line-height: 1.58;
  min-height: 108px;
}

.review-meta h3 {
  font-size: 1rem;
}

.review-meta span {
  font-size: 0.94rem;
}

.review-tags {
  gap: 8px;
}

.review-tags span {
  min-height: 30px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.review-progress {
  margin-top: auto;
}

.review-progress-text {
  margin-bottom: 8px;
  font-size: 0.86rem;
}

.review-progress-bar {
  height: 5px;
}

.review-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.review-dot {
  appearance: none;
  border: 0;
  padding: 0;
  width: 24px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  transition: background .25s ease, transform .25s ease, width .25s ease;
}

.review-dot.is-active {
  background: linear-gradient(90deg, #8fb2ff, #5f8fe0);
  transform: none;
  width: 34px;
}

@media (max-width: 1080px) {
  .clients {
    padding: 48px 0 40px;
  }

  .review-rotator-main {
    min-height: 0;
  }

  .review-quote {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .clients {
    padding: 66px 0 46px;
  }

  .clients-topline span {
    min-height: 46px;
  }

  .review-rotator-main {
    padding: 20px 18px 18px;
  }

  .review-side-panel {
    padding: 16px 14px;
  }
}


.form-status {
  margin: 12px 0 0;
  min-height: 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-status.is-success {
  color: #1f7a45;
}

.form-status.is-error {
  color: #b42318;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 4px;
}

.language-trigger {
  min-height: 46px;
  min-width: 176px;
  padding: 0 16px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
  color: #ffffff;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(5, 13, 40, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.language-trigger:hover,
.language-trigger:focus-visible,
.language-switcher.is-open .language-trigger {
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(125, 169, 242, 0.62);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  box-shadow: 0 18px 40px rgba(5, 13, 40, 0.28);
}

.language-trigger-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-trigger-icon {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid rgba(255,255,255,0.92);
  border-bottom: 2px solid rgba(255,255,255,0.92);
  transform: rotate(45deg) translateY(-1px);
  transition: transform .25s ease, opacity .25s ease;
  opacity: 0.88;
}

.language-switcher.is-open .language-trigger-icon {
  transform: rotate(-135deg) translateY(-1px);
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 100%;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(10,18,53,0.96), rgba(6,11,36,0.96));
  box-shadow: 0 24px 60px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: grid;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 60;
}

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

.language-option {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(255,255,255,0.86);
  font: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.language-option::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(125,169,242,0);
  transition: background .2s ease, box-shadow .2s ease;
}

.language-option:hover,
.language-option:focus-visible {
  outline: none;
  color: #ffffff;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.08);
  transform: translateX(2px);
}

.language-option.is-selected {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(110,155,228,0.18), rgba(56,92,181,0.14));
  border-color: rgba(125,169,242,0.22);
}

.language-option.is-selected::after {
  background: #7da9f2;
  box-shadow: 0 0 0 5px rgba(125,169,242,0.14);
}

@media (max-width: 980px) {
  .language-switcher {
    width: 100%;
    margin-left: 0;
  }

  .language-trigger,
  .language-menu {
    width: 100%;
    min-width: 100%;
  }
}


/* Language-aware desktop fitting refinements */
@media (min-width: 981px) {
  html[lang="hy"] .hero,
  html[lang="ru"] .hero,
  html[lang="hy"] .about,
  html[lang="ru"] .about,
  html[lang="hy"] .clients,
  html[lang="hy"] .contact,
  html[lang="ru"] .contact,
  html[lang="fr"] .contact,
  html[lang="de"] .contact {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  html[lang="hy"] .hero-grid,
  html[lang="ru"] .hero-grid,
  html[lang="hy"] .about .split-grid,
  html[lang="ru"] .about .split-grid,
  html[lang="hy"] .contact-grid,
  html[lang="ru"] .contact-grid,
  html[lang="fr"] .contact-grid,
  html[lang="de"] .contact-grid {
    gap: 24px;
  }

  html[lang="hy"] .hero h1,
  html[lang="ru"] .hero h1 {
    font-size: clamp(2.45rem, 4.15vw, 3.75rem);
    line-height: 0.98;
    max-width: 620px;
  }

  html[lang="hy"] .hero-text,
  html[lang="ru"] .hero-text,
  html[lang="hy"] .hero-tags,
  html[lang="ru"] .hero-tags {
    font-size: 0.93rem;
    line-height: 1.45;
  }

  html[lang="hy"] .hero-actions,
  html[lang="ru"] .hero-actions {
    gap: 16px;
    margin: 18px 0 14px;
  }

  html[lang="hy"] .hero .btn,
  html[lang="ru"] .hero .btn {
    min-height: 46px;
    padding: 0 18px;
    font-size: 0.95rem;
  }

  html[lang="hy"] .about h2,
  html[lang="ru"] .about h2,
  html[lang="hy"] .contact h2,
  html[lang="ru"] .contact h2,
  html[lang="fr"] .contact h2,
  html[lang="de"] .contact h2 {
    font-size: clamp(1.72rem, 3.1vw, 2.45rem);
    line-height: 1.02;
    max-width: 100%;
  }

  html[lang="hy"] .about .content p,
  html[lang="ru"] .about .content p,
  html[lang="hy"] .contact .content p,
  html[lang="ru"] .contact .content p,
  html[lang="fr"] .contact .content p,
  html[lang="de"] .contact .content p,
  html[lang="hy"] .form-note,
  html[lang="ru"] .form-note,
  html[lang="fr"] .form-note,
  html[lang="de"] .form-note {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  html[lang="hy"] .about .stat-grid,
  html[lang="ru"] .about .stat-grid {
    gap: 12px;
    margin-top: 16px;
  }

  html[lang="hy"] .about .stat-card,
  html[lang="ru"] .about .stat-card {
    padding: 14px 12px;
  }

  html[lang="hy"] .about .stat-card strong,
  html[lang="ru"] .about .stat-card strong {
    font-size: 1rem;
  }

  html[lang="hy"] .about .stat-card span,
  html[lang="ru"] .about .stat-card span {
    font-size: 0.84rem;
  }

  html[lang="hy"] .clients .section-head p,
  html[lang="hy"] .review-quote,
  html[lang="hy"] .review-meta h3,
  html[lang="hy"] .review-meta span,
  html[lang="hy"] .review-tags span {
    font-size: 0.92rem;
  }

  html[lang="hy"] .review-rotator-main {
    min-height: 248px;
    padding: 20px 20px 16px;
  }

  html[lang="hy"] .review-side-panel {
    padding: 16px 14px;
    gap: 10px;
  }

  html[lang="hy"] .review-quote {
    line-height: 1.5;
    min-height: 94px;
    margin: 6px 0 12px;
  }

  html[lang="hy"] .review-tags {
    gap: 6px;
  }

  html[lang="hy"] .review-tags span {
    min-height: 28px;
    padding: 0 9px;
    font-size: 0.8rem;
  }

  html[lang="hy"] .contact .contact-form,
  html[lang="ru"] .contact .contact-form,
  html[lang="fr"] .contact .contact-form,
  html[lang="de"] .contact .contact-form {
    padding: 18px;
    border-radius: 20px;
  }

  html[lang="hy"] .contact label,
  html[lang="ru"] .contact label,
  html[lang="fr"] .contact label,
  html[lang="de"] .contact label {
    margin-bottom: 10px;
    font-size: 0.92rem;
  }

  html[lang="hy"] .contact input,
  html[lang="hy"] .contact textarea,
  html[lang="ru"] .contact input,
  html[lang="ru"] .contact textarea,
  html[lang="fr"] .contact input,
  html[lang="fr"] .contact textarea,
  html[lang="de"] .contact input,
  html[lang="de"] .contact textarea {
    padding: 11px 13px;
    font-size: 0.94rem;
  }

  html[lang="hy"] .contact textarea,
  html[lang="ru"] .contact textarea,
  html[lang="fr"] .contact textarea,
  html[lang="de"] .contact textarea {
    min-height: 112px;
  }

  html[lang="hy"] .services h2,
  html[lang="ru"] .services h2,
  html[lang="fr"] .services h2,
  html[lang="hy"] .services-head h2,
  html[lang="ru"] .services-head h2,
  html[lang="fr"] .services-head h2 {
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: anywhere;
    font-size: clamp(1.55rem, 2.15vw, 2.15rem);
    line-height: 1.08;
    max-width: 900px;
  }
}

@media (min-width: 981px) and (max-width: 1180px) {
  html[lang="hy"] .hero h1,
  html[lang="ru"] .hero h1 {
    font-size: clamp(2.25rem, 3.8vw, 3.3rem);
  }

  html[lang="hy"] .about h2,
  html[lang="ru"] .about h2,
  html[lang="hy"] .contact h2,
  html[lang="ru"] .contact h2,
  html[lang="fr"] .contact h2,
  html[lang="de"] .contact h2 {
    font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  }

  html[lang="hy"] .services h2,
  html[lang="ru"] .services h2,
  html[lang="fr"] .services h2,
  html[lang="hy"] .services-head h2,
  html[lang="ru"] .services-head h2,
  html[lang="fr"] .services-head h2 {
    font-size: clamp(1.4rem, 1.95vw, 1.9rem);
  }
}


/* Targeted multilingual layout refinements */
@media (min-width: 981px) {
  html[lang="hy"] .about .card-dark.track-record-card,
  html[lang="ru"] .about .card-dark.track-record-card {
    min-height: 384px;
    padding: 22px 20px;
    gap: 14px;
  }

  html[lang="hy"] .about .track-header h3,
  html[lang="ru"] .about .track-header h3 {
    font-size: 1.16rem;
  }

  html[lang="hy"] .about .track-primary,
  html[lang="ru"] .about .track-primary {
    padding: 18px 16px;
    gap: 10px;
  }

  html[lang="hy"] .about .track-primary span,
  html[lang="ru"] .about .track-primary span,
  html[lang="hy"] .about .track-middle-text span,
  html[lang="ru"] .about .track-middle-text span,
  html[lang="hy"] .about .track-score-text span,
  html[lang="ru"] .about .track-score-text span,
  html[lang="hy"] .about .track-since,
  html[lang="ru"] .about .track-since {
    font-size: 0.92rem;
  }

  html[lang="hy"] .about .track-middle-text strong,
  html[lang="ru"] .about .track-middle-text strong,
  html[lang="hy"] .about .track-score-text strong,
  html[lang="ru"] .about .track-score-text strong {
    font-size: 2.15rem;
  }

  html[lang="hy"] .services .service-feature,
  html[lang="ru"] .services .service-feature,
  html[lang="de"] .services .service-feature {
    top: 98px;
    padding: 22px 20px;
    max-height: calc(100svh - 118px);
  }

  html[lang="hy"] .services .service-feature-label,
  html[lang="ru"] .services .service-feature-label,
  html[lang="de"] .services .service-feature-label {
    margin-bottom: 12px;
    font-size: 0.74rem;
  }

  html[lang="hy"] .services .service-feature h3,
  html[lang="ru"] .services .service-feature h3,
  html[lang="de"] .services .service-feature h3 {
    margin-bottom: 10px;
    font-size: 1.18rem;
    line-height: 1.12;
  }

  html[lang="hy"] .services .service-feature p,
  html[lang="ru"] .services .service-feature p,
  html[lang="de"] .services .service-feature p,
  html[lang="hy"] .services .service-points li,
  html[lang="ru"] .services .service-points li,
  html[lang="de"] .services .service-points li {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  html[lang="hy"] .services .service-points,
  html[lang="ru"] .services .service-points,
  html[lang="de"] .services .service-points {
    gap: 9px;
  }

  html[lang="hy"] .clients h2,
  html[lang="hy"] .clients-head h2 {
    font-size: clamp(1.9rem, 2.45vw, 2.45rem);
    letter-spacing: -0.032em;
    white-space: nowrap;
  }
}

@media (min-width: 981px) and (max-width: 1160px) {
  html[lang="hy"] .clients h2,
  html[lang="hy"] .clients-head h2 {
    white-space: normal;
  }
}
