@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Noto+Sans+Armenian:wght@400;500;600;700;800&family=Noto+Serif+Armenian:wght@700&display=swap");

:root {
  --text-main: #2f3540;
  --text-soft: #787d87;
  --primary: #224c74;
  --primary-dark: #173757;
  --accent: #dc9a2f;
  --accent-light: rgba(220, 154, 47, 0.12);
  --page-gutter: clamp(16px, 3vw, 48px);
  --section-y: clamp(44px, 7vw, 88px);
  --split-section-min: clamp(360px, 56vh, 620px);
  --header-height: 72px;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 4px 24px rgba(34, 76, 116, 0.08);
  --shadow-lift: 0 20px 48px rgba(34, 76, 116, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  background: #fff;
  color: var(--text-main);
  font-family: "Noto Sans Armenian", "Noto Sans", Arial, sans-serif;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  position: relative;
}

html[lang="en"] body,
html[lang="ru"] body {
  font-family: "Noto Sans", Arial, sans-serif;
}

/* ── Scroll progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #e8b04a);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 200;
  pointer-events: none;
}

/* ── Section labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 5px 12px;
  background: rgba(220, 154, 47, 0.1);
  border-radius: 999px;
  border: 1px solid rgba(220, 154, 47, 0.2);
}

.section-label--hero {
  color: rgba(220, 154, 47, 0.9);
  background: rgba(220, 154, 47, 0.08);
  border-color: rgba(220, 154, 47, 0.18);
}

.section-label--light {
  color: rgba(220, 154, 47, 0.95);
  background: rgba(220, 154, 47, 0.12);
  border-color: rgba(220, 154, 47, 0.22);
}

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal--left,
.reveal--right {
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.page {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ── Header ── */
.header {
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px var(--page-gutter);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 transparent;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  max-width: 100%;
  overflow: visible;
}

.header.is-scrolled {
  box-shadow: 0 1px 0 #e8eaed, 0 4px 20px rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.98);
}

.logo {
  display: inline-block;
  flex-shrink: 1;
  min-width: 0;
}

.logo img {
  display: block;
  height: 56px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

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

.nav a {
  text-decoration: none;
  color: #4a5568;
  font-size: 13.5px;
  font-weight: 500;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.18s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a.is-active {
  color: var(--accent);
  font-weight: 700;
}

.nav a.is-active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.lang-switcher__sep {
  color: #c5cad1;
  font-size: 11px;
  user-select: none;
}

.lang-btn {
  border: 0;
  background: transparent;
  color: #787d87;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 7px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.18s ease, background 0.18s ease;
}

.lang-btn:hover,
.lang-btn:focus-visible {
  color: var(--primary);
  background: rgba(34, 76, 116, 0.08);
  outline: none;
}

.lang-btn.active {
  color: var(--primary);
  background: rgba(34, 76, 116, 0.1);
}

/* ── Buttons ── */
.btn {
  border: 0;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: filter 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 55%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.btn:hover::after {
  animation: btn-shimmer 0.65s ease forwards;
}

.btn:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 154, 47, 0.38);
}

.btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-contact {
  background: var(--primary);
  padding: 11px 26px;
}

/* ── Mobile nav toggle ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s ease;
}

.nav-toggle:hover {
  background: #f0f2f5;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-main);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn-contact:hover {
  box-shadow: 0 6px 20px rgba(34, 76, 116, 0.32);
}

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  filter: none;
  box-shadow: none;
}

/* ── Hero ── */
.hero-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: calc(100vh - var(--header-height));
  width: 100%;
}

.hero-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  contain: layout style;
  min-height: 0;
  height: 100%;
  background: linear-gradient(150deg, #2e6090 0%, var(--primary-dark) 100%);
  padding: clamp(20px, 3vw, 40px) clamp(24px, 4vw, 52px);
}

.hero-visual {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

/* ── CTA layout ── */
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.cta-visual {
  position: relative;
  overflow: hidden;
}

.cta-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

/* ── Hero ── */
.hero {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
  overflow-x: hidden;
}

/* Hero visual is above the fold — show immediately, ken-burns starts from is-visible in HTML */
#hero .reveal {
  opacity: 1;
  transform: none;
}

.hero-card-body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  pointer-events: none;
  animation: dot-pan 18s linear infinite;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-orb--1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220, 154, 47, 0.22) 0%, transparent 68%);
  top: -140px;
  left: -80px;
  filter: blur(48px);
  animation: orb-drift 16s ease-in-out infinite;
}

.hero-orb--2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(79, 152, 210, 0.3) 0%, transparent 68%);
  bottom: -110px;
  right: -40px;
  filter: blur(52px);
  animation: orb-drift 22s ease-in-out infinite reverse;
}

.hero-orb--3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(220, 154, 47, 0.14) 0%, transparent 70%);
  top: 40%;
  left: 42%;
  filter: blur(32px);
  animation: orb-drift 11s ease-in-out infinite 3s;
}

.hero-card-body::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(220, 154, 47, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: hero-glow 8s ease-in-out infinite alternate;
}

@keyframes hero-glow {
  from { opacity: 0.5; transform: translateX(0); }
  to { opacity: 1; transform: translateX(-8%); }
}

.hero-card-body > *:not(.hero-orb) {
  position: relative;
  z-index: 1;
}

.hero-visual {
  background: #1c2430;
}

.hero-visual img {
  z-index: 0;
  object-position: 50% 50%;
  transition: transform 12s var(--ease-out);
}

.hero-visual.is-visible img,
.hero:hover .hero-visual img {
  transform: scale(1.04);
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(270deg, rgba(23, 55, 87, 0.35) 0%, transparent 45%);
  pointer-events: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hero-trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5vw, 18px);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #9eb0c8;
  font-size: 12.5px;
  font-weight: 500;
}

.hero-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.hero-trust-icon svg {
  width: 14px;
  height: 14px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
  text-decoration: none;
  z-index: 2;
  transition: border-color 0.2s ease;
}

.hero-scroll-hint:hover {
  border-color: var(--accent);
}

.hero-scroll-hint-dot {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(10px); opacity: 0.4; }
}

.hero-card-body h1,
.hero-card-body .hero-subtitle {
  margin: 0;
  color: #f5c842;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .hero-card-body h1,
  .hero-card-body .hero-subtitle {
    background: linear-gradient(90deg, #f5c842 0%, #dc9a2f 28%, #fde27a 54%, #dc9a2f 76%, #f5c842 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: text-shimmer 6s linear infinite;
  }
}

.hero-card-body h1 {
  font-size: clamp(28px, 3.1vw, 44px);
  line-height: 1.12;
}

.hero-card-body .hero-subtitle {
  margin-top: 10px;
  font-size: clamp(18px, 2vw, 30px);
  line-height: 1.2;
  max-width: none;
}

.hero-divider {
  width: 80%;
  height: 1px;
  background: rgba(196, 205, 219, 0.38);
  margin: 14px 0 10px;
}

.hero-card-body .hero-lead {
  margin: 0 0 18px;
  color: #eef2f8;
  font-size: 14px;
  font-weight: 500;
  max-width: 26rem;
  line-height: 1.5;
}

/* ── Wave dividers ── */
.wave-divider {
  display: block;
  line-height: 0;
  overflow: hidden;
  margin-bottom: -2px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  max-width: 100%;
  height: clamp(32px, 4vw, 56px);
}

.wave-divider--hero {
  background: var(--primary-dark);
}

.wave-divider--services {
  background: linear-gradient(180deg, #f0f3f9 0%, #eaeff7 100%);
}

/* ── Services ── */
.services {
  background: linear-gradient(180deg, #f0f3f9 0%, #eaeff7 100%);
  padding: 0 var(--page-gutter) var(--section-y);
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

.services-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--section-y) 0 clamp(36px, 5vw, 52px);
  max-width: min(600px, 100%);
  margin: 0 auto;
}

.services-intro .section-label {
  align-self: center;
  margin-bottom: 14px;
}

.services-intro h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 16px;
}

.services-intro h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.services-intro p {
  margin: 16px 0 0;
  color: var(--text-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 28px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

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

.service--detailed {
  align-items: flex-start;
  text-align: left;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3.5vw, 40px);
  border-top: none;
  border-left: 4px solid var(--accent);
  position: relative;
}

.service--detailed::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent 70%);
  border-radius: 16px 16px 0 0;
}

.service--detailed .service-icon-wrap {
  align-self: flex-start;
  margin-bottom: 16px;
}

.service--detailed h3 {
  margin: 0 0 16px;
  font-size: clamp(16px, 2.1vw, 19px);
}

.service-details {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.service-details li {
  padding: 12px 16px;
  background: rgba(220, 154, 47, 0.05);
  border-radius: 10px;
  border-left: 3px solid rgba(220, 154, 47, 0.4);
  color: #5a6474;
  font-size: 14px;
  line-height: 1.55;
  transition: background 0.2s ease, border-color 0.2s ease;
  text-align: left;
}

.service-details li::before {
  display: none;
}

.service-details li:hover {
  background: rgba(220, 154, 47, 0.1);
  border-color: var(--accent);
}

.service-details strong {
  color: var(--text-main);
  font-weight: 700;
}

.service-lead {
  margin: 0 0 12px;
  color: #5a6474;
  font-size: 14.5px;
  line-height: 1.65;
}

.service-agencies {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  background: rgba(34, 76, 116, 0.07);
  border: 1px solid rgba(34, 76, 116, 0.12);
  border-radius: 8px;
  padding: 6px 12px;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.services-grid--follow {
  margin-top: clamp(18px, 2.5vw, 28px);
}

.service--wide {
  margin-top: clamp(18px, 2.5vw, 28px);
  width: 100%;
}

.service-num {
  color: var(--accent);
  margin-right: 0.2em;
}

.service-tagline {
  margin: 0 0 10px;
  font-weight: 700;
  color: var(--text-main);
  font-size: 14px;
  line-height: 1.45;
}

.service-tagline--spaced {
  margin-top: 16px;
}

.service-closing {
  margin-top: 12px;
}

.service-guarantees {
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: guarantee;
  width: 100%;
}

.service-guarantees li {
  position: relative;
  padding: 8px 0 8px 2rem;
  text-align: left;
  counter-increment: guarantee;
}

.service-guarantees li::before {
  content: counter(guarantee) ".";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--accent);
  font-weight: 700;
  margin-right: 0;
}

.service-guarantees strong {
  color: var(--text-main);
  font-weight: 700;
}

.service {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 36px;
  border-top: 3px solid var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(34, 76, 116, 0.07), 0 1px 4px rgba(34, 76, 116, 0.04);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(220, 154, 47, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 56px rgba(34, 76, 116, 0.15), 0 6px 16px rgba(34, 76, 116, 0.07);
  border-color: #c9972e;
}

.service:hover .service-icon {
  animation: icon-wobble 0.5s ease;
}

.service.is-visible .service-icon-wrap {
  animation: icon-pop 0.5s var(--ease-out) backwards;
  animation-delay: calc(var(--reveal-delay, 0ms) + 200ms);
}

@keyframes icon-pop {
  from { transform: scale(0.85); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid rgba(201, 154, 60, 0.95);
  color: #b8892a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 0 1px rgba(201, 154, 60, 0.12);
}

.service:hover .service-icon-wrap {
  border-color: #c9972e;
  color: #a67a1f;
  box-shadow: 0 0 0 1px rgba(201, 154, 60, 0.22);
}

.service-icon {
  display: block;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  max-width: none;
}

.service-icon--dollar {
  width: 28px;
  height: 28px;
}

.service h3 {
  margin: 16px 0 14px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  overflow-wrap: anywhere;
}

.service p,
.service li {
  margin: 0;
  color: #5a6474;
  font-size: 13.5px;
  line-height: 1.6;
}

.service ul {
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.service ul:not(.service-details) li {
  padding: 3px 0;
}

.service ul li::before {
  content: "–";
  color: var(--accent);
  margin-right: 7px;
  font-weight: 700;
}

.service p + p {
  margin-top: 10px;
}

/* ── Numbered content sections (2–5) ── */
.info-section {
  padding: var(--section-y) var(--page-gutter);
  background: #fff;
  position: relative;
  max-width: 100%;
  overflow-x: hidden;
}

.info-section--muted {
  background: linear-gradient(180deg, #f0f4fb 0%, #eaeff7 100%);
}

.info-section-inner {
  max-width: min(800px, 100%);
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: clamp(28px, 4vw, 52px) clamp(24px, 4vw, 52px);
  box-shadow: 0 4px 24px rgba(34, 76, 116, 0.07), 0 1px 4px rgba(34, 76, 116, 0.04);
  border: 1px solid rgba(34, 76, 116, 0.06);
  position: relative;
  overflow: hidden;
}

.info-section-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, #c48428 100%);
  border-radius: 2px 0 0 2px;
}

.info-section-header {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 3vw, 28px);
  margin-bottom: clamp(20px, 3vw, 32px);
  padding-bottom: clamp(16px, 2.5vw, 24px);
  border-bottom: 1px solid rgba(34, 76, 116, 0.07);
}

.info-section-num {
  font-size: clamp(56px, 9vw, 88px);
  font-weight: 800;
  line-height: 0.85;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent) 0%, #c48428 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 8px rgba(220, 154, 47, 0.2));
}

.info-section-num--center {
  display: block;
  margin: 0 auto 16px;
  text-align: center;
  font-size: clamp(52px, 8vw, 80px);
}

.info-section-header h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.info-section-tagline {
  margin: 0;
  font-weight: 600;
  color: var(--accent);
  font-size: 14px;
  line-height: 1.45;
}

.info-section-tagline--spaced {
  margin-top: 18px;
}

.info-section-body {
  position: relative;
  z-index: 1;
}

.info-section-body > p {
  margin: 0 0 8px;
  color: #5a6474;
  font-size: 15px;
  line-height: 1.7;
}

.info-section-body > p:last-child {
  margin-bottom: 0;
}

.info-section-closing {
  margin-top: 16px !important;
  font-style: italic;
  color: var(--text-main) !important;
  font-weight: 500;
}

.info-section-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-section-list li {
  padding: 10px 14px 10px 16px;
  background: rgba(220, 154, 47, 0.05);
  border-radius: 10px;
  border-left: 3px solid var(--accent);
  color: #5a6474;
  font-size: 14.5px;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.info-section-list li:hover {
  background: rgba(220, 154, 47, 0.09);
}

.info-section-list li::before {
  display: none;
}

.info-section-list strong,
.info-section-guarantees strong {
  color: var(--text-main);
  font-weight: 700;
}

.info-section-guarantees {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: info-guarantee;
}

.info-section-guarantees li {
  position: relative;
  padding: 14px 16px 14px 56px;
  counter-increment: info-guarantee;
  background: rgba(34, 76, 116, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(34, 76, 116, 0.07);
  color: #5a6474;
  font-size: 14.5px;
  line-height: 1.55;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.info-section-guarantees li:hover {
  background: rgba(34, 76, 116, 0.07);
  border-color: rgba(220, 154, 47, 0.25);
}

.info-section-guarantees li::before {
  content: counter(info-guarantee);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent), #c48428);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

/* ── Process steps ── */
.process {
  background: linear-gradient(180deg, #fff 0%, #f6f9fe 100%);
  padding: var(--section-y) var(--page-gutter);
  max-width: 100%;
  overflow-x: hidden;
}

.process-inner {
  width: 100%;
}

.process-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto clamp(36px, 5vw, 56px);
}

.process-header h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.process-header p {
  margin: 0;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
  counter-reset: process;
}

.process-step {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 32px);
  box-shadow: 0 4px 20px rgba(34, 76, 116, 0.07), 0 1px 4px rgba(34, 76, 116, 0.04);
  border: 1px solid rgba(34, 76, 116, 0.06);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s ease;
  overflow: hidden;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent 80%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(34, 76, 116, 0.14), 0 4px 12px rgba(34, 76, 116, 0.06);
  border-color: rgba(220, 154, 47, 0.25);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step-num {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent-light);
  background: linear-gradient(135deg, var(--accent) 0%, #c48428 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-main);
}

.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(-18px, -2vw, -12px);
  width: clamp(16px, 2vw, 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  transform: translateY(-50%);
  opacity: 0.4;
}

@media (max-width: 1100px) {
  .process-step:not(:last-child)::after {
    top: auto;
    bottom: -14px;
    right: 50%;
    left: 50%;
    width: 2px;
    height: 20px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, var(--accent), transparent);
  }
}

/* ── Experience ── */
.experience {
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding: var(--section-y) var(--page-gutter);
  width: 100%;
  max-width: 100%;
  position: relative;
  overflow-x: hidden;
}

.experience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 76, 116, 0.1) 30%, rgba(34, 76, 116, 0.1) 70%, transparent);
}

.experience-text {
  position: relative;
  padding-left: 28px;
}

.experience-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  background: var(--accent);
  border-radius: 3px;
}

.experience-text h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  color: var(--text-main);
  font-weight: 700;
}

.experience-text p {
  margin: 14px 0 24px;
  color: #5a6474;
  font-size: 15px;
  line-height: 1.65;
}

.experience-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-left: 12px;
}

.experience-metric {
  text-align: left;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  border: 1px solid rgba(34, 76, 116, 0.07);
  box-shadow: 0 4px 20px rgba(34, 76, 116, 0.06);
  position: relative;
  overflow: hidden;
}

.experience-metric::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), #c48428);
  border-radius: 2px 0 0 2px;
}

.experience-metric strong {
  display: block;
  color: var(--accent);
  font-size: clamp(52px, 6.5vw, 84px);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.experience-metric span {
  color: #8e9299;
  font-size: 14px;
  margin-top: 10px;
  display: block;
  font-weight: 500;
  max-width: 220px;
  line-height: 1.4;
}

/* ── CTA / Professional consultation ── */
.cta-visual {
  background: #1a1f28;
  clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
}

.cta-visual img {
  object-position: 50% 30%;
}

.cta-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, transparent 45%, rgba(23, 55, 87, 0.75) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-content {
  background: linear-gradient(-45deg, #173757, #1d4a78, #1a5a92, #173757);
  background-size: 400% 400%;
  animation: cta-gradient 14s ease infinite;
  padding: clamp(32px, 5vw, 64px) clamp(28px, 5vw, 64px) clamp(32px, 5vw, 64px) clamp(40px, 6vw, 72px);
}

.cta-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  animation: dot-pan 20s linear infinite;
}

.cta-content::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(220, 154, 47, 0.1) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  animation: orb-drift 14s ease-in-out infinite;
}

.cta-content h2 {
  margin: 0;
  color: #eef2fb;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.25;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-content p {
  margin: 14px 0 22px;
  color: #8fa8d0;
  font-size: 14px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.cta-btn-main {
  align-self: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.22s var(--ease-out);
}

.cta-contact-item:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(220, 154, 47, 0.4);
  transform: translateX(5px);
}

.cta-contact-item--phone {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.cta-contact-item--phone:hover {
  transform: translateX(5px);
}

.cta-contact-main {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px 11px 16px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.cta-contact-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 52px;
  align-self: stretch;
  background: rgba(37, 211, 102, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: #25d366;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease;
}

.cta-contact-wa:hover {
  background: rgba(37, 211, 102, 0.22);
  color: #3de878;
}

.cta-contact-item--phone:hover .cta-contact-icon {
  background: rgba(220, 154, 47, 0.25);
}

.cta-contact-icon {
  width: 38px;
  height: 38px;
  background: rgba(220, 154, 47, 0.15);
  border: 1px solid rgba(220, 154, 47, 0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.22s ease;
}

.cta-contact-item:hover .cta-contact-icon {
  background: rgba(220, 154, 47, 0.25);
}

.cta-contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.cta-contact-value {
  font-size: 14px;
  font-weight: 600;
  color: #dce8f8;
  letter-spacing: 0.02em;
}

/* ── Partners ── */
.partners {
  background: linear-gradient(180deg, #f8fafd 0%, #eef2f8 100%);
  padding: var(--section-y) var(--page-gutter) calc(var(--section-y) + 16px);
  width: 100%;
  position: relative;
  overflow: hidden;
}

.partners::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 30%, var(--primary) 70%, transparent 100%);
}

.partners::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(34, 76, 116, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

.partners-intro {
  text-align: center;
  margin-bottom: 52px;
  position: relative;
  z-index: 1;
}

.partners-heading {
  margin: 0;
  font-family: "Noto Serif Armenian", "Noto Sans Armenian", Georgia, serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent);
  letter-spacing: 0.01em;
  position: relative;
  display: inline-block;
  padding-bottom: 20px;
}

.partners-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), #e8b04a);
  border-radius: 2px;
}

/* ── Partner marquee ── */
.partner-marquee-outer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
}

.partner-marquee-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: 96px;
  contain: layout paint;
}

.partner-marquee-track {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: marquee-left 38s linear infinite;
}

.partner-marquee-track--reverse {
  animation: marquee-right 44s linear infinite;
}

.partner-marquee-wrap:hover .partner-marquee-track {
  animation-play-state: paused;
}

.partner-marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(34, 76, 116, 0.08);
  box-shadow: 0 2px 10px rgba(34, 76, 116, 0.06);
  padding: 18px 26px;
  height: 96px;
  min-width: 150px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s ease;
}

.partner-marquee-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 32px rgba(34, 76, 116, 0.13);
  border-color: rgba(220, 154, 47, 0.38);
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 160px;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.2) opacity(0.9);
  transition: filter 0.25s ease, transform 0.25s ease;
}

.partner-marquee-item:hover .partner-logo {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

.partner-logo--wide {
  max-width: 190px;
  max-height: 62px;
}

.partner-logo--inc {
  max-width: min(220px, 70vw);
  max-height: clamp(40px, 8vw, 56px);
  opacity: 0.55;
  filter: grayscale(0.3);
  transition: opacity 0.25s, filter 0.25s;
}

.partner-logo--ji {
  max-width: min(260px, 80vw);
  max-height: clamp(56px, 12vw, 96px);
  opacity: 0.55;
  filter: grayscale(0.3);
  transition: opacity 0.25s, filter 0.25s;
}

.partner-cell:hover .partner-logo--inc,
.partner-cell:hover .partner-logo--ji {
  opacity: 1;
  filter: grayscale(0);
}

.partner-muted {
  color: #a8a8ae;
  font-family: Arial, Helvetica, sans-serif;
}

/* ── Partner brand text system ── */
.pl-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: Arial, Helvetica, sans-serif;
}

.pl-brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #b0b0b8;
  line-height: 1;
}

.pl-brand-sub {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #c4c4ca;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
}

.pl-italic {
  font-style: italic;
  letter-spacing: 0.04em;
}

.pl-accent {
  font-style: normal;
  color: #c8b870;
}

/* Per-brand overrides */
.pl-davaro-name   { font-size: 24px; font-weight: 900; font-family: "Arial Black", Arial, sans-serif; }
.pl-cargohub-name { font-size: 22px; letter-spacing: 0.1em; }
.pl-lizaro-name   { font-family: Georgia, "Times New Roman", serif; font-size: 22px; }
.pl-ferment-name  { font-style: italic; font-family: Georgia, serif; font-size: 22px; font-weight: 700; }
.pl-zithopia-name { font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.pl-gass-name     { font-size: 28px; font-weight: 900; font-family: "Arial Black", Arial, sans-serif; letter-spacing: 0.1em; }

/* ── Footer ── */
.footer {
  background: linear-gradient(160deg, #0f2236 0%, #142d4a 50%, #0f2236 100%);
  padding: clamp(48px, 7vw, 80px) var(--page-gutter) 0;
  color: #7a97b8;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr 1.3fr;
  gap: clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, #f5c842 50%, var(--accent) 75%, transparent 100%);
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

.footer > * {
  position: relative;
  z-index: 1;
}

/* Brand column */
.footer-brand {
  padding-bottom: clamp(32px, 5vw, 52px);
}

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

.footer-logo img {
  display: block;
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(0.9);
}

.footer-brand-desc {
  margin: 0 0 20px;
  font-size: 13.5px;
  line-height: 1.7;
  color: #6a8aaa;
  max-width: 280px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(220, 154, 47, 0.85);
  background: rgba(220, 154, 47, 0.08);
  border: 1px solid rgba(220, 154, 47, 0.18);
  border-radius: 999px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* Column headings */
.footer h4 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  position: relative;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

/* Nav links */
.footer a:not(.footer-logo):not(.footer-contact-link) {
  display: block;
  margin-bottom: 9px;
  color: #6a8aaa;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
  transition: color 0.16s ease, padding-left 0.16s ease;
}

.footer a:not(.footer-logo):not(.footer-contact-link):hover {
  color: #c8d8ec;
  padding-left: 5px;
}

/* Contact links with icons */
.footer-contact-link {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px !important;
  color: #6a8aaa !important;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
  transition: color 0.16s ease !important;
  padding-left: 0 !important;
}

.footer-contact-link:hover {
  color: #c8d8ec !important;
  padding-left: 0 !important;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.footer-contact-link:hover .footer-contact-icon {
  background: rgba(220, 154, 47, 0.12);
  border-color: rgba(220, 154, 47, 0.25);
}

/* Footer bottom bar */
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0 24px;
  margin-top: 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  margin: 0;
  color: #3d5a78;
  font-size: 12.5px;
  letter-spacing: 0.03em;
}

@media (max-width: 1000px) {
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding-bottom: 32px;
  }
}

@media (max-width: 560px) {
  .footer {
    grid-template-columns: 1fr;
  }
  .footer-brand {
    grid-column: 1;
  }
}

/* ── Back to top ── */
.back-to-top {
  position: fixed;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(34, 76, 116, 0.35);
  z-index: 90;
  transition: transform 0.25s var(--ease-out), opacity 0.25s ease, background 0.2s ease;
}

.back-to-top:not([hidden]) {
  animation: fade-up 0.4s var(--ease-out);
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── New animation keyframes ── */
@keyframes dot-pan {
  from { background-position: 0 0; }
  to { background-position: 24px 24px; }
}

@keyframes orb-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(28px, -36px) scale(1.06); }
  50% { transform: translate(-18px, 22px) scale(0.94); }
  75% { transform: translate(20px, -12px) scale(1.02); }
}

@keyframes text-shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@keyframes btn-shimmer {
  to { left: 160%; }
}

@keyframes cta-gradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

@keyframes icon-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg); }
  75% { transform: rotate(12deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card-body::after,
  .hero-card-body::before,
  .hero-scroll-hint-dot,
  .hero-visual img,
  .hero-orb,
  .partner-marquee-track,
  .partner-marquee-track--reverse,
  .cta-content,
  .cta-content::after,
  .hero-card-body h1,
  .hero-card-body .hero-subtitle {
    animation: none;
    transition: none;
    background: none;
    -webkit-text-fill-color: var(--accent);
    color: var(--accent);
  }

  .service.is-visible .service-icon-wrap {
    animation: none;
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    flex-shrink: 0;
    position: relative;
    z-index: 102;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 4px 0 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #e8eaed;
    z-index: 101;
  }

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

  .nav a {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 0;
  }

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

  .btn-contact {
    display: none;
  }

  .header-actions {
    margin-left: auto;
    margin-right: 4px;
  }

  .lang-switcher {
    order: -1;
  }
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .process-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  .hero-scroll-hint {
    display: none;
  }

  .hero {
    background: linear-gradient(165deg, #dce5f0 0%, #eef2f8 48%, #f5f7fa 100%);
    padding: 12px var(--page-gutter) 16px;
  }

  .hero-orb--1 {
    width: 160px;
    height: 160px;
    left: -24px;
    filter: blur(28px);
  }

  .hero-orb--2 {
    width: 140px;
    height: 140px;
    right: -16px;
    filter: blur(28px);
  }

  .hero-orb--3 {
    width: 100px;
    height: 100px;
    filter: blur(20px);
  }

  .hero-visual.is-visible img,
  .hero:hover .hero-visual img {
    transform: none;
  }

  .hero-inner {
    align-items: center;
    min-height: 0;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: calc(100svh - var(--header-height));
    max-height: none;
    padding: 0;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 440px;
    height: auto;
    max-height: calc(100svh - var(--header-height) - 28px);
    margin: 0 auto;
    border-radius: 22px;
    box-shadow:
      0 2px 4px rgba(34, 76, 116, 0.06),
      0 16px 40px rgba(34, 76, 116, 0.16),
      0 0 0 1px rgba(34, 76, 116, 0.06);
  }

  .hero-visual {
    flex-shrink: 0;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    max-height: min(38vh, 280px);
    min-height: 0;
  }

  .hero-visual img {
    object-position: 50% 22%;
  }

  .hero-visual-overlay {
    background: linear-gradient(
      180deg,
      transparent 35%,
      rgba(23, 55, 87, 0.25) 70%,
      rgba(23, 55, 87, 0.65) 100%
    );
  }

  .hero-visual::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    z-index: 2;
    pointer-events: none;
  }

  .hero-card-body {
    flex: 1;
    min-height: 0;
    height: auto;
    padding: 18px 18px 20px;
    justify-content: flex-start;
    border-radius: 0 0 22px 22px;
  }

  .hero-card-body .hero-subtitle {
    font-size: clamp(16px, 4vw, 19px);
  }

  .cta {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    height: auto;
    max-height: none;
  }

  .cta-content {
    min-height: 0;
    height: auto;
    padding: clamp(28px, 5vw, 40px) var(--page-gutter);
  }

  .cta-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    max-height: min(48vh, 420px);
  }

  .hero-visual img,
  .cta-visual img {
    min-height: 0;
  }

  .experience {
    grid-template-columns: 1fr;
  }

  .experience-text {
    padding-left: 20px;
  }

  .experience-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(24px, 5vw, 40px);
    padding-left: 20px;
  }

  .partner-empty {
    display: none;
  }
}

@media (max-width: 700px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
    --page-gutter: 16px;
    --section-y: 44px;
  }

  .info-section-num {
    filter: none;
  }

  .hero-card-body h1,
  .hero-card-body .hero-subtitle,
  .services-intro h2,
  .info-section-header h2,
  .process-header h2,
  .experience-text h2,
  .cta-content h2,
  .partners-heading {
    overflow-wrap: anywhere;
  }

  .header {
    min-height: var(--header-height);
  }

  .logo img {
    height: clamp(40px, 11vw, 48px);
  }

  .hero {
    padding: 10px var(--page-gutter) 14px;
  }

  .hero-card {
    max-width: 100%;
    border-radius: 18px;
    max-height: calc(100svh - var(--header-height) - 20px);
  }

  .hero-visual {
    aspect-ratio: 16 / 11;
    max-height: min(34vh, 240px);
  }

  .hero-card-body {
    padding: 14px 14px 16px;
    border-radius: 0 0 18px 18px;
  }

  .hero-card-body .section-label {
    margin-bottom: 8px;
    font-size: 10px;
    padding: 4px 10px;
  }

  .hero-card-body h1 {
    font-size: clamp(20px, 5.5vw, 26px);
    line-height: 1.1;
  }

  .hero-card-body .hero-subtitle {
    font-size: clamp(14px, 3.6vw, 17px);
    margin-top: 8px;
  }

  .hero-divider {
    margin: 8px 0 6px;
    width: 100%;
  }

  .hero-card-body .hero-lead {
    margin-bottom: 10px;
    font-size: clamp(12px, 3.2vw, 13px);
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-bottom: 12px;
  }

  .hero-card-body .btn {
    padding: 11px 16px;
    font-size: 12.5px;
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-trust li {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 6px 10px;
  }

  .hero-trust li {
    font-size: 11px;
  }

  .hero-trust-icon {
    width: 22px;
    height: 22px;
  }

  .hero-trust-icon svg {
    width: 12px;
    height: 12px;
  }

  .service {
    padding: 32px 22px 28px;
  }

  .experience-stats {
    flex-direction: column;
    gap: 28px;
  }

  .experience-metric strong {
    font-size: clamp(40px, 14vw, 64px);
  }

  .cta-visual {
    clip-path: none;
    aspect-ratio: 16 / 9;
    max-height: min(40vh, 280px);
  }

  .cta-contacts {
    gap: 6px;
  }

  .partner-marquee-wrap {
    height: 80px;
  }

  .partner-marquee-item {
    height: 80px;
    min-width: 120px;
    padding: 14px 18px;
  }

  .partner-logo {
    max-width: 120px;
    max-height: 44px;
  }

  .partner-logo--wide {
    max-width: 148px;
    max-height: 50px;
  }
}

@media (max-width: 380px) {
  .partner-marquee-outer {
    gap: 12px;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }

}
