:root {
  --navy-1000: #04101f;
  --navy-950: #071a2f;
  --navy-900: #0b2543;
  --navy-800: #10385f;
  --blue-600: #176bff;
  --blue-500: #2f83ff;
  --cyan-400: #21d4d7;
  --cyan-300: #72eff0;
  --green-500: #20c982;
  --purple-500: #8b6cff;
  --orange-500: #ff9e48;
  --white: #ffffff;
  --slate-50: #f7f9fc;
  --slate-100: #eef3f8;
  --slate-200: #dfe8f1;
  --slate-500: #66788b;
  --slate-700: #32465a;
  --shadow-soft: 0 20px 60px rgba(7, 26, 47, 0.1);
  --shadow-strong: 0 30px 90px rgba(0, 12, 30, 0.28);
  --radius-xl: 34px;
  --radius-lg: 25px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy-950);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(4, 16, 31, 0.83);
  color: var(--white);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  box-shadow: 0 12px 34px rgba(47, 131, 255, 0.32);
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--white);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark circle {
  fill: var(--white);
  stroke: none;
}

.brand-text {
  display: grid;
  line-height: 1;
}

.brand-text strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand-text span {
  margin-top: 6px;
  color: #aebfd0;
  font-size: 0.69rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-navigation > a {
  color: #d6e2ed;
  text-decoration: none;
  font-size: 0.91rem;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.main-navigation > a:hover,
.main-navigation > a:focus-visible {
  color: var(--cyan-300);
}

.main-navigation .nav-cta {
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.main-navigation .nav-cta:hover,
.main-navigation .nav-cta:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-button span:not(.sr-only) {
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 10px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background:
    linear-gradient(145deg, rgba(4, 16, 31, 0.98), rgba(7, 35, 64, 0.97) 58%, rgba(12, 56, 90, 0.96)),
    var(--navy-1000);
  color: var(--white);
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.hero::after {
  position: absolute;
  right: -14%;
  bottom: -48%;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(114, 239, 240, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(47, 131, 255, 0.025),
    0 0 0 160px rgba(47, 131, 255, 0.02);
  content: "";
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 90px;
  right: 16%;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(33, 212, 215, 0.25), rgba(33, 212, 215, 0));
}

.hero-orb-two {
  bottom: 2%;
  left: -5%;
  width: 390px;
  height: 390px;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.22), rgba(139, 108, 255, 0));
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  padding-block: 88px 78px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 74px;
}

.hero-kicker {
  width: fit-content;
  margin-bottom: 22px;
  padding: 8px 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(114, 239, 240, 0.22);
  border-radius: 999px;
  background: rgba(114, 239, 240, 0.08);
  color: #c5f7f8;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(32, 201, 130, 0.13);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 25px;
  font-size: clamp(3.15rem, 6.1vw, 5.65rem);
  letter-spacing: -0.062em;
}

h1 span {
  background: linear-gradient(100deg, var(--cyan-300), #55a4ff 56%, #9f8cff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4vw, 3.65rem);
  letter-spacing: -0.047em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.hero-description {
  max-width: 650px;
  margin-bottom: 34px;
  color: #c3d0dc;
  font-size: 1.11rem;
}

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

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 23px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-500), var(--cyan-400));
  color: var(--white);
  box-shadow: 0 16px 42px rgba(36, 145, 255, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 50px rgba(36, 145, 255, 0.44);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.hero-features {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: #b9c9d8;
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-features div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-features span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(32, 201, 130, 0.14);
  color: #75e8b9;
  font-size: 0.72rem;
}

.hero-visual {
  position: relative;
  padding: 20px 0;
}

.dashboard-card {
  position: relative;
  z-index: 2;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.dashboard-top {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-top small,
.dashboard-top strong {
  display: block;
}

.dashboard-top small {
  color: #9fb1c5;
  font-size: 0.74rem;
}

.dashboard-top strong {
  margin-top: 2px;
  font-size: 1rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c7f7e2;
  font-size: 0.75rem;
  font-weight: 800;
}

.live-badge i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(32, 201, 130, 0.13);
}

.balance-card {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 21px;
  background:
    radial-gradient(circle at 90% 0%, rgba(114, 239, 240, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(47, 131, 255, 0.26), rgba(6, 24, 45, 0.44));
}

.balance-card span,
.balance-card small,
.stat-card span {
  display: block;
  color: #a7b9cb;
}

.balance-card span {
  font-size: 0.76rem;
}

.balance-card strong {
  display: block;
  margin: 5px 0;
  font-size: 1.56rem;
  letter-spacing: -0.025em;
}

.balance-card small {
  font-size: 0.75rem;
}

.balance-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--cyan-300);
}

.balance-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dashboard-stats {
  margin-top: 13px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.stat-card {
  min-height: 126px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(4, 16, 31, 0.43);
}

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

.stat-card strong {
  display: block;
  margin-top: 3px;
  font-size: 1rem;
}

.mini-bars {
  height: 48px;
  margin-top: 10px;
  display: flex;
  align-items: end;
  gap: 6px;
}

.mini-bars i {
  flex: 1;
  border-radius: 5px 5px 2px 2px;
  background: linear-gradient(to top, var(--blue-500), var(--cyan-400));
}

.mini-bars i:nth-child(1) { height: 38%; }
.mini-bars i:nth-child(2) { height: 58%; }
.mini-bars i:nth-child(3) { height: 48%; }
.mini-bars i:nth-child(4) { height: 78%; }
.mini-bars i:nth-child(5) { height: 92%; }

.mini-line {
  height: 50px;
  margin-top: 8px;
}

.mini-line svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--purple-500);
  stroke-width: 3;
  stroke-linecap: round;
}

.recent-operations {
  margin-top: 14px;
  padding: 14px 16px 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(4, 16, 31, 0.3);
}

.recent-heading {
  padding: 0 2px 9px;
  display: flex;
  justify-content: space-between;
  color: #8fa4b8;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.operation-row {
  padding: 10px 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.operation-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  font-weight: 900;
}

.operation-icon.green { background: rgba(32, 201, 130, 0.14); color: #74edba; }
.operation-icon.blue { background: rgba(47, 131, 255, 0.16); color: #7bb2ff; }
.operation-icon.purple { background: rgba(139, 108, 255, 0.16); color: #b4a3ff; }

.operation-row strong,
.operation-row small {
  display: block;
}

.operation-row strong {
  font-size: 0.79rem;
}

.operation-row small {
  color: #889db2;
  font-size: 0.68rem;
}

.operation-row b {
  color: #8ee9c1;
  font-size: 0.68rem;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 15px;
  background: rgba(7, 26, 47, 0.82);
  box-shadow: 0 15px 40px rgba(0, 9, 23, 0.34);
  backdrop-filter: blur(14px);
}

.floating-chip small,
.floating-chip strong {
  display: block;
}

.floating-chip small {
  color: #8fa4b8;
  font-size: 0.67rem;
}

.floating-chip strong {
  font-size: 0.8rem;
}

.chip-one {
  top: -2px;
  right: -25px;
  animation: float-y 4.2s ease-in-out infinite;
}

.chip-two {
  bottom: 7px;
  left: -34px;
  animation: float-y 4.7s ease-in-out infinite reverse;
}

.chip-icon {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-weight: 900;
}

.chip-green { background: rgba(32, 201, 130, 0.14); color: #75e8b9; }
.chip-blue { background: rgba(47, 131, 255, 0.16); color: #77adff; }

.capability-strip {
  position: relative;
  z-index: 3;
  margin-bottom: 28px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
  color: #bdcad7;
  font-size: 0.8rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
}

.capability-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan-400);
}

.section {
  padding-block: 110px;
}

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 10% 20%, rgba(33, 212, 215, 0.07), transparent 28%),
    radial-gradient(circle at 92% 85%, rgba(139, 108, 255, 0.06), transparent 26%),
    var(--white);
}

.section-heading {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: end;
  gap: 70px;
}

.section-heading > div {
  max-width: 700px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--slate-500);
  font-size: 1.03rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-600);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.17em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 338px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--slate-100);
  border-radius: 23px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 44px rgba(7, 26, 47, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  content: "";
  opacity: 0.13;
}

.service-cyan::before { background: var(--cyan-400); }
.service-blue::before { background: var(--blue-500); }
.service-purple::before { background: var(--purple-500); }
.service-orange::before { background: var(--orange-500); }

.service-card:hover {
  transform: translateY(-7px);
  border-color: var(--slate-200);
  box-shadow: 0 25px 65px rgba(7, 26, 47, 0.13);
}

.service-number {
  position: absolute;
  top: 23px;
  right: 25px;
  color: var(--slate-200);
  font-size: 0.82rem;
  font-weight: 900;
}

.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  border-radius: 17px;
}

.service-cyan .service-icon { background: rgba(33, 212, 215, 0.12); color: #049ca0; }
.service-blue .service-icon { background: rgba(47, 131, 255, 0.12); color: var(--blue-600); }
.service-purple .service-icon { background: rgba(139, 108, 255, 0.12); color: #7254ed; }
.service-orange .service-icon { background: rgba(255, 158, 72, 0.14); color: #e97d1e; }

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p {
  margin-bottom: 24px;
  color: var(--slate-500);
  font-size: 0.94rem;
}

.service-link {
  position: absolute;
  bottom: 27px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 850;
}

.service-link b {
  font-size: 1rem;
}

.process-section {
  background: var(--slate-50);
}

.process-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 90px;
}

.process-copy {
  position: sticky;
  top: 120px;
}

.process-copy > p:not(.eyebrow) {
  max-width: 520px;
  color: var(--slate-500);
  font-size: 1.03rem;
}

.text-link {
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  text-decoration: none;
  font-weight: 850;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.process-steps {
  display: grid;
  gap: 17px;
}

.process-step {
  min-height: 162px;
  padding: 28px;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: start;
  gap: 22px;
  border: 1px solid var(--slate-100);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 15px 40px rgba(7, 26, 47, 0.055);
}

.process-step > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: var(--cyan-300);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
  color: var(--slate-500);
}

.advantages-section {
  background: var(--white);
}

.advantages-card {
  position: relative;
  padding: 66px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 70px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 18% 0%, rgba(33, 212, 215, 0.18), transparent 30%),
    radial-gradient(circle at 95% 80%, rgba(139, 108, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-1000), var(--navy-800));
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.advantages-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.advantages-copy,
.advantages-grid {
  position: relative;
  z-index: 2;
}

.advantages-copy .eyebrow {
  color: var(--cyan-300);
}

.advantages-copy p:last-child {
  max-width: 430px;
  margin-bottom: 0;
  color: #becddd;
}

.advantages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.advantages-grid article {
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(12px);
}

.advantages-grid h3 {
  margin-bottom: 8px;
  font-size: 1.04rem;
}

.advantages-grid p {
  margin-bottom: 0;
  color: #acbfd1;
  font-size: 0.86rem;
}

.advantage-icon {
  width: 39px;
  height: 39px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(114, 239, 240, 0.13);
  color: var(--cyan-300);
  font-weight: 900;
}

.contact-section {
  padding: 25px 0 110px;
}

.contact-card {
  position: relative;
  padding: 56px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  border: 1px solid rgba(23, 107, 255, 0.14);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, #eff7ff, #f3fcfc 52%, #f6f3ff);
}

.contact-glow {
  position: absolute;
  top: -85px;
  right: -25px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 131, 255, 0.18), rgba(47, 131, 255, 0));
}

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

.contact-content h2 {
  margin-bottom: 13px;
  font-size: clamp(2rem, 3.7vw, 3.25rem);
}

.contact-content p:last-child {
  margin-bottom: 0;
  color: var(--slate-500);
}

.button-light {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  background: var(--navy-950);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(7, 26, 47, 0.18);
}

.site-footer {
  padding: 66px 0 30px;
  background: var(--navy-1000);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.55fr 0.8fr;
  gap: 70px;
}

.footer-brand p {
  max-width: 420px;
  margin: 18px 0 0;
  color: #8fa5ba;
  font-size: 0.9rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong {
  margin-bottom: 7px;
  font-size: 0.87rem;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  color: #90a5b9;
  text-decoration: none;
  font-size: 0.85rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--cyan-300);
}

.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #73899e;
  font-size: 0.77rem;
}

.footer-bottom p {
  max-width: 780px;
  margin-bottom: 0;
  text-align: right;
}

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

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

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

:focus-visible {
  outline: 3px solid var(--cyan-300);
  outline-offset: 4px;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 42px;
  }

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

  .service-card {
    min-height: 310px;
  }

  .process-grid {
    gap: 50px;
  }

  .advantages-card {
    grid-template-columns: 1fr;
    gap: 42px;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .section-heading,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 74px 62px;
    gap: 68px;
  }

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

  .hero-visual {
    max-width: 680px;
    margin-inline: auto;
  }

  .section-heading {
    gap: 12px;
  }

  .section-heading > p {
    max-width: 650px;
  }

  .process-copy {
    position: static;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .menu-button {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 68px;
    right: 14px;
    left: 14px;
    padding: 16px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(7, 26, 47, 0.98);
    box-shadow: var(--shadow-strong);
  }

  .main-navigation.is-open {
    display: flex;
  }

  .main-navigation > a {
    padding: 12px;
    border-radius: 10px;
  }

  .main-navigation .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.25rem);
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-features {
    display: grid;
  }

  .dashboard-card {
    padding: 16px;
    transform: none;
  }

  .floating-chip {
    display: none;
  }

  .dashboard-stats {
    grid-template-columns: 1fr;
  }

  .capability-strip {
    padding: 18px;
    flex-wrap: wrap;
    gap: 11px 16px;
  }

  .capability-strip i {
    display: none;
  }

  .section {
    padding-block: 80px;
  }

  .cards-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 295px;
  }

  .process-step {
    grid-template-columns: 50px 1fr;
    padding: 22px;
  }

  .process-step > span {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .advantages-card {
    padding: 40px 24px;
  }

  .contact-section {
    padding-bottom: 76px;
  }

  .contact-card {
    padding: 38px 24px;
  }

  .button-light {
    width: 100%;
    font-size: 0.82rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

  .footer-bottom p {
    text-align: left;
  }
}

@media (max-width: 450px) {
  .brand-text {
    display: none;
  }

  .hero-kicker {
    font-size: 0.67rem;
    letter-spacing: 0.08em;
  }

  .operation-row {
    grid-template-columns: auto 1fr;
  }

  .operation-row b {
    grid-column: 2;
  }

  .balance-card {
    align-items: flex-start;
  }

  .balance-icon {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
