:root {
  --navy: #061529;
  --navy-2: #0b213d;
  --navy-3: #12345d;
  --white: #ffffff;
  --paper: #f4f6f9;
  --muted: #9aa8ba;
  --text: #eaf0f7;
  --ink: #102033;
  --gold: #c79a3b;
  --gold-soft: #efd08a;
  --line: rgba(255, 255, 255, 0.14);
  --dark-line: rgba(11, 33, 61, 0.12);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--navy);
  line-height: 1.6;
}

body.is-lightbox-open {
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(239, 208, 138, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.018) 1px, transparent 1px),
    radial-gradient(circle at 22% 8%, rgba(199, 154, 59, 0.13), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(18, 52, 93, 0.62), transparent 34%),
    linear-gradient(180deg, #061529 0%, #091b34 42%, #050f1f 100%);
  background-size: 88px 88px, 88px 88px, auto, auto, auto;
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 26% 28%, rgba(239, 208, 138, 0.08), transparent 24%),
    radial-gradient(circle at 76% 62%, rgba(18, 52, 93, 0.26), transparent 30%);
  filter: blur(18px);
  opacity: 0.7;
  animation: ambientGlass 22s ease-in-out infinite alternate;
}

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

img {
  display: block;
  width: 100%;
}

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

.section {
  position: relative;
  padding: 84px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px max(16px, calc((100vw - 1160px) / 2));
  color: var(--white);
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(6, 21, 41, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo {
  min-height: 44px;
  flex: 0 0 auto;
  order: 1;
  font-weight: 800;
  transition: opacity 0.22s ease;
}

.logo:hover {
  opacity: 0.82;
}

.logo-mark {
  position: relative;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(244, 216, 146, 0.78);
  border-radius: 50%;
  color: #f4d892;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background:
    radial-gradient(circle at 50% 32%, rgba(244, 216, 146, 0.18), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.015));
  box-shadow:
    inset 0 0 0 1px rgba(244, 216, 146, 0.12),
    inset 0 0 18px rgba(244, 216, 146, 0.08),
    0 8px 22px rgba(0, 0, 0, 0.22),
    0 0 18px rgba(199, 154, 59, 0.12);
  text-shadow: 0 1px 8px rgba(244, 216, 146, 0.28);
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(244, 216, 146, 0.15);
  border-radius: 50%;
}

.logo-text {
  display: grid;
  gap: 2px;
}

.logo-text > span {
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: 0.01em;
}

.logo-text small {
  color: rgba(239, 208, 138, 0.72);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.09em;
}

.header-timezones {
  display: none;
  order: 2;
  flex: 1 1 auto;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: rgba(234, 240, 247, 0.56);
}

.header-timezone {
  display: inline-grid;
  grid-template-columns: auto auto;
  column-gap: 6px;
  align-items: center;
  min-width: 0;
}

.header-timezone .clock-dial {
  grid-row: span 2;
  width: 20px;
  height: 20px;
}

.header-timezone .clock-dial::before,
.header-timezone .clock-dial::after {
  top: 3px;
  bottom: 3px;
}

.header-timezone .clock-hour {
  height: 5px;
}

.header-timezone .clock-minute {
  height: 7px;
}

.header-timezone .clock-second {
  height: 8px;
}

.header-timezone span:not(.clock-dial) {
  color: rgba(239, 208, 138, 0.76);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.header-timezone time {
  color: rgba(234, 240, 247, 0.5);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  line-height: 1.15;
}

.nav-toggle {
  display: inline-flex;
  order: 4;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--white);
  transition: transform 0.25s ease;
}

.nav-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  order: 5;
  top: 76px;
  left: 16px;
  right: 16px;
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 21, 41, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold-soft);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  order: 3;
  margin-left: auto;
  padding: 6px 8px;
  border: 1px solid rgba(239, 208, 138, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(234, 240, 247, 0.5);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.language-switcher button {
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.language-switcher button[aria-pressed="true"] {
  color: rgba(239, 208, 138, 0.92);
}

.language-switcher button:hover {
  color: var(--gold-soft);
}

@media (max-width: 719px) {
  .hero-media {
    animation: none;
    transform: scale(1.02);
  }

  .site-header {
    gap: 10px;
    padding: 12px 12px;
  }

  .logo {
    gap: 10px;
    min-width: 0;
  }

  .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .logo-text > span {
    font-size: 13px;
  }

  .logo-text small {
    max-width: 130px;
    font-size: 8px;
    line-height: 1.2;
  }

  .language-switcher {
    margin-left: auto;
    padding: 5px 7px;
    font-size: 10px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
  }
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 116px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(105deg, rgba(6, 21, 41, 0.98) 0%, rgba(6, 21, 41, 0.82) 42%, rgba(6, 21, 41, 0.44) 100%),
    url("assets/hero-officer.jpg") right center / cover;
  transform: scale(1.02);
  animation: heroMediaDrift 24s ease-in-out infinite alternate;
  will-change: transform, filter;
}

.hero-shade {
  background:
    linear-gradient(rgba(239, 208, 138, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, transparent 70%, var(--navy) 100%);
  background-size: 92px 92px, 92px 92px, auto;
}

.hero-shade::after {
  content: "ТАМОЖЕННАЯ ДЕКЛАРАЦИЯ";
  position: absolute;
  right: -46px;
  bottom: 136px;
  padding: 9px 20px;
  border: 1px solid rgba(239, 208, 138, 0.28);
  color: rgba(239, 208, 138, 0.32);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  transform: rotate(-90deg);
}

html[lang="en"] .hero-shade::after {
  content: "CUSTOMS DECLARATION";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-size: clamp(38px, 5.6vw, 64px);
  font-weight: 650;
  line-height: 1.08;
  letter-spacing: 0;
  color: transparent;
  background: linear-gradient(180deg, #ffffff 0%, #edf5ff 42%, #bed0e6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 6.8vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.22;
}

.hero-text,
.section-heading p,
.image-card p,
.process-card p,
.info-card p {
  color: rgba(234, 240, 247, 0.72);
}

.hero-text {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: 18px;
}

.hero-slogan {
  position: relative;
  max-width: 620px;
  margin: 20px 0 32px;
  padding-left: 18px;
  color: rgba(239, 208, 138, 0.86);
  font-size: clamp(18px, 1.8vw, 20px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.hero-slogan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  bottom: 0.28em;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(244, 216, 146, 0.95), rgba(199, 154, 59, 0.28));
  box-shadow: 0 0 14px rgba(239, 208, 138, 0.16);
}

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

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.btn:hover,
.image-card:hover,
.process-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(199, 154, 59, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  border-color: rgba(239, 208, 138, 0.45);
  box-shadow: 0 14px 38px rgba(199, 154, 59, 0.1);
}

.btn-primary:hover {
  box-shadow: 0 20px 48px rgba(199, 154, 59, 0.28), 0 0 0 1px rgba(239, 208, 138, 0.24);
}

.glass-card:hover,
.about-trust-card:hover {
  border-color: rgba(239, 208, 138, 0.3);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.3), 0 0 28px rgba(199, 154, 59, 0.08);
}

.image-card:hover,
.process-card:hover {
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(239, 208, 138, 0.16);
}

.hero-dashboard {
  display: grid;
  gap: 16px;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04));
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
}

.info-card strong {
  font-size: 16px;
}

.info-card p {
  font-size: 14px;
  line-height: 1.48;
}

.info-card strong {
  display: block;
  margin-bottom: 4px;
}

.info-card p {
  margin-bottom: 0;
}

.card-badge {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.45);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 7px rgba(239, 208, 138, 0.08);
}

.clearance-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
}

.clearance-card span {
  display: block;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.clearance-card i {
  display: inline-grid;
  min-width: 22px;
  place-items: center;
  color: rgba(239, 208, 138, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: normal;
  line-height: 1;
  text-shadow: 0 0 12px rgba(239, 208, 138, 0.18);
}

.hero-live-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 6px 10px;
  border: 1px solid rgba(239, 208, 138, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(234, 240, 247, 0.74);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(158, 207, 141, 0);
  animation: statusPillPulse 4.8s ease-in-out infinite;
}

.hero-live-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9ecf8d;
  box-shadow: 0 0 0 6px rgba(158, 207, 141, 0.1);
  animation: livePulse 2.6s ease-in-out infinite;
}

.workflow-card {
  overflow: hidden;
  margin-top: 2px;
  padding: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.workflow-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 112px;
}

.workflow-svg text {
  fill: rgba(234, 240, 247, 0.72);
  font-size: 10px;
  font-weight: 700;
  text-anchor: middle;
}

.workflow-node rect,
.workflow-node path,
.workflow-node circle {
  fill: none;
  stroke: rgba(239, 208, 138, 0.56);
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-node rect {
  fill: rgba(255, 255, 255, 0.035);
}

.workflow-path,
.upload-line {
  fill: none;
  stroke: url(#workflowGold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  filter: url(#workflowGlow);
}

.path-one {
  animation: workflowLine 6.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.path-two {
  animation: workflowLine 6.8s cubic-bezier(0.45, 0, 0.2, 1) 2.6s infinite;
}

.upload-line {
  stroke-width: 1.6;
  opacity: 0;
  animation: workflowUpload 6.8s cubic-bezier(0.45, 0, 0.2, 1) 3.4s infinite;
}

.scan-line {
  fill: rgba(239, 208, 138, 0.16);
  stroke: none;
  opacity: 0;
  animation: workflowScan 6.8s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

.workflow-check {
  stroke: #9ecf8d;
  stroke-width: 2.5;
  opacity: 0;
  filter: url(#workflowGlow);
}

.check-one {
  animation: workflowAppear 6.8s ease-in-out 1.55s infinite;
}

.node-decl {
  opacity: 0.52;
  animation: workflowNode 6.8s ease-in-out 2.35s infinite;
}

.check-final,
.release-text {
  opacity: 0;
  animation: workflowAppear 6.8s ease-in-out 4.55s infinite;
}

.release-text {
  fill: rgba(158, 207, 141, 0.92) !important;
  filter: drop-shadow(0 0 6px rgba(158, 207, 141, 0.24));
}

@keyframes workflowScan {
  0%, 10% {
    opacity: 0;
    transform: translateY(0);
  }
  18%, 34% {
    opacity: 1;
  }
  42%, 100% {
    opacity: 0;
    transform: translateY(48px);
  }
}

@keyframes workflowLine {
  0%, 18% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  28%, 56% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  70%, 100% {
    stroke-dashoffset: 0;
    opacity: 0.35;
  }
}

@keyframes workflowNode {
  0%, 20% {
    opacity: 0.52;
    transform: translateY(3px);
  }
  34%, 82% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0.52;
  }
}

@keyframes workflowUpload {
  0%, 18% {
    opacity: 0;
    stroke-dashoffset: 100;
  }
  32%, 56% {
    opacity: 1;
    stroke-dashoffset: 0;
  }
  70%, 100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes workflowAppear {
  0%, 18% {
    opacity: 0;
  }
  28%, 78% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes ambientGlass {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(1);
  }
  100% {
    transform: translate3d(2%, 1%, 0) scale(1.04);
  }
}

@keyframes heroMediaDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
    filter: saturate(0.98) contrast(1);
  }
  100% {
    transform: scale(1.045) translate3d(-0.8%, -0.45%, 0);
    filter: saturate(1.02) contrast(1.02);
  }
}

@keyframes livePulse {
  0%, 100% {
    opacity: 0.72;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.16);
  }
}

@keyframes statusPillPulse {
  0%, 100% {
    border-color: rgba(239, 208, 138, 0.16);
    box-shadow: 0 0 0 rgba(158, 207, 141, 0);
  }
  50% {
    border-color: rgba(158, 207, 141, 0.24);
    box-shadow: 0 0 18px rgba(158, 207, 141, 0.055);
  }
}

@keyframes brandLightSweep {
  0% {
    transform: translateX(-135%) skewX(-16deg);
    opacity: 0;
  }
  24% {
    opacity: 0.42;
  }
  56% {
    opacity: 0.2;
  }
  100% {
    transform: translateX(135%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes brandFloat {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-10px, -8px, 0) scale(1.025);
  }
}

@keyframes aboutDataFlow {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
    transform: translate3d(0, 0, 0);
    opacity: 0.42;
  }
  100% {
    background-position: 18px -14px, -22px 16px, 26px -20px, 0 0, 34px 0, 0 -28px;
    transform: translate3d(-8px, -10px, 0);
    opacity: 0.58;
  }
}

@keyframes aboutLightStreak {
  0% {
    transform: translate3d(-36%, 18%, 0) rotate(-11deg);
    opacity: 0;
  }
  34% {
    opacity: 0.28;
  }
  70% {
    opacity: 0.16;
  }
  100% {
    transform: translate3d(34%, -16%, 0) rotate(-11deg);
    opacity: 0;
  }
}

@keyframes phoneFloat {
  0% {
    transform: rotateX(0deg) rotateY(-5deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateX(0deg) rotateY(-3deg) translate3d(0, -8px, 0);
  }
}

@keyframes chatSlideIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes typingDot {
  0%,
  80%,
  100% {
    opacity: 0.34;
    transform: translateY(0);
  }
  40% {
    opacity: 0.96;
    transform: translateY(-2px);
  }
}

@keyframes typingCaret {
  0%,
  45% {
    opacity: 0.75;
  }
  46%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::after,
  .hero-media,
  .contacts-hero-media,
  .hero-live-status,
  .hero-live-status span,
  .about-company::before,
  .about-company::after,
  .about-brand-watermark,
  .about-brand-watermark::after,
  .phone-shell,
  .chat-bubble,
  .chat-reply,
  .typing-indicator span,
  .user-sent-bubble,
  .success-bubble {
    animation: none;
  }

  .workflow-path,
  .upload-line,
  .scan-line,
  .workflow-check,
  .node-decl,
  .release-text {
    animation: none;
  }

  .workflow-path,
  .upload-line,
  .workflow-check,
  .node-decl,
  .release-text {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  .scan-line {
    opacity: 0.35;
  }
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  margin-bottom: 0;
}

.services-hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 118px;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 22%, rgba(199, 154, 59, 0.14), transparent 28%),
    linear-gradient(135deg, #061529, #081a32 68%, #050f1f);
}

.services-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(6, 21, 41, 0.92) 0%, rgba(6, 21, 41, 0.78) 44%, rgba(6, 21, 41, 0.5) 100%),
    radial-gradient(circle at 78% 28%, rgba(239, 208, 138, 0.12), transparent 26%),
    url("assets/documents.jpg") right center / cover no-repeat;
  filter: saturate(0.82) contrast(1.02);
  transform: scale(1.03);
}

.services-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(239, 208, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 21, 41, 0.18), rgba(6, 21, 41, 0.78));
  background-size: 96px 96px, 96px 96px, auto;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 86%, transparent);
}

.services-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.services-hero-content h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 78px);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.38);
}

.services-hero-content p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 30px;
  color: rgba(234, 240, 247, 0.84);
  font-size: clamp(17px, 2vw, 21px);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.services-hero-content .btn {
  width: auto;
}

.contacts-page {
  background:
    radial-gradient(circle at 80% 18%, rgba(199, 154, 59, 0.12), transparent 28%),
    linear-gradient(135deg, #061529, #081a32 68%, #050f1f);
}

.contacts-hero {
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 118px;
  isolation: isolate;
}

.contacts-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 28%, rgba(239, 208, 138, 0.16), transparent 26%),
    linear-gradient(105deg, rgba(6, 21, 41, 0.96) 0%, rgba(6, 21, 41, 0.82) 45%, rgba(6, 21, 41, 0.42) 100%),
    url("assets/consultation.jpg") center right / cover no-repeat;
  filter: saturate(0.88) contrast(1.02);
  opacity: 0.88;
  transform: scale(1.02);
  animation: heroMediaDrift 18s ease-in-out infinite alternate;
}

.contacts-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.contacts-hero-content {
  max-width: 690px;
}

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

.contacts-hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(234, 240, 247, 0.76);
  font-size: 18px;
  line-height: 1.72;
}

.contacts-hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 28px;
}

.contacts-main-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(199, 154, 59, 0.09), transparent 24%),
    linear-gradient(135deg, rgba(6, 21, 41, 0.98), rgba(8, 27, 51, 0.98));
}

.contacts-main-grid {
  display: grid;
  gap: 18px;
}

.contacts-info-card,
.contacts-request-card,
.contacts-map-panel,
.confidentiality-card {
  border-color: rgba(239, 208, 138, 0.18);
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 208, 138, 0.095), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(5, 20, 39, 0.54);
  backdrop-filter: blur(18px);
}

.contacts-info-card,
.contacts-request-card {
  padding: clamp(22px, 3vw, 34px);
}

.contacts-info-card h2,
.contacts-card-heading h2,
.contacts-map-heading h2,
.confidentiality-card h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
}

.contacts-card-heading {
  margin-bottom: 22px;
}

.contacts-card-heading p:last-child {
  max-width: 460px;
  margin-bottom: 0;
  color: rgba(234, 240, 247, 0.68);
}

.contact-detail-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-detail-list div {
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.contact-detail-list span {
  display: block;
  margin-bottom: 7px;
  color: rgba(239, 208, 138, 0.76);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-detail-list a,
.contact-detail-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
  line-height: 1.5;
}

.contact-detail-list a:hover {
  color: var(--gold-soft);
}

.contacts-form textarea {
  min-height: 118px;
}

.consent-field {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px !important;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.consent-field span {
  color: rgba(234, 240, 247, 0.68) !important;
  font-size: 13px !important;
  line-height: 1.5;
}

.consent-field a,
.chat-consent a {
  color: rgba(239, 208, 138, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(239, 208, 138, 0.34);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.consent-field a:hover,
.consent-field a:focus-visible,
.chat-consent a:hover,
.chat-consent a:focus-visible {
  color: var(--gold-soft);
  border-color: rgba(239, 208, 138, 0.72);
  outline: 0;
}

.consent-field input.is-invalid,
.chat-consent input.is-invalid {
  outline: 2px solid rgba(255, 122, 122, 0.74);
  outline-offset: 2px;
}

.contacts-map-section {
  background:
    linear-gradient(rgba(239, 208, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #061529, #081a32 68%, #050f1f);
  background-size: 92px 92px, 92px 92px, auto;
}

.contacts-map-panel {
  padding: clamp(18px, 3vw, 28px);
}

.contacts-map-heading {
  margin-bottom: 18px;
}

.contacts-map-layout {
  display: grid;
  gap: 16px;
}

.map-frame {
  min-height: 360px;
  border: 1px solid rgba(239, 208, 138, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 154, 59, 0.1), transparent 32%),
    rgba(3, 13, 26, 0.62);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  filter: grayscale(0.28) saturate(0.78) contrast(0.96);
}

.route-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(239, 208, 138, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.028)),
    rgba(4, 17, 33, 0.34);
}

.route-card h3 {
  margin-bottom: 0;
}

.route-card p {
  margin-bottom: 8px;
  color: rgba(234, 240, 247, 0.68);
}

.route-card .btn {
  width: fit-content;
}

.confidentiality-section {
  background:
    radial-gradient(circle at 82% 40%, rgba(239, 208, 138, 0.09), transparent 26%),
    linear-gradient(135deg, rgba(6, 21, 41, 0.98), rgba(8, 27, 51, 0.98));
}

.confidentiality-card {
  position: relative;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 40px);
}

.confidentiality-card > div:not(.security-graphic) {
  position: relative;
  z-index: 2;
}

.confidentiality-card p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(234, 240, 247, 0.7);
}

.confidentiality-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.26);
  border-radius: 50%;
  color: var(--gold-soft);
  background: rgba(199, 154, 59, 0.08);
  box-shadow: 0 0 34px rgba(199, 154, 59, 0.08);
}

.confidentiality-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.security-graphic {
  position: absolute;
  right: -32px;
  bottom: -38px;
  width: 260px;
  height: 220px;
  opacity: 0.24;
  pointer-events: none;
}

.security-graphic span {
  position: absolute;
  border: 1px solid rgba(239, 208, 138, 0.28);
  border-radius: 34px;
  box-shadow: inset 0 0 24px rgba(239, 208, 138, 0.06), 0 0 34px rgba(199, 154, 59, 0.08);
}

.security-graphic span:first-child {
  inset: 32px 34px 22px;
}

.security-graphic span:nth-child(2) {
  top: 0;
  left: 76px;
  width: 108px;
  height: 84px;
  border-bottom-color: transparent;
  border-radius: 60px 60px 10px 10px;
}

.security-graphic span:last-child {
  left: 112px;
  top: 116px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(239, 208, 138, 0.08);
}

.clock-dial {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(239, 208, 138, 0.48);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(239, 208, 138, 0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 30%, rgba(239, 208, 138, 0.12), transparent 42%),
    rgba(199, 154, 59, 0.055);
  box-shadow: 0 0 0 4px rgba(239, 208, 138, 0.026), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.clock-dial::before,
.clock-dial::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 3px;
  bottom: 3px;
  width: 1px;
  background: rgba(239, 208, 138, 0.16);
  transform: translateX(-50%);
}

.clock-dial::after {
  transform: translateX(-50%) rotate(90deg);
}

.clock-hand {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 1px;
  border-radius: 999px;
  background: var(--gold-soft);
  transform-origin: 50% 100%;
}

.clock-hour {
  height: 6px;
  opacity: 0.72;
}

.clock-minute {
  height: 8px;
  opacity: 0.86;
}

.clock-second {
  height: 9px;
  background: rgba(239, 208, 138, 0.74);
  box-shadow: 0 0 8px rgba(239, 208, 138, 0.18);
}

.services-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(199, 154, 59, 0.12), transparent 27%),
    radial-gradient(circle at 12% 78%, rgba(18, 52, 93, 0.42), transparent 32%),
    linear-gradient(180deg, #061529 0%, #081a32 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(239, 208, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.026) 1px, transparent 1px),
    linear-gradient(120deg, transparent 0 56%, rgba(239, 208, 138, 0.045) 56% 56.1%, transparent 56.1%);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  min-height: 142px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 208, 138, 0.07), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.026)),
    rgba(6, 21, 41, 0.24);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 58%, rgba(239, 208, 138, 0.055), transparent 78%);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 208, 138, 0.34);
  background:
    radial-gradient(circle at 92% 12%, rgba(239, 208, 138, 0.095), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.032)),
    rgba(6, 21, 41, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), 0 0 28px rgba(199, 154, 59, 0.08);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.38);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 0 8px rgba(239, 208, 138, 0.055), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 19px;
}

.service-card p {
  margin-bottom: 0;
  color: rgba(234, 240, 247, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

.product-categories-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 24%, rgba(239, 208, 138, 0.08), transparent 26%),
    linear-gradient(180deg, #07182f, #061529);
}

.product-categories-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(239, 208, 138, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.022) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.52;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.product-categories-section .container {
  position: relative;
  z-index: 1;
}

.product-categories-grid {
  display: grid;
  gap: 12px;
}

.product-category-card {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 13px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.066), rgba(255, 255, 255, 0.022)),
    rgba(6, 21, 41, 0.24);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.product-category-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 208, 138, 0.34);
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 208, 138, 0.075), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.084), rgba(255, 255, 255, 0.03)),
    rgba(6, 21, 41, 0.28);
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.22), 0 0 26px rgba(199, 154, 59, 0.075);
}

.category-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.3);
  border-radius: 50%;
  color: rgba(239, 208, 138, 0.88);
  background: rgba(239, 208, 138, 0.045);
  box-shadow: 0 0 0 5px rgba(239, 208, 138, 0.032);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.product-category-card:hover .category-icon {
  border-color: rgba(239, 208, 138, 0.44);
  color: rgba(244, 216, 146, 0.96);
  background: rgba(239, 208, 138, 0.065);
  box-shadow: 0 0 0 5px rgba(239, 208, 138, 0.045), 0 0 18px rgba(199, 154, 59, 0.12);
}

.category-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.product-category-card h3 {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.28;
}

.services-footer-contact {
  position: relative;
  overflow: hidden;
}

.services-footer-contact::before {
  content: "";
  position: absolute;
  inset: 12px max(16px, calc((100vw - 1160px) / 2));
  pointer-events: none;
  border: 1px solid rgba(239, 208, 138, 0.1);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 14% 20%, rgba(239, 208, 138, 0.08), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.services-footer-contact .footer-contact-wrap {
  position: relative;
  z-index: 1;
}

.footer-consult-btn {
  width: auto;
  min-height: 42px;
  margin-top: 16px;
  padding: 11px 16px;
  font-size: 13px;
}

.about-page main {
  background:
    radial-gradient(circle at 18% 8%, rgba(199, 154, 59, 0.06), transparent 24%),
    linear-gradient(180deg, #061529 0%, #041022 48%, #03101f 100%);
}

.about-page-hero {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  padding: 136px 0 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: #061529;
}

.about-page-hero-media,
.about-page-hero::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-page-hero-media {
  background:
    linear-gradient(90deg, rgba(6, 21, 41, 0.98) 0%, rgba(6, 21, 41, 0.78) 38%, rgba(6, 21, 41, 0.36) 62%, rgba(6, 21, 41, 0.8) 100%),
    radial-gradient(circle at 72% 42%, rgba(239, 208, 138, 0.13), transparent 24%),
    url("assets/documents.jpg") center right / cover no-repeat;
  filter: saturate(0.78) contrast(1.08) brightness(0.78);
  transform: scale(1.02);
}

.about-page-hero::after {
  content: "";
  background:
    linear-gradient(rgba(239, 208, 138, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.016) 1px, transparent 1px),
    linear-gradient(180deg, transparent 70%, rgba(3, 12, 24, 0.68));
  background-size: 86px 86px, 86px 86px, auto;
  opacity: 0.62;
}

.about-page-hero-brand {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  top: 50%;
  z-index: 1;
  width: min(38vw, 430px);
  min-width: 290px;
  pointer-events: none;
  opacity: 0.2;
  filter: drop-shadow(0 0 46px rgba(199, 154, 59, 0.14));
  transform: translateY(-35%);
}

.about-page-hero-brand img {
  opacity: 0.72;
  filter: blur(0.3px) saturate(0.72);
  mix-blend-mode: screen;
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 78%);
}

.about-page-hero-grid {
  position: relative;
  z-index: 2;
}

.about-page-hero-content {
  max-width: 660px;
}

.about-page-hero-content h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: 0;
}

.about-page-hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(234, 240, 247, 0.76);
  font-size: 17px;
  line-height: 1.8;
}

.about-page-hero-btn,
.about-page-letters-btn {
  width: fit-content;
  min-height: 46px;
  padding: 12px 18px;
}

.about-page-section {
  padding: 44px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page-section-title h2,
.about-timeline-column h2,
.about-page-letters-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
}

.about-page-trust-grid {
  display: grid;
  gap: 18px;
}

.about-page-trust-card {
  min-height: 188px;
  padding: 24px;
  border: 1px solid rgba(170, 199, 232, 0.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at 14% 12%, rgba(239, 208, 138, 0.055), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(6, 21, 41, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 18px 42px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-page-trust-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 208, 138, 0.28);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.2), 0 0 24px rgba(199, 154, 59, 0.055);
}

.about-page-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--gold-soft);
}

.about-page-icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-page-trust-card h3 {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px;
  line-height: 1.28;
}

.about-page-trust-card p {
  margin: 0;
  color: rgba(234, 240, 247, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

.about-approach-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0 0 0 48px;
  list-style: none;
}

.about-timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(239, 208, 138, 0.78), rgba(239, 208, 138, 0.12));
}

.about-timeline li {
  position: relative;
}

.about-timeline li::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 5px;
  width: 11px;
  height: 11px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: #061529;
  box-shadow: 0 0 0 4px rgba(239, 208, 138, 0.04);
}

.about-timeline h3 {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 1.28;
}

.about-timeline p {
  max-width: 500px;
  margin: 0;
  color: rgba(234, 240, 247, 0.62);
  font-size: 14px;
  line-height: 1.62;
}

.about-quote-card {
  min-height: 278px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(170, 199, 232, 0.13);
  border-radius: 10px;
  background:
    radial-gradient(circle at 16% 14%, rgba(239, 208, 138, 0.07), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.056), rgba(255, 255, 255, 0.014)),
    rgba(6, 21, 41, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.058), 0 20px 56px rgba(0, 0, 0, 0.18);
}

.about-quote-card > span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 66px;
  font-weight: 800;
  line-height: 0.7;
}

.about-quote-card p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(234, 240, 247, 0.78);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.55;
}

.about-quote-card strong {
  display: block;
  padding-top: 18px;
  border-top: 1px solid rgba(239, 208, 138, 0.18);
  color: rgba(234, 240, 247, 0.68);
  font-size: 14px;
}

.about-page-letters-grid {
  display: grid;
  gap: 30px;
  align-items: end;
}

.about-page-letters-copy p {
  max-width: 390px;
  margin-bottom: 24px;
  color: rgba(234, 240, 247, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.about-page-letter-previews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-page-letter-card {
  display: grid;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(170, 199, 232, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.016)),
    rgba(4, 17, 33, 0.46);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.052), 0 14px 36px rgba(0, 0, 0, 0.18);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.about-page-letter-card:hover,
.about-page-letter-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 208, 138, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24), 0 0 22px rgba(199, 154, 59, 0.06);
  outline: 0;
}

.about-page-letter-card span {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border: 1px solid rgba(239, 208, 138, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.about-page-letter-card img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.86) contrast(1.06);
}

.about-page-letter-card strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.about-page-letter-card small {
  color: rgba(234, 240, 247, 0.52);
  font-size: 11px;
  font-weight: 700;
}

.about-page-letter-previews:has(.about-page-letter-card:nth-child(5)) {
  gap: 12px;
}

.advantages-section {
  background: linear-gradient(180deg, var(--navy), #081a32);
}

.advantages-section::before,
.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 50%, rgba(239, 208, 138, 0.055) 50% 50.1%, transparent 50.1%),
    radial-gradient(circle at 12% 18%, rgba(199, 154, 59, 0.08), transparent 26%);
}

.image-card-grid,
.process-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
}

.image-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.image-card:hover,
.process-card:hover {
  border-color: rgba(239, 208, 138, 0.38);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.28);
}

.image-card img {
  height: 360px;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}

.image-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 28%, rgba(6, 21, 41, 0.96) 100%);
}

.image-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
}

.image-card span,
.process-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-card h3,
.image-card p,
.process-card h3,
.process-card p {
  position: relative;
  z-index: 1;
}

.image-card p {
  margin-bottom: 0;
}

.process-section {
  background:
    radial-gradient(circle at 88% 16%, rgba(199, 154, 59, 0.12), transparent 26%),
    linear-gradient(180deg, #081a32, #061529 100%);
  color: var(--text);
}

.process-section .eyebrow {
  color: var(--gold-soft);
}

.process-section .section-heading p,
.process-card p {
  color: rgba(234, 240, 247, 0.7);
}

.process-grid {
  align-items: stretch;
}

.process-card {
  display: grid;
  min-height: 430px;
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  color: var(--text);
}

.process-card::before {
  background: linear-gradient(180deg, transparent 18%, rgba(6, 21, 41, 0.98) 76%);
}

.process-card img {
  height: 250px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.process-card div {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 24px;
}

.process-card span {
  color: var(--gold-soft);
}

.process-card p {
  margin-bottom: 0;
}

.featured-step {
  background: var(--navy);
  color: var(--white);
  border-color: rgba(199, 154, 59, 0.3);
}

.featured-step::before {
  background: linear-gradient(180deg, transparent 12%, rgba(6, 21, 41, 0.98) 76%);
}

.featured-step p {
  color: rgba(234, 240, 247, 0.72);
}

.about-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #061529, #0b213d 58%, #061529);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 208, 138, 0.14), transparent 26%),
    radial-gradient(circle at 80% 24%, rgba(239, 208, 138, 0.07), transparent 30%),
    radial-gradient(circle at 84% 18%, rgba(18, 52, 93, 0.34), transparent 34%),
    linear-gradient(110deg, rgba(6, 21, 41, 0.9) 0%, rgba(6, 21, 41, 0.58) 54%, rgba(6, 21, 41, 0.84) 100%),
    linear-gradient(rgba(239, 208, 138, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, auto, 96px 96px, 96px 96px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.about-section::after {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 21, 41, 0.94) 0%, rgba(6, 21, 41, 0.5) 48%, rgba(6, 21, 41, 0.86) 100%),
    url("assets/documents.jpg") center right / cover no-repeat;
  filter: blur(0.8px) saturate(0.82) contrast(1.02);
  opacity: 0.52;
  transform: scale(1.025);
}

.about-brand-watermark {
  position: absolute;
  right: max(18px, calc((100vw - 1160px) / 2));
  top: auto;
  bottom: -58px;
  z-index: 1;
  width: min(46vw, 590px);
  min-width: 320px;
  pointer-events: none;
  opacity: 0.22;
  transform: translate3d(0, 0, 0);
  filter: drop-shadow(0 0 60px rgba(199, 154, 59, 0.18));
  animation: brandFloat 14s ease-in-out infinite alternate;
  will-change: transform;
}

.about-brand-watermark::before,
.about-brand-watermark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-brand-watermark::before {
  inset: -12% -18% -18%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 54% 58%, rgba(239, 208, 138, 0.22), transparent 38%),
    radial-gradient(circle at 74% 34%, rgba(18, 52, 93, 0.28), transparent 42%);
  filter: blur(32px);
  opacity: 0.86;
}

.about-brand-watermark::after {
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 28%, rgba(239, 208, 138, 0.04) 42%, rgba(244, 216, 146, 0.34) 49%, rgba(239, 208, 138, 0.04) 56%, transparent 70%);
  mix-blend-mode: screen;
  animation: brandLightSweep 8.5s ease-in-out infinite;
}

.about-brand-watermark img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin-left: auto;
  opacity: 0.76;
  filter: blur(0.5px) saturate(0.8) contrast(0.92);
  mix-blend-mode: screen;
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 18%, #000 42%, #000 78%, transparent 100%),
    radial-gradient(ellipse at 50% 58%, #000 42%, rgba(0, 0, 0, 0.72) 60%, transparent 82%),
    linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 18%, #000 42%, #000 78%, transparent 100%),
    radial-gradient(ellipse at 50% 58%, #000 42%, rgba(0, 0, 0, 0.72) 60%, transparent 82%),
    linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.about-company {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 26px;
}

.about-company::before,
.about-company::after {
  content: "";
  position: absolute;
  display: none;
  pointer-events: none;
}

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

.about-copy h2 {
  max-width: 840px;
  margin-bottom: 18px;
}

.about-copy p {
  max-width: 820px;
  color: rgba(234, 240, 247, 0.72);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-intro {
  display: grid;
  gap: 22px;
}

.about-proof-layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 22px;
  align-items: center;
}

.consult-widget {
  position: relative;
  width: min(100%, 405px);
  justify-self: start;
  perspective: 1200px;
}

.consult-widget::before,
.consult-widget::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(26px);
}

.consult-widget::before {
  inset: 6% -12% auto auto;
  width: 160px;
  height: 160px;
  background: rgba(239, 208, 138, 0.12);
}

.consult-widget::after {
  left: -10%;
  bottom: 8%;
  width: 180px;
  height: 180px;
  background: rgba(18, 52, 93, 0.36);
}

.phone-shell {
  position: relative;
  z-index: 1;
  max-width: 365px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(239, 208, 138, 0.14);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 16%),
    linear-gradient(160deg, #111820, #020914 56%, #151f28);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, 0.34),
    0 0 40px rgba(199, 154, 59, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateX(0deg) rotateY(-5deg);
  animation: phoneFloat 9s ease-in-out infinite alternate;
}

.chat-thread-fields {
  display: flex;
  flex: 1 1 auto;
  min-height: 0;
  flex-direction: column;
  gap: 8px;
}

.phone-reflection {
  position: absolute;
  inset: 8px 22px auto auto;
  width: 38%;
  height: 34%;
  border-radius: 40px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 58%);
  opacity: 0.26;
  filter: blur(0.2px);
}

.phone-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 606px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(239, 208, 138, 0.1), transparent 26%),
    radial-gradient(circle at 94% 72%, rgba(18, 52, 93, 0.42), transparent 30%),
    linear-gradient(180deg, rgba(9, 28, 53, 0.96), rgba(4, 12, 24, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.1), transparent 28%, transparent 64%, rgba(239, 208, 138, 0.055)),
    linear-gradient(rgba(239, 208, 138, 0.025) 1px, transparent 1px);
  background-size: auto, 100% 72px;
  opacity: 0.82;
}

.phone-status-bar {
  position: absolute;
  top: 9px;
  left: 18px;
  right: 18px;
  z-index: 3;
  display: flex;
  height: 22px;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  color: rgba(243, 247, 252, 0.88);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.phone-status-time {
  min-width: 42px;
  text-align: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.34);
}

.phone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(243, 247, 252, 0.82);
}

.signal-icon {
  display: inline-flex;
  height: 11px;
  align-items: flex-end;
  gap: 1.5px;
}

.signal-icon span {
  display: block;
  width: 2.2px;
  border-radius: 2px;
  background: currentColor;
}

.signal-icon span:nth-child(1) {
  height: 4px;
}

.signal-icon span:nth-child(2) {
  height: 6px;
}

.signal-icon span:nth-child(3) {
  height: 8px;
}

.signal-icon span:nth-child(4) {
  height: 10px;
}

.wifi-icon {
  width: 15px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.battery-icon {
  position: relative;
  display: inline-flex;
  width: 20px;
  height: 10px;
  align-items: center;
  padding: 1.4px;
  border: 1.4px solid currentColor;
  border-radius: 3px;
  opacity: 0.92;
}

.battery-icon::after {
  content: "";
  position: absolute;
  right: -3.4px;
  width: 1.8px;
  height: 4.8px;
  border-radius: 0 2px 2px 0;
  background: currentColor;
}

.battery-icon span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.5px;
  background: currentColor;
}

.dynamic-island {
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 22px;
  border-radius: 999px;
  background: rgba(1, 4, 9, 0.96);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 6px 18px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.chat-header {
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 34px 17px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.018);
}

.chat-avatar {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.34);
  border-radius: 50%;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-weight: 700;
  background: rgba(239, 208, 138, 0.055);
  box-shadow: 0 0 0 5px rgba(239, 208, 138, 0.03);
}

.chat-header span:not(.chat-avatar) {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.chat-header small {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  color: rgba(158, 207, 141, 0.78);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.chat-header small::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9ecf8d;
  box-shadow: 0 0 10px rgba(158, 207, 141, 0.36);
}

.chat-thread {
  position: relative;
  flex: 1 1 auto;
  z-index: 1;
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 10px;
}

.chat-thread::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg width='156' height='156' viewBox='0 0 156 156' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d4b36a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' opacity='.22'%3E%3Cpath d='M18 34h21v16H18zM18 34l10.5-8L39 34M64 22h18l8 8v24H64zM82 22v9h8M68 38h16M68 45h12M118 30a13 13 0 1 0 0 26 13 13 0 0 0 0-26ZM105 43h26M118 30c4 4 6 8 6 13s-2 9-6 13M118 30c-4 4-6 8-6 13s2 9 6 13M26 104c22-22 47-22 74 0M100 104l-9-1 6-7M35 96l-6 7 9 1M114 104h20M124 93v22M116 112h16M60 112h24v18H60zM60 112l12-8 12 8M21 132h23M28 122h9l7 10H21l7-10ZM113 128l20-8-7 18-4-7-9-3Z'/%3E%3C/g%3E%3C/svg%3E"),
    radial-gradient(circle at 12% 18%, rgba(239, 208, 138, 0.055), transparent 24%),
    radial-gradient(circle at 88% 74%, rgba(18, 52, 93, 0.16), transparent 28%);
  background-position: 0 0, center, center;
  background-size: 156px 156px, auto, auto;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.chat-bubble,
.chat-reply {
  animation: chatSlideIn 0.62s ease both;
}

.company-message-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  max-width: 100%;
}

.message-avatar {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.12), transparent 34%),
    rgba(239, 208, 138, 0.055);
  color: rgba(239, 208, 138, 0.86);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 0 0 4px rgba(239, 208, 138, 0.025), 0 10px 22px rgba(0, 0, 0, 0.18);
}

.company-bubble {
  position: relative;
  max-width: calc(100% - 38px);
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 19px 19px 19px 7px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.032) 58%, rgba(7, 23, 43, 0.28)),
    rgba(10, 30, 55, 0.48);
  color: rgba(240, 245, 251, 0.9);
  font-size: 13px;
  line-height: 1.45;
  backdrop-filter: blur(14px) saturate(132%);
  -webkit-backdrop-filter: blur(14px) saturate(132%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035),
    0 16px 38px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(18, 52, 93, 0.12);
}

.company-bubble::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -4px;
  width: 12px;
  height: 12px;
  border-radius: 0 0 0 10px;
  background: rgba(32, 54, 80, 0.58);
  box-shadow: inset 1px -1px 0 rgba(255, 255, 255, 0.055);
}

.typing-indicator {
  display: none;
  align-items: center;
  gap: 5px;
  min-width: 42px;
  min-height: 19px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(239, 208, 138, 0.78);
  box-shadow: 0 0 12px rgba(199, 154, 59, 0.22);
  animation: typingDot 1.15s ease-in-out infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.32s;
}

.company-bubble.is-typing .company-message {
  display: none;
}

.company-bubble.is-typing .typing-indicator {
  display: inline-flex;
}

.company-bubble.is-message-ready .company-message {
  opacity: 1;
  animation: chatSlideIn 0.42s ease both;
  transition: opacity 0.5s ease;
}

.company-bubble.is-fading .company-message {
  opacity: 0;
}

.company-bubble.is-writing .company-message::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 2px;
  vertical-align: -0.12em;
  background: rgba(239, 208, 138, 0.72);
  box-shadow: 0 0 8px rgba(199, 154, 59, 0.18);
  animation: typingCaret 0.9s ease-in-out infinite;
}

.chat-consult-form {
  display: block;
  max-width: 342px;
  margin: 12px auto 0;
}

.chat-reply {
  position: relative;
  display: grid;
  gap: 3px;
  margin-left: auto;
  width: min(90%, 292px);
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 19px 19px 7px 19px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.13), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.024) 58%, rgba(7, 23, 43, 0.34)),
    rgba(7, 23, 43, 0.7);
  backdrop-filter: blur(13px) saturate(126%);
  -webkit-backdrop-filter: blur(13px) saturate(126%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03),
    0 14px 32px rgba(0, 0, 0, 0.22);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.chat-reply::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -4px;
  width: 12px;
  height: 12px;
  border-radius: 0 0 10px 0;
  background: rgba(17, 38, 66, 0.66);
  box-shadow: inset -1px -1px 0 rgba(255, 255, 255, 0.05);
}

.chat-reply:nth-child(2) {
  animation-delay: 0.08s;
}

.chat-reply:nth-child(3) {
  animation-delay: 0.16s;
}

.chat-reply span {
  color: rgba(234, 240, 247, 0.54);
  font-size: 9.8px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: none;
}

.chat-reply input,
.chat-reply textarea {
  width: 100%;
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  resize: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.94);
  font: inherit;
  font-size: 13px;
  line-height: 1.32;
}

.chat-reply input::placeholder,
.chat-reply textarea::placeholder {
  color: rgba(234, 240, 247, 0.34);
}

.chat-reply textarea {
  min-height: 37px;
}

.chat-reply input:focus,
.chat-reply textarea:focus {
  box-shadow: none;
}

.chat-reply:focus-within {
  border-color: rgba(239, 208, 138, 0.44);
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(239, 208, 138, 0.075), rgba(255, 255, 255, 0.03) 58%, rgba(7, 23, 43, 0.34)),
    rgba(7, 23, 43, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 16px 38px rgba(0, 0, 0, 0.26),
    0 0 20px rgba(199, 154, 59, 0.105);
}

.chat-reply:focus-within span {
  color: rgba(239, 208, 138, 0.82);
}

.chat-reply:has(.is-invalid) {
  border-color: rgba(255, 121, 121, 0.45);
}

.chat-file-preview {
  display: flex;
  width: min(90%, 292px);
  min-height: 32px;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  padding: 6px 7px 6px 11px;
  border: 1px solid rgba(239, 208, 138, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 16%, rgba(255, 255, 255, 0.11), transparent 34%),
    linear-gradient(145deg, rgba(239, 208, 138, 0.09), rgba(255, 255, 255, 0.024)),
    rgba(7, 23, 43, 0.66);
  color: rgba(234, 240, 247, 0.78);
  font-size: 11.5px;
  line-height: 1.2;
  backdrop-filter: blur(12px) saturate(124%);
  -webkit-backdrop-filter: blur(12px) saturate(124%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(0, 0, 0, 0.18);
}

.chat-file-preview[hidden] {
  display: none;
}

.chat-file-preview span:first-child {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-file-preview button {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(239, 208, 138, 0.84);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.chat-file-preview button:hover,
.chat-file-preview button:focus-visible {
  border-color: rgba(239, 208, 138, 0.34);
  background: rgba(239, 208, 138, 0.12);
  color: rgba(255, 244, 207, 0.95);
  outline: 0;
}

.chat-compose {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 5px 5px 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.022)),
    rgba(3, 12, 24, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 12px 30px rgba(0, 0, 0, 0.16);
}

.chat-attach {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  place-items: center;
  color: rgba(239, 208, 138, 0.64);
  cursor: pointer;
  opacity: 0.82;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.chat-attach:hover,
.chat-attach:focus-within {
  color: rgba(255, 224, 157, 0.94);
  opacity: 1;
  transform: translateY(-1px);
}

.chat-attach input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chat-attach svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-compose > span:not(.chat-attach) {
  flex: 1;
  color: rgba(234, 240, 247, 0.58);
  font-size: 12.5px;
  line-height: 1;
}

.chat-send-button {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(255, 244, 207, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 24%, rgba(255, 255, 255, 0.42), transparent 22%),
    linear-gradient(135deg, #f4d892, #c79a3b);
  color: var(--navy);
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(199, 154, 59, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.32), inset 0 -1px 0 rgba(70, 43, 8, 0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.chat-send-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
  transform: translateX(1px);
}

.chat-send-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(199, 154, 59, 0.32), 0 0 0 1px rgba(239, 208, 138, 0.22);
}

.chat-send-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.chat-send-button.is-loading {
  transform: none;
  box-shadow: 0 8px 22px rgba(199, 154, 59, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.send-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chat-form-message {
  min-height: 18px;
  margin: 0;
  color: rgba(234, 240, 247, 0.62);
  font-size: 12px;
}

.user-sent-bubble,
.success-bubble {
  display: none;
  max-width: 92%;
  margin-left: auto;
  padding: 12px 13px;
  font-size: 13px;
  line-height: 1.45;
}

.user-sent-bubble {
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: 19px 19px 7px 19px;
  background:
    linear-gradient(145deg, rgba(239, 208, 138, 0.095), rgba(255, 255, 255, 0.026)),
    rgba(7, 23, 43, 0.7);
  color: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.success-bubble {
  border: 1px solid rgba(158, 207, 141, 0.28);
  border-radius: 19px 19px 7px 19px;
  background: rgba(51, 91, 59, 0.22);
  color: rgba(219, 242, 207, 0.9);
  box-shadow: 0 0 28px rgba(158, 207, 141, 0.08);
}

.consult-phone-widget.is-success .user-sent-bubble,
.consult-phone-widget.is-success .success-bubble {
  display: block;
  animation: chatSlideIn 0.5s ease both;
}

.consult-phone-widget.is-success .success-bubble {
  animation-delay: 0.14s;
}

.consult-phone-widget.is-success .chat-form-message.is-success {
  display: none;
}

.about-trust-grid {
  display: grid;
  gap: 10px;
}

.about-trust-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 4px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    rgba(6, 21, 41, 0.22);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(14px);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.about-trust-card:hover {
  transform: translateY(-2px);
  border-color: rgba(239, 208, 138, 0.28);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.2), 0 0 22px rgba(199, 154, 59, 0.055);
}

.about-trust-card span {
  display: grid;
  grid-row: span 2;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.36);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(239, 208, 138, 0.045);
}

.about-trust-card h3 {
  max-width: 360px;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.25;
}

.about-trust-card p {
  margin-bottom: 0;
  color: rgba(234, 240, 247, 0.6);
  font-size: 13px;
  line-height: 1.48;
}

.recommendation-letters {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(100%, 690px);
  margin-top: 0;
  transform: translateY(clamp(-18px, -1.4vw, -8px));
  padding: clamp(16px, 2vw, 22px);
  border: 1px solid rgba(170, 199, 232, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 8%, rgba(239, 208, 138, 0.07), transparent 29%),
    radial-gradient(circle at 14% 92%, rgba(82, 126, 176, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    rgba(2, 10, 21, 0.52);
  box-shadow:
    0 28px 74px rgba(0, 0, 0, 0.28),
    0 0 38px rgba(82, 126, 176, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(22px) saturate(118%);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
}

.recommendation-letters::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%);
  opacity: 0.7;
}

.recommendation-heading,
.recommendation-grid {
  position: relative;
  z-index: 1;
}

.recommendation-heading {
  max-width: 560px;
  margin-bottom: 16px;
}

.recommendation-heading h3 {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
}

.recommendation-heading p {
  margin: 0;
  color: rgba(234, 240, 247, 0.64);
  font-size: 14px;
  line-height: 1.55;
}

.recommendation-grid {
  display: grid;
  gap: 13px;
}

.recommendation-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  min-height: 102px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 11px;
  border: 1px solid rgba(207, 225, 244, 0.11);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.09), transparent 34%),
    radial-gradient(circle at 92% 80%, rgba(239, 208, 138, 0.042), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018) 58%, rgba(8, 29, 53, 0.12)),
    rgba(5, 20, 39, 0.42);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.105),
    inset 0 -1px 0 rgba(255, 255, 255, 0.026),
    0 16px 38px rgba(0, 0, 0, 0.18),
    0 0 26px rgba(82, 126, 176, 0.04);
  backdrop-filter: blur(16px) saturate(124%);
  -webkit-backdrop-filter: blur(16px) saturate(124%);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.recommendation-card-wide {
  min-height: 92px;
}

.recommendation-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent 28%),
    linear-gradient(120deg, transparent 42%, rgba(239, 208, 138, 0.045) 52%, transparent 64%);
  opacity: 0.72;
}

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

.recommendation-card:hover,
.recommendation-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(239, 208, 138, 0.28);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 92% 80%, rgba(239, 208, 138, 0.07), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.088), rgba(255, 255, 255, 0.024) 58%, rgba(8, 29, 53, 0.16)),
    rgba(6, 24, 45, 0.52);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 28px rgba(82, 126, 176, 0.1),
    0 0 22px rgba(199, 154, 59, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  outline: 0;
}

.recommendation-thumb {
  position: relative;
  display: block;
  width: 64px;
  height: 82px;
  overflow: hidden;
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(234, 240, 247, 0.08);
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.recommendation-thumb::before,
.recommendation-thumb::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.recommendation-thumb::before {
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(180deg, transparent 62%, rgba(2, 10, 21, 0.16));
}

.recommendation-thumb::after {
  top: 7px;
  right: 7px;
  z-index: 3;
  width: 13px;
  height: 13px;
  border-radius: 0 0 0 6px;
  background:
    linear-gradient(135deg, rgba(239, 208, 138, 0.28), rgba(255, 255, 255, 0.08));
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.16);
}

.recommendation-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.84) contrast(1.12) brightness(1);
  transform: scale(1.01);
}

.recommendation-meta {
  min-width: 0;
}

.recommendation-meta strong {
  display: block;
  margin-bottom: 5px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recommendation-meta small {
  display: block;
  color: rgba(234, 240, 247, 0.52);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.25;
}

.recommendation-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border: 1px solid rgba(239, 208, 138, 0.14);
  border-radius: 999px;
  color: rgba(239, 208, 138, 0.76);
  font-size: 10.4px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  background:
    linear-gradient(145deg, rgba(239, 208, 138, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(3, 12, 24, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contact-capsules {
  display: grid;
  gap: 6px;
}

.contact-capsules a,
.footer-address-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(234, 240, 247, 0.68);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: none;
  transition: color 0.2s ease;
}

.contact-capsules a:hover {
  color: var(--gold-soft);
}

.footer-address-row {
  cursor: default;
}

.footer-contact-section {
  position: relative;
  padding: clamp(30px, 3.4vw, 44px) 0 18px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 14% 0%, rgba(199, 154, 59, 0.07), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(76, 115, 158, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(4, 14, 29, 0.98), rgba(3, 11, 23, 1));
}

.footer-contact-section::before,
.footer-contact-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.footer-contact-section::before {
  inset: 0 max(16px, calc((100vw - 1160px) / 2)) auto;
  height: 1px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent, rgba(239, 208, 138, 0.28), rgba(139, 164, 194, 0.22), transparent);
  opacity: 0.9;
}

.footer-contact-section::after {
  right: 7%;
  bottom: 6%;
  width: min(42vw, 520px);
  height: 86px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(93, 139, 188, 0.1), transparent);
  filter: blur(24px);
  opacity: 0.46;
}

.footer-contact-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
}

.footer-contact-heading {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.footer-contact-heading .logo-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
}

.footer-contact-heading strong {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.2;
}

.footer-contact-heading p {
  margin: 0;
  color: rgba(239, 208, 138, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.footer-brand-panel,
.footer-links-panel,
.footer-contact-panel {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.footer-brand-panel::after,
.footer-contact-panel::after {
  content: none;
}

.footer-brand-panel {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 0;
}

.footer-description {
  max-width: 360px;
  margin: 0;
  color: rgba(234, 240, 247, 0.66);
  font-size: 12.5px;
  line-height: 1.5;
}

.footer-trust {
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(239, 208, 138, 0.68);
  font-size: 11.5px;
  font-weight: 800;
  background: transparent;
}

.footer-legal {
  margin: 0;
  color: rgba(234, 240, 247, 0.5);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.45;
}

.footer-copy {
  margin: auto 0 0;
  color: rgba(234, 240, 247, 0.42);
  font-size: 12px;
}

.footer-links-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 30px);
  padding: 0;
}

.footer-link-group,
.footer-contact-panel {
  display: grid;
  align-content: start;
}

.footer-link-group {
  gap: 5px;
}

.footer-link-group h3,
.footer-contact-panel h3 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.02em;
}

.footer-link-group a {
  width: fit-content;
  color: rgba(234, 240, 247, 0.58);
  font-size: 12.5px;
  font-weight: 700;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link-group a:hover,
.footer-link-group a:focus-visible {
  color: var(--gold-soft);
  transform: translateX(2px);
  outline: 0;
}

.footer-contact-panel {
  gap: 8px;
  padding: 0;
}

.contact-icon {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: 50%;
  color: rgba(239, 208, 138, 0.74);
  font-size: 13px;
  line-height: 1;
  background: rgba(199, 154, 59, 0.045);
}

.contact-icon svg {
  width: 10px;
  height: 10px;
  display: block;
  fill: currentColor;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  padding: 18px;
  overflow-y: auto;
}

.letter-lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  padding: 18px;
  overflow-y: auto;
}

.letter-lightbox.is-open {
  display: grid;
  place-items: center;
}

.letter-lightbox-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(18, 52, 93, 0.3), transparent 42%),
    rgba(1, 6, 14, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.letter-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(940px, 100%);
  max-height: calc(100vh - 36px);
  overflow: hidden;
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 12%, rgba(239, 208, 138, 0.12), transparent 26%),
    linear-gradient(145deg, rgba(16, 41, 74, 0.95), rgba(3, 12, 24, 0.98));
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.58), 0 0 44px rgba(18, 52, 93, 0.28);
}

.letter-lightbox-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(3, 12, 24, 0.62);
  color: rgba(255, 255, 255, 0.86);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

.letter-lightbox-close:hover,
.letter-lightbox-close:focus-visible {
  border-color: rgba(239, 208, 138, 0.42);
  color: var(--gold-soft);
  background: rgba(6, 21, 41, 0.78);
  outline: 0;
}

.letter-lightbox-heading {
  padding: 20px 66px 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.letter-lightbox-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
}

.letter-lightbox-image {
  max-height: calc(100vh - 150px);
  overflow: auto;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(1, 6, 14, 0.24);
}

.letter-lightbox-image img {
  display: block;
  width: min(100%, 760px);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.modal.is-open {
  display: grid;
  align-items: center;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 8, 18, 0.76);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin: auto;
  padding: 26px;
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 84% 12%, rgba(199, 154, 59, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(16, 41, 74, 0.94), rgba(6, 21, 41, 0.96));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.48);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.modal-close:hover {
  border-color: rgba(239, 208, 138, 0.38);
  opacity: 0.82;
}

.modal-heading {
  max-width: 620px;
  margin-bottom: 24px;
  padding-right: 46px;
}

.modal-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(28px, 5vw, 42px);
}

.modal-heading p:last-child {
  margin-bottom: 0;
  color: rgba(234, 240, 247, 0.72);
}

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

.form-grid {
  display: grid;
  gap: 14px;
}

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

.request-form label span {
  color: rgba(234, 240, 247, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.request-form input {
  min-height: 50px;
  padding: 12px 14px;
}

.request-form textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(239, 208, 138, 0.58);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(199, 154, 59, 0.1);
}

.request-form input.is-invalid,
.request-form textarea.is-invalid {
  border-color: rgba(255, 122, 122, 0.72);
}

.chat-consult-form.chat-consult-form {
  display: block;
}

.chat-consult-form.chat-consult-form label {
  gap: 3px;
}

.chat-consult-form.chat-consult-form label span {
  color: rgba(234, 240, 247, 0.54);
  font-size: 9.8px;
  font-weight: 700;
}

.chat-consult-form.chat-consult-form input,
.chat-consult-form.chat-consult-form textarea {
  min-height: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.chat-consult-form.chat-consult-form textarea {
  min-height: 37px;
  resize: none;
}

.chat-consult-form.chat-consult-form .chat-attach input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.chat-consult-form.chat-consult-form input:focus,
.chat-consult-form.chat-consult-form textarea:focus {
  background: transparent;
  box-shadow: none;
}

.chat-consent {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
  padding: 0 4px;
  color: rgba(201, 214, 229, 0.68);
  font-size: 9.6px;
  font-weight: 650;
  line-height: 1.35;
}

.chat-consent input {
  width: 12px;
  min-width: 12px;
  height: 12px;
  min-height: 12px;
  margin: 1px 0 0;
  accent-color: var(--gold);
}

.file-field input {
  padding: 12px;
  color: rgba(234, 240, 247, 0.78);
}

.file-field small {
  color: rgba(234, 240, 247, 0.58);
  font-size: 13px;
  line-height: 1.45;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--gold-soft);
  font-size: 14px;
  font-weight: 700;
}

.form-message.is-error {
  color: #ffb4b4;
}

.form-message.is-success {
  color: #d9f2c7;
}

.form-submit {
  width: 100%;
}

.site-footer {
  padding: 0;
  background:
    radial-gradient(circle at 24% 0%, rgba(76, 115, 158, 0.14), transparent 28%),
    #030b17;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
  padding: 12px 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(234, 240, 247, 0.46);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

@media (max-width: 719px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 106px;
    padding-bottom: 64px;
  }

  .services-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 74px;
  }

  .contacts-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .about-page-hero {
    min-height: auto;
    padding-top: 116px;
    padding-bottom: 56px;
  }

  .about-page-hero-content h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .about-page-hero-content p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.65;
  }

  .about-page-hero-brand {
    right: -120px;
    width: 360px;
    min-width: 0;
    opacity: 0.09;
  }

  .about-page-section {
    padding: 38px 0;
  }

  .about-page-trust-card {
    min-height: auto;
    padding: 18px;
  }

  .about-page-letter-previews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    margin-bottom: 18px;
    font-size: clamp(32px, 9.6vw, 42px);
    font-weight: 620;
    line-height: 1.12;
    letter-spacing: 0;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  }

  h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .hero-text,
  .section-heading p,
  .about-copy p {
    font-size: 16px;
    line-height: 1.58;
  }

  .hero-text {
    max-width: 28rem;
    margin-bottom: 12px;
  }

  .services-hero-content h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .services-hero-content p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .services-hero-content .btn {
    width: 100%;
  }

  .contacts-hero-content p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.58;
  }

  .contacts-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contacts-info-card,
  .contacts-request-card {
    padding: 20px;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .route-card .btn {
    width: 100%;
  }

  .hero-slogan {
    max-width: 28rem;
    margin: 16px 0 26px;
    padding-left: 16px;
    font-size: 17px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding: 15px 18px;
  }

  .info-card,
  .service-card,
  .about-trust-card {
    padding: 16px;
  }

  .service-card {
    min-height: auto;
    gap: 14px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .about-brand-watermark {
    right: -132px;
    top: auto;
    bottom: -46px;
    width: 420px;
    min-width: 0;
    opacity: 0.12;
  }

  .consult-widget {
    width: min(100%, 366px);
    justify-self: center;
  }

  .recommendation-letters {
    padding: 16px;
  }

  .recommendation-card {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .recommendation-link {
    grid-column: 2;
    justify-self: start;
  }

  .phone-shell {
    max-width: 344px;
    padding: 8px;
    border-radius: 36px;
    transform: none;
    animation: none;
  }

  .phone-screen {
    min-height: 548px;
    border-radius: 30px;
  }

  .chat-header {
    padding: 33px 16px 10px;
  }

  .chat-thread {
    padding: 13px 13px 9px;
  }

  .chat-reply {
    width: 100%;
  }

  .chat-file-preview {
    width: 100%;
  }

  .contact-capsules {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-capsules a {
    width: 100%;
    justify-content: flex-start;
    min-height: 0;
  }

  .contact-capsules a span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .footer-contact-heading {
    align-items: flex-start;
  }

  .footer-contact-section {
    padding-top: 34px;
  }

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

  .footer-trust {
    width: 100%;
  }

  .about-copy p:first-of-type {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
  }

  .image-card p,
  .process-card p {
    font-size: 15px;
    line-height: 1.55;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.58), 0 1px 2px rgba(0, 0, 0, 0.42);
  }

  .image-card::before {
    background:
      linear-gradient(180deg, transparent 18%, rgba(6, 21, 41, 0.6) 54%, rgba(6, 21, 41, 0.98) 100%);
  }

  .process-card::before {
    background:
      linear-gradient(180deg, transparent 8%, rgba(6, 21, 41, 0.58) 46%, rgba(6, 21, 41, 0.98) 78%);
  }

  .modal {
    align-items: start;
    padding: 12px;
  }

  .modal-dialog {
    padding: 20px;
  }

  .modal-heading {
    padding-right: 44px;
  }
}

@media (min-width: 720px) {
  .section {
    padding: 104px 0;
  }

  .image-card-grid,
  .process-grid,
  .about-trust-grid,
  .product-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .recommendation-card-wide {
    grid-column: 1 / -1;
  }

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

  .contacts-main-grid {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    align-items: start;
  }

  .contacts-map-layout {
    grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  }

  .product-categories-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .about-page-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-approach-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  }

  .about-page-letters-grid {
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 0.9fr);
  }

  .footer-inner {
    display: flex;
    justify-content: space-between;
  }

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

  .form-wide {
    grid-column: 1 / -1;
  }
}

@media (min-width: 940px) {
  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    order: 3;
    display: flex;
    gap: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    padding: 10px 12px;
  }

  .language-switcher {
    order: 4;
    margin-left: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    align-items: center;
  }

  .contacts-hero-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  }

  .hero-dashboard {
    justify-self: end;
    width: min(390px, 100%);
  }

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

  .about-page-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-page-letter-previews {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .image-card {
    min-height: 440px;
  }

  .image-card img {
    height: 100%;
    min-height: 440px;
  }

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

  .about-company {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .about-company::before {
    right: -6%;
    bottom: -3%;
    z-index: 0;
    display: block;
    width: min(49vw, 560px);
    height: min(34vw, 390px);
    min-height: 280px;
    border-radius: 42%;
    background:
      radial-gradient(circle at 16% 70%, rgba(239, 208, 138, 0.42) 0 2px, transparent 3px),
      radial-gradient(circle at 38% 46%, rgba(239, 208, 138, 0.32) 0 1px, transparent 3px),
      radial-gradient(circle at 70% 28%, rgba(158, 207, 141, 0.2) 0 1px, transparent 3px),
      radial-gradient(circle at 82% 78%, rgba(239, 208, 138, 0.26) 0 1px, transparent 3px),
      linear-gradient(28deg, transparent 37%, rgba(239, 208, 138, 0.16) 37.4%, rgba(239, 208, 138, 0.16) 37.8%, transparent 38.2%),
      linear-gradient(136deg, transparent 46%, rgba(128, 159, 194, 0.12) 46.4%, rgba(128, 159, 194, 0.12) 46.8%, transparent 47.2%),
      linear-gradient(rgba(239, 208, 138, 0.052) 1px, transparent 1px),
      linear-gradient(90deg, rgba(239, 208, 138, 0.04) 1px, transparent 1px);
    background-size: 190px 190px, 220px 220px, 240px 240px, 180px 180px, 100% 100%, 100% 100%, 58px 58px, 58px 58px;
    filter: blur(0.2px) drop-shadow(0 0 28px rgba(199, 154, 59, 0.08));
    mask-image: radial-gradient(ellipse at 64% 62%, #000 0%, rgba(0, 0, 0, 0.78) 46%, transparent 74%);
    opacity: 0.48;
    animation: aboutDataFlow 18s ease-in-out infinite alternate;
    will-change: transform, opacity, background-position;
  }

  .about-company::after {
    right: -2%;
    bottom: 4%;
    z-index: 1;
    display: block;
    width: min(42vw, 460px);
    height: 170px;
    border-radius: 999px;
    background:
      linear-gradient(90deg, transparent 0%, rgba(239, 208, 138, 0.02) 28%, rgba(239, 208, 138, 0.2) 50%, rgba(239, 208, 138, 0.025) 70%, transparent 100%),
      linear-gradient(90deg, transparent 0%, rgba(134, 163, 194, 0.01) 30%, rgba(134, 163, 194, 0.09) 52%, transparent 82%);
    filter: blur(11px);
    mix-blend-mode: screen;
    opacity: 0;
    animation: aboutLightStreak 12s ease-in-out infinite;
    will-change: transform, opacity;
  }

  .about-intro {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    padding-top: 8px;
  }

  .about-proof-layout {
    grid-template-columns: minmax(320px, 405px) minmax(0, 1fr);
    gap: clamp(24px, 3.2vw, 38px);
    align-items: center;
  }

  .about-proof-layout .consult-widget {
    justify-self: start;
  }

  .about-trust-grid {
    position: relative;
    z-index: 2;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-self: start;
    gap: clamp(14px, 1.35vw, 18px);
    padding-top: 4px;
  }

  .footer-contact-wrap {
    grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr) minmax(280px, 0.78fr);
    align-items: stretch;
  }

  .process-card {
    grid-column: span 2;
  }

  .featured-step {
    grid-column: span 2;
  }

}

@media (min-width: 1180px) {
  .header-timezones {
    display: flex;
  }
}

@media (max-width: 380px) {
  .language-switcher {
    padding: 5px 7px;
    font-size: 10px;
  }
}

@media (min-width: 1180px) {
  .featured-step {
    grid-column: span 2;
  }
}

/* Compact premium Contacts page overrides */
.contacts-page .section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.contacts-page .contacts-hero {
  min-height: 430px;
  max-height: 500px;
  padding-top: 92px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contacts-page .contacts-hero-grid {
  gap: clamp(24px, 4vw, 56px);
}

.contacts-page .contacts-hero-content h1 {
  max-width: 610px;
  margin-bottom: 14px;
  font-size: clamp(40px, 5.4vw, 62px);
  line-height: 1.04;
}

.contacts-page .contacts-hero-content p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.62;
}

.contacts-page .contacts-hero-actions {
  margin-top: 26px;
  gap: 12px;
}

.contacts-page .contacts-hero-actions .btn {
  min-height: 48px;
  padding: 12px 18px;
}

.contacts-page .contacts-main-section,
.contacts-page .contacts-map-section,
.contacts-page .confidentiality-section {
  padding-top: 26px;
  padding-bottom: 26px;
}

.contacts-page .contacts-main-grid {
  gap: clamp(24px, 2.4vw, 32px);
  align-items: stretch;
}

.contacts-page .contacts-info-card,
.contacts-page .contacts-request-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-self: stretch;
  padding: clamp(30px, 2.7vw, 36px);
  border: 1px solid rgba(139, 164, 194, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(239, 208, 138, 0.07), transparent 27%),
    radial-gradient(circle at 8% 94%, rgba(76, 115, 158, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.026)),
    rgba(5, 20, 39, 0.62);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(76, 115, 158, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.065);
}

.contacts-page .contacts-info-card h2,
.contacts-page .contacts-card-heading h2,
.contacts-page .contacts-info-card .eyebrow,
.contacts-page .contacts-card-heading .eyebrow {
  margin-bottom: 10px;
}

.contacts-page .contacts-info-card h2,
.contacts-page .contacts-card-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.12;
}

.contacts-page .contacts-card-heading {
  margin-bottom: 20px;
}

.contacts-page .contacts-card-heading p:last-child {
  font-size: 14px;
  line-height: 1.5;
}

.contacts-page .contact-detail-list {
  display: grid;
  flex: 1;
  gap: clamp(18px, 2vw, 24px);
  margin-top: 24px;
  align-content: space-between;
}

.contacts-page .contact-detail-list > div {
  padding: 0;
  border-top: 0;
}

.contacts-page .contact-detail-list > div:first-child {
  border-top: 0;
}

.contacts-page .contact-detail-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding-inline: 0 !important;
}

.contacts-page .contact-detail-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.24);
  border-radius: 12px;
  color: var(--gold-soft);
  background:
    radial-gradient(circle at 30% 18%, rgba(239, 208, 138, 0.13), transparent 36%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 14px 30px rgba(0, 0, 0, 0.18);
}

.contacts-page .contact-detail-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}

.contacts-page .contact-detail-list span:not(.contact-detail-icon) {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.contacts-page .contact-detail-list a,
.contacts-page .contact-detail-list p {
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.36;
}

.contacts-page .contact-detail-list small {
  display: block;
  margin-top: 5px;
  color: rgba(201, 214, 229, 0.64);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.contacts-page .request-form {
  flex: 1;
  justify-content: space-between;
  gap: 14px;
}

.contacts-page .form-grid {
  gap: 12px;
}

.contacts-page .request-form label {
  gap: 6px;
}

.contacts-page .request-form label span {
  font-size: 13px;
}

.contacts-page .request-form input {
  min-height: 50px;
  padding: 12px 15px;
  border-color: rgba(139, 164, 194, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.026)),
    rgba(8, 27, 51, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contacts-page .request-form textarea {
  min-height: 118px;
  padding: 13px 15px;
  border-color: rgba(139, 164, 194, 0.18);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.026)),
    rgba(8, 27, 51, 0.56);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.contacts-page .form-submit {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 10px;
}

.contacts-page .form-submit span:last-child {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  line-height: 1;
}

.contacts-page .consent-field {
  display: flex !important;
  width: fit-content;
  max-width: 100%;
  flex-direction: row;
  align-items: center;
  gap: 9px !important;
  margin-top: 1px;
}

.contacts-page .consent-field input {
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  flex: 0 0 16px;
}

.contacts-page .consent-field span {
  display: inline;
  font-size: 12px !important;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.privacy-page {
  background:
    radial-gradient(circle at 76% 16%, rgba(199, 154, 59, 0.12), transparent 28%),
    linear-gradient(135deg, #061529, #081a32 68%, #050f1f);
}

.privacy-hero {
  min-height: auto;
  padding-top: 132px;
  padding-bottom: 52px;
  background:
    radial-gradient(circle at 80% 20%, rgba(239, 208, 138, 0.13), transparent 24%),
    linear-gradient(135deg, rgba(6, 21, 41, 0.98), rgba(8, 27, 51, 0.92));
}

.privacy-hero-content {
  max-width: 860px;
}

.privacy-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(234, 240, 247, 0.72);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.7;
}

.privacy-content-section {
  padding-top: 34px;
  padding-bottom: 54px;
}

.privacy-document {
  display: grid;
  gap: 26px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(139, 164, 194, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 0%, rgba(239, 208, 138, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.074), rgba(255, 255, 255, 0.028)),
    rgba(5, 20, 39, 0.62);
  box-shadow:
    0 28px 82px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.privacy-block {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-block h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.16;
}

.privacy-block p,
.privacy-block li {
  color: rgba(234, 240, 247, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.privacy-block p:last-child,
.privacy-block ul:last-child {
  margin-bottom: 0;
}

.privacy-block ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.privacy-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(239, 208, 138, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.privacy-meta strong {
  color: var(--gold-soft);
}

.privacy-meta span,
.privacy-meta a {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-meta a:hover {
  color: var(--gold-soft);
}

.contacts-page .contacts-map-panel {
  padding: clamp(20px, 2.2vw, 26px);
  border: 1px solid rgba(139, 164, 194, 0.2);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 208, 138, 0.08), transparent 23%),
    radial-gradient(circle at 72% 24%, rgba(76, 115, 158, 0.28), transparent 32%),
    linear-gradient(145deg, rgba(12, 34, 63, 0.82), rgba(4, 16, 32, 0.96));
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.34), 0 0 52px rgba(76, 115, 158, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.contacts-page .contacts-map-heading {
  margin-bottom: 12px;
}

.contacts-page .contacts-map-heading h2 {
  margin-bottom: 0;
  font-size: clamp(26px, 2.7vw, 36px);
}

.contacts-page .contacts-map-layout {
  gap: 14px;
  align-items: stretch;
}

.contacts-page .map-frame,
.contacts-page .map-frame iframe {
  min-height: 410px;
  max-height: 430px;
}

.contacts-page .map-frame {
  position: relative;
  border: 1px solid rgba(239, 208, 138, 0.2);
  border-radius: 20px;
  background: rgba(3, 13, 26, 0.76);
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.32), inset 0 -34px 70px rgba(76, 115, 158, 0.12), 0 20px 62px rgba(0, 0, 0, 0.3), 0 0 36px rgba(76, 115, 158, 0.14);
}

.contacts-page .map-frame::before,
.contacts-page .map-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}

.contacts-page .map-frame::before {
  background:
    linear-gradient(0deg, rgba(3, 13, 26, 0.035), rgba(3, 13, 26, 0.035)),
    radial-gradient(circle at 48% 48%, rgba(239, 208, 138, 0.055), transparent 20%),
    radial-gradient(circle at 68% 22%, rgba(76, 115, 158, 0.14), transparent 36%),
    linear-gradient(180deg, rgba(4, 16, 32, 0.18), transparent 16%, transparent 76%, rgba(4, 16, 32, 0.22)),
    linear-gradient(36deg, transparent 47.8%, rgba(239, 208, 138, 0.055) 48%, transparent 48.35%),
    linear-gradient(132deg, transparent 53.2%, rgba(86, 136, 184, 0.07) 53.45%, transparent 53.8%);
  mix-blend-mode: screen;
}

.contacts-page .map-frame::after {
  box-shadow: inset 0 0 42px rgba(3, 13, 26, 0.34), inset 0 -34px 58px rgba(76, 115, 158, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.contacts-page .map-frame iframe {
  filter: invert(0.88) hue-rotate(178deg) saturate(0.92) brightness(0.78) contrast(1.18);
  transform: scale(1.012);
  transform-origin: center;
}

.contacts-page .route-card {
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 20px;
  border-color: rgba(170, 199, 232, 0.16);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.08), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(76, 115, 158, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.064), rgba(255, 255, 255, 0.02)),
    rgba(5, 20, 39, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 46px rgba(0, 0, 0, 0.18), -12px 0 34px rgba(76, 115, 158, 0.045);
  backdrop-filter: blur(14px);
}

.contacts-page .route-card .contact-icon {
  width: 34px;
  height: 34px;
}

.contacts-page .route-card h3 {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.18;
}

.contacts-page .route-card p {
  color: rgba(234, 240, 247, 0.68);
  font-size: 14px;
  line-height: 1.58;
}

.contacts-page .route-card .btn {
  width: 100%;
  min-height: 48px;
  padding: 12px 15px;
}

.contacts-page .route-button {
  justify-content: space-between;
  border-color: rgba(239, 208, 138, 0.28);
  background:
    linear-gradient(145deg, rgba(239, 208, 138, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(4, 17, 33, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 26px rgba(0, 0, 0, 0.14);
}

.contacts-page .route-button:hover {
  border-color: rgba(239, 208, 138, 0.46);
  box-shadow: 0 14px 34px rgba(199, 154, 59, 0.12), 0 0 22px rgba(239, 208, 138, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contacts-page .route-button span:last-child {
  color: var(--gold-soft);
  font-size: 20px;
  line-height: 1;
}

.contacts-page .map-service-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding-top: 2px;
}

.contacts-page .map-service-link {
  display: inline-flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border: 1px solid rgba(170, 199, 232, 0.11);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(3, 12, 24, 0.22);
  color: rgba(234, 240, 247, 0.68);
  font-size: 12.5px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contacts-page .map-service-link:hover {
  transform: translateY(-1px);
  border-color: rgba(239, 208, 138, 0.26);
  color: var(--gold-soft);
  background:
    linear-gradient(145deg, rgba(239, 208, 138, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(3, 12, 24, 0.28);
}

.contacts-page .map-service-icon {
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 16px rgba(199, 154, 59, 0.12);
}

.contacts-page .google-icon {
  background: linear-gradient(135deg, rgba(239, 208, 138, 0.92), rgba(170, 199, 232, 0.82));
}

.contacts-page .route-card-address {
  margin: auto 0 0;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  color: rgba(234, 240, 247, 0.46) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.contacts-page .map-location-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 11px;
  row-gap: 4px;
  max-width: min(310px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(239, 208, 138, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 12% 18%, rgba(239, 208, 138, 0.1), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 20, 39, 0.82);
  box-shadow: 0 24px 66px rgba(0, 0, 0, 0.48), 0 0 30px rgba(76, 115, 158, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transform: translate(-50%, -50%);
}

.contacts-page .map-pin-icon {
  display: grid;
  grid-row: span 2;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 28px rgba(199, 154, 59, 0.28);
}

.contacts-page .map-pin-icon svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.contacts-page .map-location-card strong {
  color: var(--white);
  font-size: 14px;
}

.contacts-page .map-location-card p {
  margin: 0;
  color: rgba(234, 240, 247, 0.66);
  font-size: 12px;
  line-height: 1.42;
}

.contacts-page .confidentiality-card {
  min-height: clamp(150px, 13vw, 190px);
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: clamp(32px, 3.2vw, 40px);
  border: 1px solid rgba(239, 208, 138, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 48%, rgba(76, 115, 158, 0.2), transparent 28%),
    radial-gradient(circle at 16% 24%, rgba(239, 208, 138, 0.11), transparent 22%),
    linear-gradient(125deg, rgba(11, 33, 61, 0.78), rgba(4, 16, 32, 0.94) 58%, rgba(3, 11, 23, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32), 0 0 44px rgba(76, 115, 158, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.contacts-page .confidentiality-icon {
  width: 58px;
  height: 58px;
  border-color: rgba(239, 208, 138, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(239, 208, 138, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(8, 27, 51, 0.58);
  box-shadow: 0 0 34px rgba(199, 154, 59, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contacts-page .confidentiality-icon svg {
  width: 30px;
  height: 30px;
}

.contacts-page .confidentiality-card .eyebrow {
  margin-bottom: 8px;
}

.contacts-page .confidentiality-card h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.12;
}

.contacts-page .confidentiality-card p:last-child {
  max-width: 680px;
  color: rgba(234, 240, 247, 0.74);
  font-size: 16px;
  line-height: 1.55;
}

.contacts-page .security-graphic {
  right: -76px;
  top: 0;
  bottom: 0;
  width: min(42vw, 470px);
  height: auto;
  opacity: 0.72;
  background:
    linear-gradient(90deg, rgba(4, 16, 32, 0.98) 0%, rgba(4, 16, 32, 0.48) 26%, rgba(4, 16, 32, 0.1) 54%, rgba(4, 16, 32, 0.34) 100%),
    radial-gradient(circle at 58% 50%, rgba(76, 115, 158, 0.18), transparent 48%),
    url("assets/vault-door.png") center right / cover no-repeat;
  filter: saturate(0.86) contrast(1.08) brightness(0.8);
  mix-blend-mode: normal;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 22%, #000 54%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.58) 22%, #000 54%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
}

.contacts-page .security-graphic::before {
  content: none;
}

.contacts-page .security-graphic::after {
  content: none;
}

.contacts-page .security-graphic span {
  display: none;
}

.contacts-page .footer-contact-wrap {
  gap: 14px;
}

.contacts-page .container {
  width: min(1224px, calc(100% - 48px));
  max-width: 1224px;
  margin-right: auto;
  margin-left: auto;
}

.contacts-page .contacts-hero {
  min-height: 0;
  max-height: none;
  padding-top: 92px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 76% 36%, rgba(58, 101, 148, 0.24), transparent 27%),
    radial-gradient(circle at 82% 60%, rgba(199, 154, 59, 0.11), transparent 24%),
    linear-gradient(135deg, #061529, #081a32 58%, #050f1f);
}

.contacts-page .contacts-hero-grid {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.contacts-page .contacts-hero-media {
  background:
    linear-gradient(110deg, rgba(6, 21, 41, 0.96) 0%, rgba(6, 21, 41, 0.74) 52%, rgba(6, 21, 41, 0.88) 100%),
    radial-gradient(circle at 72% 42%, rgba(107, 151, 196, 0.24), transparent 26%),
    radial-gradient(circle at 82% 60%, rgba(239, 208, 138, 0.12), transparent 24%),
    linear-gradient(rgba(239, 208, 138, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(239, 208, 138, 0.028) 1px, transparent 1px),
    url("assets/documents.jpg") center right / cover no-repeat;
  background-size: auto, auto, auto, 88px 88px, 88px 88px, cover;
  opacity: 0.58;
  filter: blur(1.1px) saturate(0.76) contrast(1.02);
}

.contacts-page .contacts-hero-ambient {
  position: relative;
  display: none;
  width: min(100%, 460px);
  min-height: 260px;
  justify-self: end;
  pointer-events: none;
}

.contacts-page .contacts-hero-ambient::before {
  content: "АБ";
  position: absolute;
  right: 0;
  top: 50%;
  width: clamp(220px, 28vw, 360px);
  height: clamp(220px, 28vw, 360px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(239, 208, 138, 0.14);
  border-radius: 50%;
  color: rgba(239, 208, 138, 0.18);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 9vw, 128px);
  letter-spacing: 0.02em;
  background:
    radial-gradient(circle at 44% 38%, rgba(239, 208, 138, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.015);
  box-shadow: 0 0 80px rgba(199, 154, 59, 0.08), inset 0 0 54px rgba(239, 208, 138, 0.035);
  transform: translateY(-50%);
}

.contacts-page .contacts-hero-ambient::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 48%;
  width: min(34vw, 420px);
  height: 160px;
  border-radius: 999px;
  background:
    linear-gradient(100deg, transparent, rgba(239, 208, 138, 0.1), transparent),
    linear-gradient(rgba(123, 164, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 164, 204, 0.08) 1px, transparent 1px);
  background-size: auto, 42px 42px, 42px 42px;
  filter: blur(10px);
  opacity: 0.58;
  transform: translateY(-50%) rotate(-8deg);
}

@media (max-width: 719px) {
  .contacts-page .section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .contacts-page .contacts-hero {
    min-height: auto;
    max-height: none;
    padding-top: 100px;
    padding-bottom: 36px;
  }

  .privacy-hero {
    padding-top: 104px;
    padding-bottom: 34px;
  }

  .privacy-document {
    padding: 22px;
    border-radius: 20px;
  }

  .contacts-page .container {
    width: min(100% - 32px, 1224px);
  }

  .contacts-page .contacts-hero-actions {
    grid-template-columns: 1fr;
  }

  .contacts-page .contacts-hero-actions .btn {
    width: 100%;
  }

  .contacts-page .map-frame,
  .contacts-page .map-frame iframe {
    min-height: 360px;
    max-height: none;
  }

  .contacts-page .map-location-card {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 18px;
    max-width: none;
    transform: none;
  }

  .contacts-page .confidentiality-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .contacts-page .security-graphic {
    right: -80px;
    bottom: -70px;
    width: 260px;
    opacity: 0.16;
  }
}

@media (min-width: 860px) {
  .contacts-page .contacts-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    gap: 48px;
  }

  .contacts-page .contacts-hero-ambient {
    display: block;
  }
}
