:root {
  --navy: #071331;
  --navy-deep: #030a1c;
  --blue: #213f9b;
  --blue-bright: #3157c7;
  --paper: #f4f6fa;
  --white: #ffffff;
  --ink: #101727;
  --muted: #687189;
  --line: #dce1eb;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.scroll-progress {
  position: fixed;
  z-index: 2001;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #6f8dff, #ffffff, #3157c7);
}

.cursor-dot,
.cursor-ring,
.cursor-aura {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  will-change: transform;
  transition: width .22s ease, height .22s ease, margin .22s ease, opacity .18s ease, background-color .22s ease, border-color .22s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  margin: -3.5px 0 0 -3.5px;
  border-radius: 50%;
  background: #6f8dff;
  box-shadow: 0 0 16px rgba(80, 113, 235, .7);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 1px solid rgba(49, 87, 199, .72);
  border-radius: 50%;
  background: rgba(49, 87, 199, .035);
  backdrop-filter: blur(1px);
}

.cursor-aura {
  z-index: 1;
  width: 180px;
  height: 180px;
  margin: -90px 0 0 -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 91, 207, .09), transparent 68%);
}

body.cursor-visible .cursor-dot,
body.cursor-visible .cursor-ring,
body.cursor-visible .cursor-aura { opacity: 1; }

body.cursor-active .cursor-ring {
  width: 54px;
  height: 54px;
  margin: -27px 0 0 -27px;
  border-color: rgba(111, 141, 255, .92);
  background: rgba(82, 113, 224, .09);
}

body.cursor-active .cursor-dot { background: #ffffff; }

@media (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready * { cursor: none !important; }
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity .78s ease, transform .9s cubic-bezier(.2, .7, .2, 1);
  will-change: opacity, transform;
}

.motion-ready [data-reveal="hero"] { transform: translate3d(-24px, 0, 0); }
.motion-ready [data-reveal="hero-mark"] { transform: translate3d(36px, 0, 0) scale(.92); }
.motion-ready [data-reveal="hero-strip"] { transform: translate3d(-50%, 24px, 0); }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: translate3d(0, 0, 0); }
.motion-ready [data-reveal="hero-strip"].is-visible { transform: translate3d(-50%, 0, 0); }
.motion-ready [data-reveal-delay="1"],
.motion-ready .reveal-delay-1 { transition-delay: .12s; }
.motion-ready .reveal-delay-2 { transition-delay: .2s; }
.motion-ready .reveal-delay-3 { transition-delay: .28s; }

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

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  height: 84px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(7, 19, 49, .08);
  backdrop-filter: blur(16px);
  animation: header-arrive .65s ease both;
}

.header-inner { height: 100%; display: flex; align-items: center; gap: 36px; }
.brand { display: inline-flex; align-items: center; gap: 12px; margin-right: auto; }
.brand img { width: 48px; height: 48px; object-fit: contain; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.brand:hover img { transform: rotate(-8deg) scale(1.06); }
.brand-copy { display: grid; gap: 3px; }
.brand-copy strong { color: var(--navy); font-size: 14px; letter-spacing: .09em; }
.brand-copy small { color: var(--muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }

.desktop-nav { display: flex; align-items: center; gap: 27px; color: #2f384c; font-size: 14px; }
.desktop-nav a { transition: color .2s ease; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -9px; left: 0; height: 1px; transform: scaleX(0); transform-origin: right; background: var(--blue); transition: transform .28s ease; }
.desktop-nav a:hover { color: var(--blue); }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-phone { display: grid; padding-left: 28px; border-left: 1px solid var(--line); }
.header-phone span { color: var(--navy); font-size: 14px; font-weight: 700; }
.header-phone small { margin-top: 3px; color: var(--blue); font-size: 11px; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { display: grid; gap: 5px; cursor: pointer; list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span { width: 24px; height: 2px; background: var(--navy); }
.mobile-menu nav { position: absolute; top: 40px; right: 0; min-width: 220px; padding: 14px; display: grid; border: 1px solid var(--line); background: white; box-shadow: 0 18px 40px rgba(7,19,49,.14); }
.mobile-menu nav a { padding: 12px; font-size: 14px; }

.hero {
  position: relative;
  overflow: hidden;
  color: white;
  background: linear-gradient(118deg, var(--navy-deep) 0%, #0d1d54 48%, var(--blue) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(520px circle at var(--pointer-x, 78%) var(--pointer-y, 18%), rgba(89,126,255,.3), rgba(89,126,255,0) 70%);
  transition: background-position .12s linear;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, black 55%, black);
  animation: grid-drift 18s linear infinite;
}

.hero-inner { position: relative; min-height: 624px; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
.hero-copy { padding: 74px 0 120px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
.eyebrow.light { color: #aebfff; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(54px, 6.6vw, 90px); line-height: .97; letter-spacing: -.055em; font-weight: 700; }
.hero-lead { max-width: 620px; margin: 32px 0 0; color: rgba(255,255,255,.76); font-size: 19px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 40px; }
.button { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 14px; min-height: 56px; padding: 0 24px; border-radius: 6px; font-size: 14px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.button::before { content: ""; position: absolute; inset: 0; transform: translateX(-120%) skewX(-18deg); background: linear-gradient(90deg, transparent, rgba(90,120,230,.16), transparent); transition: transform .65s ease; }
.button:hover::before { transform: translateX(120%) skewX(-18deg); }
.button svg { width: 19px; height: 19px; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.button-white { background: white; color: var(--navy); }
.text-link { color: rgba(255,255,255,.86); font-size: 14px; }
.text-link span { margin-left: 8px; }

.hero-mark { position: relative; justify-self: end; width: min(38vw, 430px); aspect-ratio: 1; display: grid; place-items: center; }
.hero-mark img { position: relative; z-index: 2; width: 72%; filter: drop-shadow(0 28px 45px rgba(1,5,17,.45)); animation: logo-float 6s ease-in-out infinite; }
.orbit { position: absolute; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; }
.orbit-one { inset: 5%; animation: orbit-pulse 5s ease-in-out infinite; }
.orbit-two { inset: 17%; border-color: rgba(120,150,255,.28); animation: orbit-pulse 5s 1.2s ease-in-out infinite reverse; }

.trust-strip { position: absolute; z-index: 3; bottom: 0; left: 50%; transform: translateX(-50%); min-height: 96px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.16); }
.trust-strip div { padding: 23px 34px; display: grid; gap: 7px; border-right: 1px solid rgba(255,255,255,.16); }
.trust-strip div:first-child { border-left: 1px solid rgba(255,255,255,.16); }
.trust-strip strong { font-size: 15px; letter-spacing: .01em; }
.trust-strip span { color: rgba(255,255,255,.56); font-size: 12px; }

.section { padding: 116px 0; }
.company { background: white; }
.company-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 110px; align-items: start; }
.section-heading h2, .wide-heading h2, .requisites-heading h2 { margin: 0; max-width: 670px; color: var(--navy); font-size: clamp(36px, 4vw, 56px); line-height: 1.08; letter-spacing: -.045em; }
.company-copy { padding-top: 45px; }
.company-copy p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.8; }
.company-copy .lead-copy { margin-bottom: 22px; color: var(--ink); font-size: 22px; line-height: 1.5; }
.inline-points { display: flex; flex-wrap: wrap; gap: 14px 24px; margin-top: 34px; padding-top: 28px; border-top: 1px solid var(--line); }
.inline-points span { display: flex; align-items: center; gap: 8px; color: #35405a; font-size: 13px; }
.inline-points svg { width: 19px; height: 19px; padding: 3px; color: white; border-radius: 50%; background: var(--blue); }

.wide-heading { margin-bottom: 54px; display: grid; grid-template-columns: 1.3fr .7fr; gap: 100px; align-items: end; }
.wide-heading > p { margin: 0 0 3px; color: var(--muted); font-size: 16px; line-height: 1.7; }

.advantages { background: var(--paper); }
.advantage-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.advantage-card { min-height: 290px; padding: 34px; display: flex; flex-direction: column; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.58); transition: background .2s ease, transform .2s ease; }
.advantage-card:hover { z-index: 2; background: white; transform: translateY(-3px); box-shadow: 0 18px 45px rgba(10,27,72,.08); }
.advantage-top { display: flex; align-items: center; justify-content: space-between; }
.feature-icon { width: 52px; height: 52px; display: grid; place-items: center; color: var(--blue); border: 1px solid #cfd8ef; border-radius: 50%; background: #f8faff; }
.feature-icon svg { width: 25px; height: 25px; }
.advantage-card:hover .feature-icon { color: white; border-color: var(--blue); background: var(--blue); transform: rotate(-7deg) scale(1.06); }
.feature-icon { transition: color .3s ease, background .3s ease, border-color .3s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.card-index { color: #9ba4b8; font-size: 11px; letter-spacing: .14em; }
.advantage-card h3 { margin: auto 0 12px; color: var(--navy); font-size: 20px; letter-spacing: -.02em; }
.advantage-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.65; }

.customers { position: relative; overflow: hidden; color: white; background: linear-gradient(120deg, var(--navy-deep), #0c1d55 62%, var(--blue)); }
.customers::after { content: ""; position: absolute; width: 600px; height: 600px; right: -240px; bottom: -300px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,255,255,.018), 0 0 0 200px rgba(255,255,255,.012); }
.wide-heading.inverse { position: relative; z-index: 2; }
.wide-heading.inverse h2 { color: white; }
.wide-heading.inverse > p { color: rgba(255,255,255,.56); }
.customer-list { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.customer-item { min-height: 104px; padding: 24px 26px; display: grid; grid-template-columns: 36px 1fr 20px; gap: 16px; align-items: center; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); transition: background .2s ease; }
.customer-item:hover { background: rgba(255,255,255,.06); }
.customer-item > span:first-child { color: #91a7ef; font-size: 11px; }
.customer-item strong { max-width: 410px; font-size: 14px; line-height: 1.55; font-weight: 500; }
.customer-mark { color: rgba(255,255,255,.3); font-size: 16px; }
.customer-item:hover .customer-mark { color: white; transform: translate(3px, -3px); }
.customer-mark { transition: color .25s ease, transform .25s ease; }

.compliance { background: white; }
.compliance-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 86px; align-items: start; }
.section-note { max-width: 500px; margin: 30px 0 0; color: var(--muted); font-size: 16px; line-height: 1.75; }
.law-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-top: 10px; }
.law-card { min-height: 380px; padding: 34px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); }
.law-card { transition: transform .32s ease, box-shadow .32s ease; }
.law-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(8,23,62,.12); }
.law-card.primary { color: white; border-color: transparent; background: linear-gradient(145deg, var(--blue), var(--navy)); }
.law-number { color: var(--blue); font-size: 50px; line-height: 1; font-weight: 700; letter-spacing: -.05em; }
.law-card.primary .law-number { color: white; }
.law-card p { margin: auto 0 14px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.law-card.primary p { color: rgba(255,255,255,.58); }
.law-card h3 { margin: 0; color: var(--navy); font-size: 18px; line-height: 1.5; }
.law-card.primary h3 { color: white; }

.contacts { padding-bottom: 0; color: white; background: linear-gradient(110deg, var(--navy-deep), #0c1c52 55%, var(--blue)); }
.contact-intro { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; padding-bottom: 66px; }
.contact-intro h2 { margin: 0; font-size: clamp(42px, 5vw, 68px); line-height: 1.02; letter-spacing: -.05em; }
.contact-intro p:not(.eyebrow) { max-width: 620px; margin: 22px 0 0; color: rgba(255,255,255,.63); font-size: 17px; line-height: 1.65; }
.contact-grid { display: grid; grid-template-columns: .7fr .9fr 1.4fr; border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.contact-card { min-height: 230px; padding: 30px; display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.025); transition: background .2s ease; }
a.contact-card:hover { background: rgba(255,255,255,.07); }
.contact-icon { width: 45px; height: 45px; margin-bottom: auto; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; }
.contact-icon svg { width: 20px; height: 20px; }
.contact-card:hover .contact-icon { color: var(--navy); border-color: white; background: white; transform: rotate(-7deg); }
.contact-icon { transition: color .3s ease, border-color .3s ease, background .3s ease, transform .35s ease; }
.contact-card small { margin-bottom: 9px; color: #94abf4; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.contact-card strong { font-size: 17px; line-height: 1.45; }
.address-card strong { max-width: 460px; font-size: 15px; font-weight: 500; }

.requisites { background: var(--paper); }
.requisites-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; }
.requisites-heading > p { max-width: 450px; margin: 0 0 5px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.requisite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.requisite-card { min-height: 320px; padding: 36px; border: 1px solid var(--line); background: white; }
.requisite-card { transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.requisite-card:hover { transform: translateY(-4px); border-color: #bac7e9; box-shadow: 0 20px 46px rgba(8,23,62,.08); }
.requisite-card small { display: block; margin-bottom: 20px; color: var(--blue); font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.requisite-card h3 { margin: 0 0 28px; color: var(--navy); font-size: 25px; line-height: 1.3; letter-spacing: -.02em; }
.requisite-card p { margin: 0 0 26px; color: #364056; font-size: 17px; line-height: 1.55; }
.director-card { color: white; border-color: transparent; background: linear-gradient(145deg, var(--blue), var(--navy)); }
.director-card small { color: #afc0fb; }
.director-card h3 { color: white; font-size: 32px; }
.director-card a { display: block; width: fit-content; margin-top: 11px; color: rgba(255,255,255,.8); font-size: 15px; }
.requisite-card dl { margin: 0; }
.requisite-card dl div { padding: 12px 0; display: grid; grid-template-columns: 1fr auto; gap: 20px; border-bottom: 1px solid var(--line); }
.requisite-card dl div:last-child { border-bottom: 0; }
.requisite-card dt { color: var(--muted); font-size: 13px; }
.requisite-card dd { margin: 0; color: var(--navy); font-size: 14px; font-weight: 700; font-variant-numeric: tabular-nums; }
.bank-card { grid-column: span 2; min-height: auto; display: grid; grid-template-columns: .7fr 1.3fr; column-gap: 64px; }
.bank-card small { grid-column: 1 / -1; }
.bank-card h3 { margin-bottom: 0; }

.footer { padding: 66px 0 26px; color: white; background: var(--navy-deep); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr .8fr; gap: 60px; padding-bottom: 56px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img { width: 54px; height: 54px; object-fit: contain; }
.footer-brand div { display: grid; gap: 6px; }
.footer-brand strong { font-size: 13px; letter-spacing: .1em; }
.footer-brand span { color: rgba(255,255,255,.45); font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.footer-nav { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 26px; color: rgba(255,255,255,.64); font-size: 13px; }
.footer-contact { display: grid; align-content: start; gap: 12px; text-align: right; font-size: 14px; }
.footer-contact a:last-child { color: #9fb3f5; }
.footer-bottom { padding-top: 25px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.38); font-size: 11px; }

@keyframes header-arrive {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes grid-drift {
  to { background-position: 72px 72px; }
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
}

@keyframes orbit-pulse {
  0%, 100% { opacity: .55; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@media (max-width: 980px) {
  .desktop-nav, .header-phone { display: none; }
  .mobile-menu { display: block; }
  .hero-inner { grid-template-columns: 1fr .55fr; min-height: 590px; }
  .hero-mark { width: 320px; margin-right: -100px; opacity: .8; }
  .company-layout { grid-template-columns: 1fr; gap: 36px; }
  .company-copy { max-width: 700px; padding-top: 0; }
  .advantage-grid { grid-template-columns: repeat(2, 1fr); }
  .wide-heading { gap: 50px; }
  .compliance-layout { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .address-card { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 1 / -1; text-align: left; }
}

@media (max-width: 700px) {
  .container { width: min(100% - 32px, 1180px); }
  .site-header { height: 70px; }
  .brand img { width: 40px; height: 40px; }
  .brand-copy small { display: none; }
  .hero-inner { min-height: 650px; display: block; }
  .hero-copy { position: relative; z-index: 4; padding: 72px 0 190px; }
  .hero h1 { font-size: clamp(47px, 15vw, 66px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-mark { position: absolute; right: -95px; bottom: 105px; width: 260px; opacity: .26; }
  .trust-strip { min-height: 104px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .trust-strip div { padding: 18px 9px; }
  .trust-strip strong { font-size: 12px; }
  .trust-strip span { font-size: 10px; line-height: 1.35; }
  .section { padding: 80px 0; }
  .company-copy .lead-copy { font-size: 19px; }
  .wide-heading, .requisites-heading { grid-template-columns: 1fr; gap: 25px; }
  .wide-heading { margin-bottom: 38px; }
  .advantage-grid, .customer-list, .law-grid, .contact-grid, .requisite-grid { grid-template-columns: 1fr; }
  .advantage-card { min-height: 250px; padding: 28px; }
  .customer-item { min-height: 96px; padding: 20px 16px; grid-template-columns: 28px 1fr; }
  .customer-mark { display: none; }
  .law-card { min-height: 330px; }
  .contact-intro { grid-template-columns: 1fr; align-items: start; }
  .contact-grid { margin: 0 -16px; }
  .address-card, .bank-card { grid-column: auto; }
  .bank-card { display: block; }
  .bank-card h3 { margin-bottom: 26px; }
  .requisite-card { min-height: auto; padding: 28px; }
  .requisite-card dl div { grid-template-columns: 1fr; gap: 5px; }
  .requisite-card dd { overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring, .cursor-aura, .scroll-progress { display: none; }
}
