:root {
  --blue: #086bff;
  --blue-strong: #004ee8;
  --blue-soft: #4ca0ff;
  --green: #08bf54;
  --green-dark: #07983e;
  --navy: #020b1d;
  --navy-2: #061734;
  --navy-3: #082454;
  --text: #07142f;
  --muted: #4d5669;
  --line: rgba(11, 107, 255, 0.28);
  --white: #ffffff;
  --page: #f6f9fe;
  --radius: 8px;
  --shadow: 0 20px 45px rgba(10, 30, 70, 0.14);
  --shadow-blue: 0 16px 36px rgba(8, 107, 255, 0.32);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--text);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

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

.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;
}

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

button {
  font: inherit;
}

.site-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 14%, rgba(8, 107, 255, 0.08), transparent 32rem),
    linear-gradient(180deg, #fbfdff 0, #f4f8ff 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  box-shadow: 0 10px 34px rgba(8, 18, 45, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: clamp(218px, 17.9vw, 314px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.7vw, 48px);
  color: #1d263b;
  font-size: 19px;
  letter-spacing: 0;
}

.main-nav a {
  position: relative;
  padding: 14px 0 18px;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 210ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--blue-strong);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(8, 107, 255, 0.22);
  border-radius: 8px;
  background: #fff;
  color: var(--blue);
  cursor: pointer;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 210ms ease,
    box-shadow 210ms ease,
    border-color 210ms ease,
    background 210ms ease;
}

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

.btn-img-icon {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex: 0 0 auto;
}

.btn-primary {
  background: linear-gradient(180deg, #087bff 0%, #004edf 100%);
  box-shadow: var(--shadow-blue);
}

.btn-primary:hover {
  box-shadow: 0 20px 44px rgba(8, 107, 255, 0.42);
}

.btn-green {
  background: linear-gradient(180deg, #10d963 0%, #07a343 100%);
  box-shadow: 0 16px 34px rgba(8, 191, 84, 0.34);
}

.btn-green:hover {
  box-shadow: 0 20px 44px rgba(8, 191, 84, 0.42);
}

.btn-outline {
  color: #fff;
  border-color: rgba(68, 134, 255, 0.78);
  background: rgba(2, 14, 38, 0.18);
}

.btn-outline:hover {
  background: rgba(8, 107, 255, 0.12);
}

.btn-square {
  min-width: 220px;
  min-height: 50px;
  border-radius: 8px;
}

.btn-light-outline {
  color: var(--blue);
  border-color: rgba(8, 107, 255, 0.58);
  background: #fff;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 88% 42%, rgba(6, 91, 218, 0.32), transparent 25rem),
    radial-gradient(circle at 14% 18%, rgba(0, 84, 230, 0.18), transparent 22rem),
    linear-gradient(135deg, #020812 0%, #061430 52%, #030b1b 100%);
}

.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  width: 52rem;
  height: 52rem;
  border: 1px solid rgba(50, 119, 255, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.section-dark::before {
  left: -28rem;
  top: -20rem;
}

.section-dark::after {
  right: -32rem;
  bottom: -25rem;
}

.dot-field {
  position: absolute;
  width: 115px;
  height: 115px;
  opacity: 0.28;
  background-image: radial-gradient(circle, rgba(42, 125, 255, 0.9) 1.5px, transparent 2px);
  background-size: 18px 18px;
  pointer-events: none;
}

.dot-field.one {
  left: 56px;
  top: 70px;
}

.dot-field.two {
  right: 92px;
  top: 130px;
}

.hero {
  position: relative;
  min-height: 766px;
  padding: 96px 0 74px;
}

.hero.section-dark::before,
.hero.section-dark::after {
  display: none;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg {
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-shade {
  z-index: 1;
  background: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  align-items: center;
  gap: 120px;
}

.hero-content {
  max-width: 560px;
  padding-left: 58px;
}

.hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(48px, 4vw, 64px);
  line-height: 1.11;
  letter-spacing: 0;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 22px;
  line-height: 1.55;
}

.hero p strong {
  color: #2e82ff;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  max-width: 520px;
}

.hero-visual {
  position: relative;
  min-height: 650px;
  align-self: stretch;
}

.stats-mini {
  position: absolute;
  display: none;
  right: 76px;
  bottom: 112px;
  display: grid;
  gap: 7px;
  color: #126fff;
  opacity: 0.82;
}

.stats-mini span {
  width: 74px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, #1478ff, #07359a);
  box-shadow: 0 0 24px rgba(12, 105, 255, 0.5);
}

.stats-mini span:nth-child(1) {
  height: 48px;
}

.stats-mini span:nth-child(2) {
  height: 80px;
}

.stats-mini span:nth-child(3) {
  height: 116px;
}

.feature-strip {
  padding: 35px 0 42px;
  background: #f7faff;
}

.features-panel {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
  min-height: 190px;
  padding: 31px 22px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(21, 38, 78, 0.11);
}

.feature-item {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  padding: 0 26px;
  text-align: center;
  border-right: 1px solid rgba(8, 20, 47, 0.13);
}

.feature-item:last-child {
  border-right: 0;
}

.feature-item .icon {
  width: 62px;
  height: 62px;
  color: var(--blue);
  stroke-width: 1.8;
}

.feature-img-icon {
  display: block;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.feature-item h3 {
  margin: 0;
  color: #07142f;
  font-size: 18px;
  line-height: 1.22;
  font-weight: 900;
}

.feature-item p {
  margin: 0;
  color: #3f4657;
  font-size: 16px;
  line-height: 1.45;
}

.section-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.eyebrow {
  display: block;
  margin-bottom: 14px;
  color: #2782ff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-header h2,
.management-copy h2,
.benefits h2,
.clients h2 {
  margin: 0;
  font-size: clamp(42px, 3.8vw, 58px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.section-header p {
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1.48;
}

.services {
  padding: 62px 0 68px;
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 254px;
  padding: 28px 30px 24px;
  border: 1px solid rgba(22, 115, 255, 0.48);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 24, 58, 0.86), rgba(2, 12, 31, 0.72));
  box-shadow: inset 0 0 30px rgba(8, 107, 255, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(66, 148, 255, 0.9);
  box-shadow: 0 22px 36px rgba(0, 0, 0, 0.18), inset 0 0 34px rgba(8, 107, 255, 0.13);
}

.service-card .icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  color: #087bff;
  stroke-width: 1.7;
}

.service-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 22px;
  line-height: 1.16;
  font-weight: 900;
}

.service-card p {
  min-height: 76px;
  margin: 0 0 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.45;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1680ff;
  font-size: 15px;
  font-weight: 900;
}

.link-arrow .icon {
  width: 16px;
  height: 16px;
  margin: 0;
  stroke-width: 2.6;
  transition: transform 180ms ease;
}

.link-arrow:hover .icon {
  transform: translateX(4px);
}

.section-actions {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-top: 26px;
}

.management {
  padding: 34px 0 52px;
  background: #fbfdff;
}

.management-panel {
  position: relative;
  display: grid;
  min-height: 512px;
  place-items: center;
  overflow: hidden;
  padding: 70px 40px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 89% 44%, rgba(14, 102, 255, 0.09), transparent 19rem),
    #fff;
  box-shadow: 0 15px 38px rgba(17, 36, 82, 0.09);
}

.management-panel::before,
.management-panel::after {
  content: "";
  position: absolute;
  display: none;
  right: 115px;
  border-radius: 50%;
  border: 28px solid rgba(8, 107, 255, 0.07);
  opacity: 0.9;
}

.management-panel::before {
  top: 62px;
  width: 218px;
  height: 218px;
  box-shadow: 0 0 0 70px rgba(8, 107, 255, 0.035);
}

.management-panel::after {
  bottom: 72px;
  right: 176px;
  width: 108px;
  height: 108px;
}

.management-gears {
  position: absolute;
  right: 120px;
  top: 50%;
  z-index: 0;
  width: 365px;
  max-width: 30%;
  opacity: 0.75;
  transform: translateY(-50%);
  pointer-events: none;
}

.management-copy {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.management-copy h2 {
  color: #07142f;
}

.management-copy p {
  margin: 22px auto 28px;
  color: #414a5c;
  font-size: 20px;
  line-height: 1.55;
}

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 70px;
  max-width: 720px;
  margin: 0 auto 36px;
  text-align: left;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #17233b;
  font-size: 19px;
  font-weight: 700;
}

.check-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(8, 107, 255, 0.28);
}

.check-icon .icon {
  width: 16px;
  height: 16px;
  stroke-width: 3;
}

.cta-band {
  padding: 46px 0 56px;
  background: #fbfdff;
}

.cta-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  min-height: 212px;
  padding: 40px 108px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(9, 119, 255, 0.97), rgba(0, 62, 191, 0.97)),
    radial-gradient(circle at 16% 40%, rgba(255, 255, 255, 0.15), transparent 18rem);
  box-shadow: 0 21px 45px rgba(7, 74, 187, 0.27);
}

.cta-icon {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: #fff;
}

.cta-icon .icon {
  width: 68px;
  height: 68px;
  stroke-width: 1.8;
}

.cta-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(36px, 3.5vw, 52px);
  line-height: 1.12;
  font-weight: 900;
}

.cta-panel p,
.cta-action p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  font-weight: 600;
}

.cta-action {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.clients {
  padding: 70px 0 78px;
}

.clients-panel {
  position: relative;
  z-index: 1;
  padding: 66px 32px 54px;
  border: 1px solid rgba(61, 138, 255, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 96% 13%, rgba(8, 107, 255, 0.2), transparent 22rem),
    rgba(3, 15, 36, 0.62);
  box-shadow: inset 0 0 42px rgba(8, 107, 255, 0.08);
}

.clients .section-header {
  margin-bottom: 48px;
}

.clients .section-header p {
  max-width: 720px;
}

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

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(74, 143, 255, 0.42);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(7, 27, 60, 0.95), rgba(4, 18, 43, 0.94));
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18), inset 0 0 28px rgba(8, 107, 255, 0.12);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(78, 157, 255, 0.88);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.25), inset 0 0 34px rgba(8, 107, 255, 0.17);
}

.project-card img {
  width: 100%;
  aspect-ratio: 1.96 / 1;
  object-fit: cover;
  border-bottom: 1px solid rgba(74, 143, 255, 0.2);
}

.project-info {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  flex: 1;
  padding: 20px 22px 14px;
}

.project-logo {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 3px solid rgba(31, 115, 255, 0.38);
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, rgba(20, 119, 255, 0.32), rgba(255, 255, 255, 0.07));
  font-size: 21px;
  font-weight: 900;
}

.project-info h3 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.project-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.project-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 22px 22px 100px;
  color: #2f93ff;
  font-size: 16px;
  font-weight: 700;
}

.project-more .icon {
  width: 18px;
  height: 18px;
}

.clients .client-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 22px;
}

.clients .client-list-card {
  overflow: hidden;
  border: 1px solid rgba(58, 139, 255, 0.72);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 107, 255, 0.16), transparent 18rem),
    rgba(2, 13, 33, 0.92);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(72, 150, 255, 0.16);
}

.clients .client-thumb {
  height: 238px;
  margin: 14px 14px 0;
  overflow: hidden;
  border-radius: 10px;
}

.clients .client-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clients .client-body {
  display: block;
  padding: 22px 20px 25px;
  text-align: center;
}

.clients .client-body h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.clients .client-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.4;
}

.clients .client-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  color: #2389ff;
  font-size: 21px;
  font-weight: 700;
}

.clients .client-body a .icon {
  width: 24px;
  height: 24px;
}

.benefits {
  padding: 68px 0 74px;
  background: #fbfdff;
}

.benefits .section-header p {
  color: #555d6f;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.benefit-card {
  min-height: 214px;
  padding: 30px 20px 24px;
  border: 1px solid rgba(13, 38, 82, 0.08);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 12px 30px rgba(18, 43, 92, 0.08);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 38px rgba(18, 43, 92, 0.13);
}

.benefit-card .icon-wrap {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  margin: 0 auto 16px;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(8, 107, 255, 0.08);
}

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

.benefit-card h3 {
  margin: 0 0 12px;
  color: #07142f;
  font-size: 20px;
  line-height: 1.16;
  font-weight: 900;
}

.benefit-card p {
  margin: 0;
  color: #475164;
  font-size: 16px;
  line-height: 1.45;
}

.footer {
  padding: 70px 0 0;
}

.footer-top-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1278px;
  min-height: 90px;
  margin: 0 auto 64px;
  padding: 18px 28px 18px 90px;
  border: 1px solid rgba(57, 128, 255, 0.28);
  border-radius: 8px;
  background: rgba(5, 24, 58, 0.86);
  box-shadow: inset 0 0 30px rgba(8, 107, 255, 0.08);
}

.footer-top-cta p {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.footer-top-cta .icon {
  width: 40px;
  height: 40px;
  color: var(--blue);
}

.footer-top-cta .btn .icon {
  color: #fff;
  opacity: 1;
  stroke-width: 2.4;
}

.footer-rocket {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 0.95fr;
  gap: 68px;
  padding-bottom: 64px;
}

.footer-column {
  min-width: 0;
}

.footer-brand-title {
  margin: 0 0 28px;
  color: #2782ff;
  font-size: 20px;
  font-weight: 900;
}

.footer h3 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 900;
}

.footer ul {
  display: grid;
  gap: 19px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer li,
.footer a,
.footer-address span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.footer a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: color 180ms ease;
}

.footer a:hover {
  color: #fff;
}

.footer .chev {
  color: var(--blue);
  font-weight: 900;
}

.footer-column + .footer-column {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 68px;
}

.footer-address li {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-address .icon {
  color: var(--blue);
}

.footer-pulse {
  color: #fff;
  animation: footerPulse 1.9s ease-in-out infinite;
}

.footer-pulse .icon,
.footer-pulse span {
  color: #fff;
  text-shadow: 0 0 18px rgba(39, 130, 255, 0.58);
}

.socials {
  display: flex;
  gap: 14px;
  margin-bottom: 28px;
}

.socials a {
  display: inline-flex;
  width: 74px;
  height: 74px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  color: #2782ff;
  background: transparent;
  transition: transform 180ms ease, filter 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 12px 20px rgba(8, 107, 255, 0.22));
}

.socials img {
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero h1,
.section-header h2,
.management-copy h2,
.benefits h2,
.clients h2,
.cta-panel h2 {
  font-weight: 700;
}

.btn,
.feature-item h3,
.eyebrow,
.service-card h3,
.link-arrow,
.check-item,
.project-info h3,
.benefit-card h3,
.footer-brand-title,
.footer h3,
.socials a {
  font-weight: 700;
}

.hero p strong {
  font-weight: 700;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 17px;
}

.footer-bottom-links {
  display: flex;
  gap: 58px;
}

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

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

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 26px;
  z-index: 80;
  display: block;
  width: 92px;
  height: 92px;
  filter: drop-shadow(0 16px 24px rgba(0, 170, 70, 0.32));
  animation: whatsappFloatPulse 2.6s ease-in-out infinite;
}

.whatsapp-float img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  filter: drop-shadow(0 20px 30px rgba(0, 170, 70, 0.42));
}

@keyframes floatMockups {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes footerPulse {
  0%,
  100% {
    transform: translateX(0) scale(1);
    opacity: 0.92;
    filter: drop-shadow(0 0 5px rgba(39, 130, 255, 0.32));
  }
  50% {
    transform: translateX(3px) scale(1.035);
    opacity: 1;
    filter: drop-shadow(0 0 14px rgba(39, 130, 255, 0.9));
  }
}

@keyframes whatsappFloatPulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-5px) scale(1.04);
  }
}

@media (max-width: 1500px) {
  .container {
    width: min(1320px, calc(100% - 56px));
  }

  .brand img {
    width: clamp(220px, 18vw, 268px);
  }

  .main-nav {
    gap: 20px;
    font-size: 16px;
  }

  .header-inner {
    gap: 24px;
  }

  .header-actions .btn {
    padding-inline: 26px;
  }
}

@media (max-width: 1320px) {
  .container {
    width: min(1180px, calc(100% - 56px));
  }

  .header-inner {
    min-height: 136px;
  }

  .main-nav {
    gap: 22px;
    font-size: 16px;
  }

  .btn {
    padding-inline: 26px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 510px) minmax(0, 1fr);
    gap: 72px;
  }

  .hero-content {
    max-width: 510px;
    padding-left: 16px;
  }

  .hero p,
  .hero-actions {
    max-width: 490px;
  }

  .hero-visual {
    min-height: 540px;
  }

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

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

  .benefit-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cta-panel {
    padding-inline: 54px;
  }

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

  .footer-column + .footer-column {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 1080px) {
  .site-header {
    border-radius: 0 0 14px 14px;
  }

  .header-inner {
    min-height: 98px;
  }

  .mobile-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    left: 28px;
    right: 28px;
    top: calc(100% + 10px);
    display: grid;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid rgba(8, 107, 255, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .main-nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(8, 20, 47, 0.08);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-actions .btn {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 62px 0 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    min-height: 410px;
  }

  .stats-mini {
    display: none;
  }

  .features-panel {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .feature-item:nth-child(2n) {
    border-right: 0;
  }

  .feature-item:last-child {
    grid-column: 1 / -1;
    border-right: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 24px;
    padding: 38px 32px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 620px);
  }

  .brand img {
    width: 190px;
  }

  .whatsapp-float {
    right: 8px;
    bottom: 18px;
    width: 74px;
    height: 74px;
  }

  .header-inner {
    min-height: 82px;
  }

  .hero {
    min-height: 820px;
    padding: 42px 0 56px;
  }

  .hero-bg img {
    object-fit: cover;
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2, 8, 18, 0.74) 0%, rgba(2, 8, 18, 0.69) 45%, rgba(2, 8, 18, 0.38) 100%),
      linear-gradient(90deg, rgba(2, 8, 18, 0.48), rgba(2, 8, 18, 0.14));
  }

  .hero-grid {
    min-height: 720px;
    align-items: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero-actions,
  .section-actions,
  .management-copy .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    min-height: 56px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .hero-visual {
    display: none;
  }

  .feature-strip {
    padding: 22px 0 28px;
  }

  .features-panel {
    grid-template-columns: 1fr;
    padding: 26px 18px;
  }

  .feature-item,
  .feature-item:nth-child(2n) {
    min-height: 0;
    padding: 0 6px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 20, 47, 0.1);
  }

  .feature-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .section-header {
    margin-bottom: 34px;
  }

  .section-header h2,
  .management-copy h2,
  .benefits h2,
  .clients h2 {
    font-size: 36px;
  }

  .section-header p {
    font-size: 17px;
  }

  .services {
    padding: 48px 0;
  }

  .services-grid,
  .project-grid,
  .clients .client-list-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .service-card p {
    min-height: 0;
  }

  .management-panel {
    min-height: 0;
    padding: 44px 18px;
  }

  .management-panel::before,
  .management-panel::after {
    display: none;
  }

  .management-gears {
    display: none;
  }

  .management-copy p {
    font-size: 17px;
  }

  .check-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 28px;
  }

  .check-item {
    font-size: 16px;
  }

  .cta-icon {
    width: 92px;
    height: 92px;
  }

  .cta-icon .icon {
    width: 50px;
    height: 50px;
  }

  .cta-icon img {
    width: 52px;
    height: 52px;
  }

  .cta-panel h2 {
    font-size: 34px;
  }

  .cta-panel p,
  .cta-action p {
    font-size: 17px;
  }

  .clients {
    padding: 42px 0;
  }

  .clients-panel {
    padding: 42px 14px 36px;
    border-radius: 18px;
  }

  .project-info {
    grid-template-columns: 54px minmax(0, 1fr);
    padding: 18px;
  }

  .project-more {
    margin: 0 18px 20px 90px;
  }

  .project-logo {
    width: 54px;
    height: 54px;
  }

  .benefits {
    padding: 48px 0;
  }

  .footer {
    padding-top: 46px;
  }

  .footer-top-cta {
    display: grid;
    padding: 24px;
    text-align: center;
  }

  .footer-top-cta p {
    justify-content: center;
    font-size: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-bottom: 40px;
  }

  .footer h3 {
    font-size: 24px;
  }

  .footer li,
  .footer a,
  .footer-address span {
    font-size: 17px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    min-height: 112px;
    padding: 24px 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
