:root {
  --bg: #f2f6fb;
  --bg-soft: #edf3fb;
  --surface: #ffffff;
  --surface-2: #f8fbff;
  --ink: #0f2445;
  --ink-soft: #5a6f91;
  --line: #d5e1f3;
  --line-strong: #bdd0ed;
  --primary: #166fff;
  --primary-2: #0d55d2;
  --glow: rgba(22, 111, 255, 0.32);
  --hero-dark: #0a234b;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --shadow-soft: 0 14px 34px rgba(16, 48, 103, 0.12);
  --shadow-card: 0 16px 28px rgba(17, 41, 86, 0.11);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(117, 183, 255, 0.24), transparent 34%),
    radial-gradient(circle at 92% 0%, rgba(77, 150, 255, 0.19), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 28%, #eff4fb 100%);
}

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

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

.container {
  width: min(1240px, 92vw);
  margin: 0 auto;
}

.anchor-offset {
  position: relative;
  top: -94px;
  height: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(90deg, rgba(8, 27, 60, 0.94) 0%, rgba(14, 50, 106, 0.9) 70%, rgba(17, 75, 159, 0.9) 100%);
  border-bottom: 1px solid rgba(196, 221, 255, 0.18);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    linear-gradient(145deg, #14dbff 0%, #1ca6ff 45%, #0d4cc5 100%),
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.75), transparent 58%);
  box-shadow: 0 10px 20px rgba(19, 106, 246, 0.45);
}

.brand-text {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.82rem, 3vw, 2.68rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.main-nav {
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a {
  color: rgba(241, 247, 255, 0.94);
  font-size: 1.02rem;
  font-weight: 600;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  text-shadow: 0 0 22px rgba(174, 212, 255, 0.45);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 45px;
  padding: 0 20px;
  margin-left: 10px;
  color: #fff;
  border-radius: 11px;
  border: 1px solid rgba(189, 218, 255, 0.4);
  font-weight: 700;
  background:
    linear-gradient(145deg, rgba(46, 138, 255, 0.95), rgba(18, 92, 214, 0.96));
  box-shadow: 0 10px 20px rgba(18, 85, 201, 0.35);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 42px;
  border-radius: 11px;
  border: 1px solid rgba(210, 230, 255, 0.34);
  background: transparent;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: #fff;
}

.home-page {
  overflow: clip;
}

.hero {
  position: relative;
  min-height: 620px;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -40px -200px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(40, 139, 255, 0.34), transparent 68%);
  filter: blur(6px);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(95deg, rgba(8, 28, 63, 0.87) 0%, rgba(10, 37, 80, 0.72) 48%, rgba(9, 34, 74, 0.42) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.hero-content {
  color: #f5f9ff;
  max-width: 640px;
  padding: 52px 0;
  animation: fadeUp 0.7s ease both;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(137, 189, 255, 0.2);
  border: 1px solid rgba(199, 225, 255, 0.44);
  color: #e7f2ff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(2.15rem, 4.7vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 18px 0 28px;
  max-width: 62ch;
  font-size: 1.06rem;
  line-height: 1.62;
  color: rgba(237, 245, 255, 0.95);
}

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

.btn {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: saturate(1.08);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-2) 100%);
  box-shadow: 0 12px 22px rgba(16, 90, 212, 0.34);
}

.btn-ghost {
  color: #fff;
  background: rgba(6, 25, 56, 0.28);
  border: 1px solid rgba(194, 223, 255, 0.52);
}

.hero-metrics {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-metrics article {
  background: rgba(240, 248, 255, 0.09);
  border: 1px solid rgba(200, 224, 255, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
}

.hero-metrics strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.14rem;
}

.hero-metrics span {
  color: rgba(226, 239, 255, 0.86);
  font-size: 0.83rem;
}

.hero-board {
  position: relative;
  justify-self: end;
  width: min(640px, 100%);
  display: flex;
  justify-content: flex-end;
  animation: fadeUp 0.84s ease both;
}

.hero-orbit {
  position: absolute;
  right: -12px;
  top: -34px;
  width: min(520px, 92%);
  opacity: 0.72;
  pointer-events: none;
  filter: drop-shadow(0 12px 30px rgba(17, 77, 176, 0.35));
}

.ad-scene {
  position: relative;
  z-index: 2;
  width: min(500px, 100%);
  min-height: 404px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(165deg, rgba(8, 28, 62, 0.72), rgba(6, 24, 56, 0.52)),
    var(--ad-scene-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(176, 211, 252, 0.32);
  box-shadow: 0 30px 38px rgba(6, 23, 54, 0.5);
  transform: perspective(1200px) rotateY(-10deg);
  transform-origin: right center;
}

.ad-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 32, 70, 0.26), rgba(9, 32, 70, 0.58)),
    radial-gradient(circle at 85% 15%, rgba(212, 235, 255, 0.34), transparent 32%);
}

.ad-scene::after {
  content: "";
  position: absolute;
  inset: auto -60px -140px -60px;
  height: 180px;
  background: radial-gradient(circle, rgba(5, 20, 44, 0.68), rgba(5, 20, 44, 0));
}

.ad-scene--vitrina::before {
  background:
    linear-gradient(180deg, rgba(6, 22, 49, 0.16), rgba(6, 22, 49, 0.5)),
    radial-gradient(circle at 78% 11%, rgba(240, 247, 255, 0.38), transparent 36%);
}

.ad-scene--lightbox::before {
  background:
    linear-gradient(180deg, rgba(6, 22, 49, 0.22), rgba(6, 22, 49, 0.62)),
    radial-gradient(circle at 88% 12%, rgba(245, 250, 255, 0.42), transparent 34%);
}

.ad-billboard {
  position: absolute;
  right: 24px;
  top: 38px;
  z-index: 5;
  width: min(420px, calc(100% - 48px));
  min-height: 322px;
  transform: perspective(1200px) rotateY(-8deg);
  transform-origin: right center;
}

.ad-frame {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: 278px;
  border-radius: 16px;
  padding: 18px;
  border: 3px solid rgba(222, 238, 255, 0.95);
  background:
    linear-gradient(160deg, rgba(10, 35, 75, 0.94), rgba(12, 45, 97, 0.95));
  box-shadow: 0 26px 38px rgba(6, 22, 52, 0.54), 0 0 0 7px rgba(185, 218, 255, 0.18);
}

.ad-screen {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 236px;
  border-radius: 10px;
  padding: 36px 24px 26px;
  background:
    linear-gradient(150deg, rgba(7, 31, 71, 0.9), rgba(10, 48, 110, 0.82)),
    var(--ad-screen-image);
  background-size: cover;
  background-position: center;
}

.ad-glare {
  position: absolute;
  inset: -80px -30px auto auto;
  width: 260px;
  height: 220px;
  background: radial-gradient(circle, rgba(224, 244, 255, 0.52), rgba(224, 244, 255, 0));
  transform: rotate(18deg);
  pointer-events: none;
}

.ad-screen p {
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.05rem, 4.2vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.ad-screen span {
  display: block;
  margin-top: 12px;
  color: rgba(241, 247, 255, 0.98);
  font-size: clamp(1.42rem, 2.65vw, 2.22rem);
  font-weight: 700;
}

.ad-screen strong {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: clamp(1.56rem, 2.9vw, 2.45rem);
  line-height: 1.1;
}

.ad-support {
  position: absolute;
  left: 56%;
  top: 275px;
  width: 18px;
  height: 108px;
  border-radius: 14px;
  background: linear-gradient(180deg, #6f89ab, #445a78);
  box-shadow: inset 0 0 0 1px rgba(220, 236, 255, 0.2);
}

.ad-ground-shadow {
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 146px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(7, 22, 49, 0.7), rgba(7, 22, 49, 0.1));
  filter: blur(1px);
  transform: translateX(-50%);
}

.ad-vitrina {
  position: absolute;
  right: 24px;
  bottom: 22px;
  width: min(394px, calc(100% - 48px));
  border-radius: 16px 16px 10px 10px;
  overflow: hidden;
  border: 2px solid rgba(226, 238, 255, 0.88);
  background: linear-gradient(180deg, rgba(9, 36, 77, 0.9), rgba(9, 32, 68, 0.9));
  box-shadow: 0 24px 32px rgba(6, 22, 52, 0.5);
}

.ad-vitrina-sign {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f0f7ff;
  background: linear-gradient(145deg, #153f84, #0f2f65);
  border-bottom: 1px solid rgba(200, 225, 255, 0.35);
}

.ad-vitrina-glass {
  position: relative;
  min-height: 188px;
  padding: 24px 16px;
  background:
    linear-gradient(160deg, rgba(8, 32, 68, 0.55), rgba(8, 29, 62, 0.8)),
    var(--ad-screen-image);
  background-size: cover;
  background-position: center;
}

.ad-vitrina-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(231, 244, 255, 0.34) 0%, rgba(231, 244, 255, 0) 38%),
    repeating-linear-gradient(
      90deg,
      rgba(210, 229, 255, 0.08) 0,
      rgba(210, 229, 255, 0.08) 2px,
      rgba(210, 229, 255, 0) 2px,
      rgba(210, 229, 255, 0) 34px
    );
}

.ad-vitrina-poster {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  min-height: 138px;
  padding: 22px 16px;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid rgba(210, 229, 255, 0.4);
  background: linear-gradient(145deg, rgba(8, 35, 77, 0.72), rgba(9, 43, 94, 0.74));
}

.ad-vitrina-poster span {
  color: rgba(234, 245, 255, 0.94);
  font-size: clamp(1.14rem, 2vw, 1.7rem);
  font-weight: 600;
}

.ad-vitrina-poster strong {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2.25vw, 1.9rem);
  line-height: 1.15;
}

.ad-lightbox {
  position: absolute;
  right: 88px;
  bottom: 18px;
  width: 238px;
  min-height: 334px;
}

.ad-lightbox-frame {
  border-radius: 12px;
  border: 2px solid rgba(220, 236, 255, 0.92);
  background: linear-gradient(160deg, rgba(11, 36, 76, 0.94), rgba(8, 30, 63, 0.92));
  padding: 12px;
  box-shadow: 0 24px 32px rgba(6, 22, 52, 0.55);
}

.ad-lightbox-screen {
  border-radius: 8px;
  min-height: 256px;
  padding: 24px 16px;
  display: grid;
  align-content: center;
  gap: 9px;
  background:
    linear-gradient(150deg, rgba(8, 35, 77, 0.82), rgba(8, 37, 82, 0.65)),
    var(--ad-screen-image);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(210, 229, 255, 0.36);
}

.ad-lightbox-screen p {
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.82rem);
  line-height: 1.05;
  font-weight: 700;
}

.ad-lightbox-screen span {
  color: rgba(234, 245, 255, 0.95);
  font-size: 1.04rem;
  font-weight: 600;
}

.ad-lightbox-screen strong {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.25;
}

.ad-lightbox-leg {
  width: 16px;
  height: 78px;
  border-radius: 10px;
  background: linear-gradient(180deg, #7089ac, #445a78);
  margin: 0 auto;
}

.ad-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  max-width: min(300px, calc(100% - 36px));
  border-radius: 13px;
  border: 1px solid rgba(200, 225, 255, 0.44);
  background: linear-gradient(150deg, rgba(247, 252, 255, 0.18), rgba(201, 227, 255, 0.1));
  backdrop-filter: blur(9px);
  color: #e9f4ff;
  padding: 8px 10px;
  box-shadow: 0 16px 26px rgba(7, 24, 55, 0.35);
  z-index: 8;
}

.ad-caption p {
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.34;
  color: rgba(229, 241, 255, 0.96);
}

.section {
  padding: 62px 0;
}

.section-head {
  margin-bottom: 20px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 11px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(130deg, rgba(223, 237, 255, 0.95), rgba(205, 225, 252, 0.84));
  border: 1px solid var(--line-strong);
  color: #204f95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.71rem;
  font-weight: 800;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.95rem);
  letter-spacing: -0.03em;
}

.card-grid {
  display: grid;
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.service-card {
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.6s ease both;
}

.service-card:nth-child(2) {
  animation-delay: 0.05s;
}

.service-card:nth-child(3) {
  animation-delay: 0.1s;
}

.service-card:nth-child(4) {
  animation-delay: 0.15s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 34px rgba(17, 57, 114, 0.16);
}

.card-image-wrap {
  padding: 12px 12px 0;
}

.service-card img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  border-radius: 11px;
}

.card-body {
  position: relative;
  text-align: center;
  padding: 15px 18px 19px;
}

.service-index {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #2a60b0;
}

.card-body h3,
.card-body h2 {
  margin: 0;
  padding-top: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.24rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.card-body p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.projects-section {
  padding-top: 14px;
}

.project-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 148px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 0.6s ease both;
}

.project-card:nth-child(2) {
  animation-delay: 0.05s;
}

.project-card:nth-child(3) {
  animation-delay: 0.1s;
}

.project-card:nth-child(4) {
  animation-delay: 0.15s;
}

.project-card:nth-child(5) {
  animation-delay: 0.2s;
}

.project-card img {
  width: 100%;
  height: 148px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.project-card:hover img {
  transform: scale(1.05);
}

.project-info {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 10px;
  padding: 8px 9px;
  background: linear-gradient(145deg, rgba(8, 30, 69, 0.86), rgba(15, 55, 113, 0.82));
  color: #eaf3ff;
  backdrop-filter: blur(8px);
}

.project-info h3 {
  margin: 0;
  font-size: 0.9rem;
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.project-info span {
  display: inline-flex;
  margin-top: 5px;
  min-height: 20px;
  padding: 0 7px;
  align-items: center;
  border-radius: 999px;
  background: rgba(181, 216, 255, 0.2);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.project-action {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.btn-projects {
  min-width: 320px;
  gap: 8px;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  fill: currentColor;
  flex: none;
}

.icon-arrow-right {
  width: 1.1rem;
  height: 1.1rem;
}

.reasons-section {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

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

.reason-card {
  padding: 24px 16px 20px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.6s ease both;
}

.reason-card:nth-child(2) {
  animation-delay: 0.05s;
}

.reason-card:nth-child(3) {
  animation-delay: 0.1s;
}

.reason-card:nth-child(4) {
  animation-delay: 0.15s;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 32px rgba(16, 54, 108, 0.16);
}

.reason-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 12px;
  border-radius: 16px;
  color: #195fcb;
  display: grid;
  place-items: center;
  font-size: 1.38rem;
  background:
    linear-gradient(140deg, #edf5ff 0%, #dbe9ff 100%);
  border: 1px solid #c7daf5;
}

.icon-reason {
  width: 1.5rem;
  height: 1.5rem;
}

.reason-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.26;
}

.reason-card p {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.5;
}

.cta {
  position: relative;
  margin-top: 28px;
  background-image: var(--cta-bg);
  background-size: cover;
  background-position: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: auto auto -180px -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 136, 255, 0.3), transparent 70%);
  pointer-events: none;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(92deg, rgba(8, 32, 70, 0.92) 0%, rgba(11, 43, 94, 0.8) 48%, rgba(13, 52, 112, 0.48) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  min-height: 300px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
  padding: 36px 0;
}

.cta-kicker {
  background: rgba(173, 205, 255, 0.2);
  border-color: rgba(203, 227, 255, 0.44);
  color: #e8f3ff;
}

.cta-copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.8vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.cta-copy p {
  margin: 15px 0 22px;
  color: rgba(237, 245, 255, 0.96);
  max-width: 58ch;
  line-height: 1.58;
}

.cta-card {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: min(420px, 100%);
  border-radius: 16px;
  border: 1px solid rgba(201, 225, 255, 0.42);
  background: linear-gradient(150deg, rgba(245, 251, 255, 0.2), rgba(223, 239, 255, 0.08));
  backdrop-filter: blur(10px);
  color: #f5f9ff;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(8, 30, 67, 0.34);
}

.cta-lines {
  position: absolute;
  right: -68px;
  top: -10px;
  width: 320px;
  opacity: 0.7;
  pointer-events: none;
}

.cta-card-title {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: rgba(227, 241, 255, 0.95);
  font-family: "Sora", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.cta-card a,
.cta-card p {
  position: relative;
  z-index: 1;
  margin: 8px 0;
  display: block;
  color: #fff;
  font-size: 1rem;
}

.site-footer {
  background:
    linear-gradient(170deg, #0b2a58 0%, #092147 60%, #081d3e 100%);
  color: rgba(235, 243, 255, 0.95);
  border-top: 1px solid rgba(214, 232, 255, 0.2);
}

.footer-grid {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1.05fr auto auto;
  align-items: center;
  gap: 30px;
  padding: 18px 0;
}

.footer-contact h3 {
  margin: 0 0 8px;
  font-family: "Sora", sans-serif;
  font-size: 1.22rem;
}

.footer-contact p {
  margin: 4px 0;
  font-size: 0.95rem;
}

.footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 22px;
  padding: 0 24px;
  border-left: 1px solid rgba(207, 229, 255, 0.2);
  border-right: 1px solid rgba(207, 229, 255, 0.2);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  font-size: 0.94rem;
  color: rgba(231, 241, 255, 0.95);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(206, 228, 255, 0.3);
  background: rgba(233, 244, 255, 0.08);
}

.footer-social i {
  font-size: 1.12rem;
}

.icon-social {
  width: 1.05rem;
  height: 1.05rem;
}

.footer-bottom {
  border-top: 1px solid rgba(209, 231, 255, 0.16);
  padding: 10px 0 14px;
}

.footer-bottom small {
  color: rgba(225, 238, 255, 0.76);
}

.text-link {
  color: #1a62d1;
  font-weight: 700;
}

.badge {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 10px;
  color: #2458a8;
  font-size: 0.81rem;
  font-weight: 700;
  background: #eaf2ff;
}

.page-main {
  min-height: 60vh;
}

.inner-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(130deg, #0d326d 0%, #1a5fbc 100%);
  color: #fff;
  padding: 72px 0 64px;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: auto -120px -180px auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 168, 255, 0.38), transparent 70%);
}

.inner-hero h1 {
  margin: 0;
  position: relative;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
}

.inner-hero p {
  margin: 12px 0 0;
  position: relative;
  color: rgba(236, 244, 255, 0.95);
  max-width: 62ch;
}

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

.blog-grid.full {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-card {
  overflow: hidden;
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 30px rgba(16, 53, 107, 0.16);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card .card-body {
  text-align: left;
}

.blog-post {
  padding: 62px 0 74px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon-arrow-left {
  width: 1.05rem;
  height: 1.05rem;
}

.blog-post h1 {
  margin: 12px 0 12px;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.95rem, 3.7vw, 2.85rem);
  line-height: 1.13;
}

.post-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 68ch;
}

.post-cover {
  margin-top: 18px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.post-cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.post-content {
  margin-top: 24px;
  max-width: 74ch;
  color: #2b3f60;
  line-height: 1.72;
}

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

@media (max-width: 1180px) {
  .main-nav ul {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 700px;
  }

  .hero-board {
    justify-self: start;
  }

  .hero-orbit {
    right: auto;
    left: -24px;
    top: -26px;
  }

  .ad-scene {
    transform: none;
    width: min(600px, 100%);
  }

  .ad-billboard {
    right: 20px;
    width: min(460px, calc(100% - 40px));
  }

  .ad-vitrina {
    right: 20px;
    width: min(460px, calc(100% - 40px));
  }

  .ad-lightbox {
    right: 40px;
  }

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

  .project-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-card {
    justify-self: start;
  }
}

@media (max-width: 920px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    max-height: 0;
    overflow: hidden;
    background: rgba(9, 31, 69, 0.98);
    border-bottom: 1px solid rgba(198, 223, 255, 0.2);
    transition: max-height 0.25s ease;
  }

  .site-header.menu-open .main-nav {
    max-height: 340px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 4vw 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 16px;
  }

  .footer-links-wrap {
    grid-template-columns: repeat(2, auto);
    border-right: 0;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(1240px, 94vw);
  }

  .hero {
    min-height: 650px;
  }

  .hero-grid {
    min-height: 650px;
  }

  .hero-content {
    padding-top: 30px;
  }

  .hero-orbit {
    width: min(420px, 100%);
    left: -20px;
    top: -20px;
    opacity: 0.6;
  }

  .ad-scene {
    min-height: 350px;
  }

  .ad-billboard {
    top: 26px;
    right: 14px;
    width: min(360px, calc(100% - 28px));
    min-height: 258px;
  }

  .ad-frame {
    min-height: 214px;
    padding: 12px;
  }

  .ad-screen {
    min-height: 188px;
    padding: 24px 14px 14px;
  }

  .ad-support {
    top: 206px;
    height: 74px;
  }

  .ad-vitrina {
    right: 12px;
    bottom: 16px;
    width: min(356px, calc(100% - 24px));
  }

  .ad-vitrina-sign {
    min-height: 50px;
  }

  .ad-vitrina-glass {
    min-height: 158px;
    padding: 16px 12px;
  }

  .ad-vitrina-poster {
    min-height: 114px;
    padding: 16px 12px;
  }

  .ad-lightbox {
    right: 24px;
    bottom: 14px;
    width: 194px;
    min-height: 280px;
  }

  .ad-lightbox-screen {
    min-height: 208px;
    padding: 18px 12px;
  }

  .ad-lightbox-leg {
    height: 58px;
  }

  .ad-caption {
    left: 12px;
    bottom: 10px;
    max-width: calc(100% - 24px);
    padding: 7px 8px;
  }

  .ad-caption p {
    font-size: 0.73rem;
  }

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

  .section {
    padding: 44px 0;
  }

  .services-grid,
  .project-strip,
  .reasons-grid,
  .blog-grid,
  .blog-grid.full {
    grid-template-columns: 1fr;
  }

  .project-card img {
    height: 182px;
  }

  .btn-projects {
    min-width: 100%;
  }

  .footer-links-wrap {
    grid-template-columns: 1fr;
    padding: 0;
    border-left: 0;
    gap: 10px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
  }

  .cta-lines {
    right: -110px;
    width: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
