:root {
  --bg: #f4f7fa;
  --bg-soft: #edf2f6;
  --ink: #0a1b2b;
  --ink-soft: #526476;
  --primary: #0a5bd3;
  --primary-2: #1677f0;
  --accent: #ff6b3d;
  --accent-hover: #ed5528;
  --line: #dce4eb;
  --line-strong: #bdcbd8;
  --card: #ffffff;
  --navy: #071827;
  --navy-soft: #0d263c;
  --cyan: #55d8ff;
  --radius: 24px;
  --shadow: 0 18px 50px rgba(8, 29, 49, 0.08);
  --shadow-xl: 0 34px 80px rgba(8, 29, 49, 0.16);
}

/* Keep section headings visible below the sticky header after anchor navigation. */
:where(section[id]) {
  scroll-margin-top: 112px;
}

/* Portfolio landing */
.portfolio-hero {
  padding: 18px 0 70px;
}

.portfolio-backlink {
  display: inline-flex;
  margin: 0 0 18px;
  color: #4e6f8c;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
}

.portfolio-backlink:hover {
  color: var(--primary);
}

.portfolio-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(119, 151, 179, .28);
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 40px 95px rgba(5, 24, 40, .22);
}

.portfolio-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
  background: radial-gradient(circle at 95% 8%, rgba(85, 216, 255, .2), transparent 17rem), linear-gradient(145deg, #0b2b45 0%, #071827 70%);
}

.portfolio-hero-copy h1 {
  max-width: 700px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  letter-spacing: -.05em;
  line-height: 1.04;
}

.portfolio-hero-lead {
  max-width: 640px;
  margin: 0;
  color: #c6d9e8;
  font-size: clamp(.94rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.portfolio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.portfolio-actions .btn {
  padding: 12px 16px;
  font-size: .92rem;
}

.portfolio-actions .btn-ghost {
  color: #e6f3fb;
  border-color: rgba(198, 220, 235, .32);
  background: rgba(255, 255, 255, .08);
}

.portfolio-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
}

.portfolio-stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 38px;
}

.portfolio-stat {
  display: grid;
  gap: 3px;
  padding: 14px 12px;
  border: 1px solid rgba(154, 205, 233, .2);
  border-radius: 13px;
  background: rgba(255, 255, 255, .07);
}

.portfolio-stat strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.55rem;
  letter-spacing: -.04em;
  line-height: 1;
}

.portfolio-stat span {
  color: #9db8cc;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.2;
}

.portfolio-hero-media {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #102c43;
}

.portfolio-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 16, 27, .02) 32%, rgba(4, 16, 27, .82) 100%);
  content: "";
  pointer-events: none;
}

.portfolio-hero-collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1.05fr 1.28fr .92fr;
  grid-template-rows: 1fr .9fr 1.08fr;
  gap: 3px;
  min-height: 720px;
  background: #f5f8fb;
}

.portfolio-hero-collage-item {
  position: relative;
  overflow: hidden;
  background: #102c43;
}

.portfolio-hero-collage-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.portfolio-hero-media:hover .portfolio-hero-collage-item img {
  transform: scale(1.04);
}

.portfolio-hero-media::after {
  z-index: 1;
}

.portfolio-hero-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  display: grid;
  gap: 4px;
  color: #fff;
}

.portfolio-hero-caption span {
  color: #8fe6ff;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.portfolio-hero-caption strong {
  max-width: 390px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.1;
}

.portfolio-section-head {
  max-width: 760px;
}

.portfolio-section-head h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -.045em;
}

.portfolio-equipment-section,
.portfolio-gallery-section {
  background: rgba(255, 255, 255, .52);
}

.portfolio-equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.portfolio-equipment-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.portfolio-equipment-card:hover {
  border-color: #9cbfe2;
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.portfolio-equipment-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  color: var(--primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.portfolio-equipment-arrow {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5e3ef;
  border-radius: 50%;
  color: #4c779d;
  font-size: 1rem;
  letter-spacing: 0;
}

.portfolio-equipment-card h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.portfolio-equipment-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .91rem;
  line-height: 1.5;
}

.portfolio-equipment-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.portfolio-equipment-card li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #345875;
  background: #edf5fb;
  font-size: .78rem;
  font-weight: 800;
}

.portfolio-videos-section {
  background: linear-gradient(180deg, #071827 0%, #0b2237 100%);
}

.portfolio-videos-section .portfolio-section-head h2 {
  color: #fff;
}

.portfolio-videos-section .portfolio-section-head p {
  color: #a9bfd0;
}

.portfolio-videos-section .section-kicker {
  color: #8fe6ff;
}

.portfolio-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.portfolio-video-card {
  overflow: hidden;
  border: 1px solid rgba(168, 206, 227, .17);
  border-radius: 17px;
  background: #102e45;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .2);
}

.portfolio-video-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #06131e;
}

.portfolio-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-video-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: #e8faff;
  background: rgba(7, 24, 39, .72);
  font-size: .7rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.portfolio-video-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px 16px;
}

.portfolio-video-body h3 {
  margin: 0;
  color: #fff;
  font-size: .98rem;
  line-height: 1.2;
}

.portfolio-video-body span {
  flex: 0 0 auto;
  color: #82a5ba;
  font-size: .72rem;
  font-weight: 800;
}

.portfolio-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.portfolio-photo-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #dce8f2;
  box-shadow: var(--shadow);
  text-decoration: none;
}

.portfolio-photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 44%, rgba(5, 19, 31, .76) 100%);
  content: "";
  pointer-events: none;
}

.portfolio-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.portfolio-photo-card:hover img {
  transform: scale(1.06);
}

.portfolio-photo-card > span {
  position: absolute;
  right: 12px;
  bottom: 11px;
  left: 12px;
  z-index: 1;
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.2;
}

.portfolio-photo-card b {
  float: right;
  color: #9deaff;
  font-size: 1rem;
}

.portfolio-cta-section {
  padding-top: 28px;
  padding-bottom: 70px;
}

.portfolio-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 23px;
  background: linear-gradient(135deg, #e7f3ff 0%, #fff 100%);
  box-shadow: var(--shadow-xl);
}

.portfolio-cta-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -.045em;
}

.portfolio-cta-card p {
  max-width: 650px;
  margin: 0;
  color: var(--ink-soft);
}

@media (min-width: 981px) and (max-height: 820px) {
  .portfolio-hero-grid {
    min-height: 600px;
  }

  .portfolio-hero-media,
  .portfolio-hero-collage {
    min-height: 600px;
  }

  .portfolio-hero-copy {
    padding: 28px 40px;
  }

  .portfolio-hero-copy h1 {
    font-size: clamp(2rem, 2.65vw, 2.3rem);
  }
}

@media (max-width: 980px) {
  .portfolio-hero-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-media,
  .portfolio-hero-collage {
    min-height: 420px;
  }

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

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

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

@media (max-width: 640px) {
  .portfolio-hero {
    padding-top: 8px;
  }

  .portfolio-hero-grid {
    border-radius: 22px;
  }

  .portfolio-hero-copy {
    padding: 28px 22px 25px;
  }

  .portfolio-hero-copy h1 {
    font-size: clamp(1.85rem, 8vw, 2.6rem);
  }

  .portfolio-actions,
  .portfolio-actions .btn,
  .portfolio-cta-card .btn {
    width: 100%;
  }

  .portfolio-stat-row {
    gap: 6px;
    margin-top: 28px;
  }

  .portfolio-stat {
    padding: 11px 8px;
  }

  .portfolio-stat strong {
    font-size: 1.25rem;
  }

  .portfolio-stat span {
    font-size: .68rem;
  }

  .portfolio-hero-media,
  .portfolio-hero-collage {
    min-height: 310px;
  }

  .portfolio-hero-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .portfolio-equipment-grid,
  .portfolio-video-grid,
  .portfolio-photo-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-video-body {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

html {
  scroll-padding-top: 104px;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 7%, rgba(22, 119, 240, 0.08), transparent 30rem),
    linear-gradient(180deg, #f7f9fb 0%, #f2f6f9 100%);
  line-height: 1.62;
}

body::before {
  position: absolute;
  inset: 0 0 auto;
  height: 760px;
  background-image: radial-gradient(rgba(10, 91, 211, 0.12) 0.7px, transparent 0.7px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent);
}

::selection {
  color: #fff;
  background: var(--primary);
}

.shape {
  opacity: 0.25;
  filter: blur(26px);
}

.container {
  width: min(1240px, calc(100vw - 40px));
}

header {
  padding: 14px 0 8px;
  background: rgba(247, 249, 251, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.topbar {
  min-height: 72px;
  gap: 24px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(205, 217, 228, 0.88);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 34px rgba(8, 29, 49, 0.08);
}

.brand-text {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.12rem, 1.75vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-logo {
  display: block;
  flex: 0 1 auto;
  width: clamp(180px, 18vw, 260px);
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.brand-text span {
  color: var(--primary);
}

.brand-phone {
  min-height: 34px;
  margin-left: 12px;
  padding: 7px 12px;
  border-color: #d5e0ea;
  color: #254259;
  font-family: "Manrope", sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.brand-phone:hover {
  color: var(--primary);
  border-color: #9bbce8;
  background: #f4f8ff;
}

.topbar-right {
  gap: 16px;
}

nav {
  gap: 19px;
}

nav a {
  position: relative;
  color: #405366;
  font-size: 0.84rem;
  font-weight: 700;
}

nav a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -8px;
  left: 50%;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transition: right 0.2s ease, left 0.2s ease;
}

nav a:hover::after {
  right: 0;
  left: 0;
}

.topbar .main-nav a.is-active {
  color: var(--primary);
}

.topbar .main-nav a.is-active::after {
  right: 0;
  left: 0;
}

.cta-small {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 12px;
  background: var(--primary);
  box-shadow: 0 12px 24px rgba(10, 91, 211, 0.24);
  font-size: 0.86rem;
  transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.cta-small::after {
  content: "→";
  font-size: 1.05em;
}

.cta-small:hover {
  color: #fff;
  background: #084ead;
  box-shadow: 0 15px 28px rgba(10, 91, 211, 0.3);
  transform: translateY(-2px);
}

.hero {
  padding: clamp(20px, 2.2vw, 34px) 0 clamp(52px, 6vw, 76px);
}

.breadcrumb {
  padding-top: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: #64798b;
  list-style: none;
  font-size: 0.76rem;
  font-weight: 700;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  color: #9aabba;
}

.breadcrumb a {
  color: #4e6f8c;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.hero-grid {
  min-height: 720px;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(119, 151, 179, 0.25);
  border-radius: 32px;
  background: var(--navy);
  box-shadow: 0 40px 95px rgba(5, 24, 40, 0.22);
}

.hero-copy {
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.5vw, 48px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 92% 10%, rgba(85, 216, 255, 0.2), transparent 18rem),
    linear-gradient(145deg, #0b263d 0%, #071827 66%);
  box-shadow: none;
}

.hero-copy::before {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(85, 216, 255, 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 54px rgba(85, 216, 255, 0.025),
    0 0 0 108px rgba(85, 216, 255, 0.018);
  pointer-events: none;
}

.hero-copy::after {
  top: -130px;
  right: -90px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(38, 153, 255, 0.26), transparent 68%);
}

.eyebrow {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(85, 216, 255, 0.24);
  border-radius: 999px;
  color: #bceeff;
  background: rgba(85, 216, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -0.04em;
}

h1 {
  position: relative;
  z-index: 1;
  max-width: 690px;
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(2.35rem, 2.85vw, 2.85rem);
  font-weight: 800;
  line-height: 1.06;
  text-wrap: balance;
}

.lead {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 0 18px;
  color: #b7c7d5;
  font-size: clamp(0.94rem, 1.1vw, 1rem);
  line-height: 1.58;
}

.actions,
.hero-actions-row,
.kpis,
.brands {
  position: relative;
  z-index: 1;
}

.btn {
  min-height: 50px;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.btn::after {
  content: "→";
  font-size: 1.1em;
  line-height: 1;
}

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

.btn-main {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 15px 32px rgba(255, 107, 61, 0.3);
}

.btn-main:hover {
  color: #fff;
  background: var(--accent-hover);
  box-shadow: 0 18px 36px rgba(255, 107, 61, 0.38);
}

.hero-copy .actions .btn-main {
  min-height: 52px;
  padding-inline: 24px;
}

.hero-actions-row {
  margin-top: 10px;
  gap: 12px;
}

.hero-actions-row .btn-ghost {
  color: #e7f0f7;
  border-color: rgba(202, 220, 235, 0.25);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero-actions-row .btn-ghost:hover {
  color: #fff;
  border-color: rgba(85, 216, 255, 0.5);
  background: rgba(85, 216, 255, 0.1);
}

.hero-project-stat {
  min-height: 50px;
  padding: 10px 14px;
  border-color: rgba(202, 220, 235, 0.2);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.hero-project-stat__label {
  color: #9fb3c4;
  font-size: 0.77rem;
}

.hero-project-stat__value {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 1.35rem;
}

.kpis {
  margin-top: 14px;
  gap: 8px;
}

.kpi {
  min-height: 76px;
  place-content: center;
  padding: 13px 10px;
  border-color: rgba(202, 220, 235, 0.15);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: none;
}

.kpi strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
}

.kpi span {
  color: #8fa5b8;
  font-size: 0.66rem;
}

.brands {
  margin-top: 12px;
  gap: 7px;
}

.brand-pill {
  padding: 7px 5px;
  border-color: rgba(202, 220, 235, 0.12);
  border-radius: 9px;
  color: #96a9b9;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
}

.hero-image {
  min-height: 720px;
  border: 0;
  border-radius: 0;
  background: #081827;
  box-shadow: none;
}

.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7, 24, 39, 0.26), transparent 24%),
    linear-gradient(180deg, transparent 48%, rgba(7, 24, 39, 0.72) 100%);
  pointer-events: none;
}

.hero-image img,
.hero-image:hover img {
  width: 100%;
  height: 100%;
  transform: scale(1.025);
  filter: saturate(0.9) contrast(1.05);
}

.hero-chip {
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  max-width: none;
  padding: 16px 18px 16px 48px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: #eef6fb;
  background: rgba(6, 22, 35, 0.74);
  font-size: 0.86rem;
  line-height: 1.55;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-chip::before {
  content: "✓";
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #072438;
  background: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
}

section {
  padding: clamp(64px, 7.5vw, 104px) 0;
}

.hero + section {
  padding-top: 0;
}

.section-head {
  max-width: 790px;
  margin-bottom: 30px;
}

.section-head::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 17px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), #59b8ff);
}

.section-head h2 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: clamp(2rem, 3.45vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

#directions {
  padding-bottom: clamp(68px, 8vw, 108px);
}

.cluster-grid {
  gap: 12px;
}

.hero-image--brand {
  --brand-main: #0a5bd3;
  --brand-glow: rgba(10, 91, 211, 0.24);
  --brand-soft: #dcebff;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, var(--brand-glow), transparent 25rem),
    linear-gradient(135deg, #f9fcff 0%, var(--brand-soft) 52%, #f7fbff 100%);
}

.hero-image--brand::before {
  display: block;
  z-index: 0;
  background:
    linear-gradient(120deg, transparent 0 45%, rgba(255, 255, 255, 0.64) 45% 47%, transparent 47% 100%),
    repeating-linear-gradient(90deg, rgba(10, 38, 67, 0.08) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(10, 38, 67, 0.06) 0 1px, transparent 1px 44px);
  opacity: 0.8;
}

.hero-image--brand::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -14%;
  bottom: 12%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(10, 91, 211, 0.28);
  border: 1px solid color-mix(in srgb, var(--brand-main) 35%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(10, 91, 211, 0.07),
    0 0 0 84px rgba(10, 91, 211, 0.04);
  box-shadow:
    0 0 0 42px color-mix(in srgb, var(--brand-main) 8%, transparent),
    0 0 0 84px color-mix(in srgb, var(--brand-main) 5%, transparent);
}

.hero-image--lenovo {
  --brand-main: #e2231a;
  --brand-glow: rgba(226, 35, 26, 0.2);
  --brand-soft: #ffe8e5;
}

.hero-image--dell {
  --brand-main: #0672ce;
  --brand-glow: rgba(6, 114, 206, 0.24);
  --brand-soft: #e1f2ff;
}

.hero-image--huawei {
  --brand-main: #cf1f2d;
  --brand-glow: rgba(207, 31, 45, 0.19);
  --brand-soft: #ffe9e9;
}

.hero-image--h3c {
  --brand-main: #e4212a;
  --brand-glow: rgba(228, 33, 42, 0.2);
  --brand-soft: #ffe8e8;
}

.hero-image--dream-machines {
  --brand-main: #202d3a;
  --brand-glow: rgba(32, 45, 58, 0.2);
  --brand-soft: #e9eef2;
}

.hero-image--hpe {
  --brand-main: #00a982;
  --brand-glow: rgba(0, 169, 130, 0.2);
  --brand-soft: #e1f8f1;
}

.hero-image--zyxel {
  --brand-main: #2679bd;
  --brand-glow: rgba(38, 121, 189, 0.22);
  --brand-soft: #e6f2fd;
}

.hero-image--fortinet {
  --brand-main: #d9363e;
  --brand-glow: rgba(217, 54, 62, 0.22);
  --brand-soft: #fff0ec;
}

.hero-image--cisco {
  --brand-main: #09264a;
  --brand-glow: rgba(9, 38, 74, 0.2);
  --brand-soft: #e8edf2;
}

.brand-hero-media {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 72px 68px 146px;
  width: auto;
  height: auto;
  margin: 0;
  padding: 48px 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.52)),
    radial-gradient(circle at 50% 100%, var(--brand-glow), transparent 60%);
  box-shadow: 0 28px 70px rgba(10, 38, 67, 0.16), inset 0 1px rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand-hero-media img {
  position: relative;
  z-index: 2;
  display: block;
  width: auto !important;
  height: auto !important;
  max-width: min(100%, 430px);
  max-height: 190px;
  object-fit: contain !important;
  transform: none !important;
  filter: none !important;
}

.brand-hero-media::before {
  content: "";
  position: absolute;
  top: -74px;
  right: -76px;
  width: 194px;
  height: 194px;
  border: 1px solid color-mix(in srgb, var(--brand-main) 42%, transparent);
  border-radius: 50%;
  box-shadow:
    0 0 0 22px color-mix(in srgb, var(--brand-main) 8%, transparent),
    0 0 0 44px color-mix(in srgb, var(--brand-main) 5%, transparent);
}

.brand-hero-media::after {
  content: "CORPORATE TECHNOLOGY";
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: color-mix(in srgb, var(--brand-main) 72%, #38546b);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.hero-image--dell .brand-hero-media img {
  max-width: 320px;
  max-height: 320px;
}

.hero-image--h3c .brand-hero-media img,
.hero-image--dream-machines .brand-hero-media img,
.hero-image--fortinet .brand-hero-media img {
  max-height: 128px;
}

.hero-image--brand .hero-chip {
  z-index: 3;
  border-color: rgba(7, 24, 39, 0.25);
  border-color: color-mix(in srgb, var(--brand-main) 36%, rgba(7, 24, 39, 0.1));
}

.cluster-card {
  position: relative;
  min-height: 196px;
  align-content: space-between;
  gap: 12px;
  padding: 24px;
  overflow: hidden;
  border-color: #dce5ed;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(8, 29, 49, 0.055);
}

.cluster-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 24px;
  left: 24px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--primary), #55d8ff);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.cluster-card:hover {
  border-color: #b9cde0;
  box-shadow: 0 22px 46px rgba(8, 29, 49, 0.1);
  transform: translateY(-5px);
}

.cluster-card:hover::before {
  transform: scaleX(1);
}

.cluster-card.is-current {
  border-color: #b9d3f1;
  background: linear-gradient(150deg, #eff7ff 0%, #fff 78%);
}

.cluster-card h3 {
  padding-right: 12px;
  font-size: 1.16rem;
  line-height: 1.28;
}

.cluster-card p {
  font-size: 0.88rem;
  line-height: 1.58;
}

.cluster-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: end;
  font-size: 0.86rem;
}

.cluster-link::after {
  content: "↗";
}

.cluster-state {
  justify-self: start;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(10, 91, 211, 0.1);
  font-size: 0.77rem;
}

#services,
#cycle,
#clients,
#advantages {
  background: rgba(231, 238, 244, 0.54);
}

.cards {
  gap: 18px;
  align-items: stretch;
  counter-reset: service-card;
}

.card {
  position: relative;
  border-color: #dae4ec;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(8, 29, 49, 0.075);
  counter-increment: service-card;
}

.card::before {
  content: "0" counter(service-card);
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  color: #fff;
  background: rgba(7, 24, 39, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.card:hover {
  border-color: #b8cad9;
  box-shadow: 0 28px 58px rgba(8, 29, 49, 0.13);
  transform: translateY(-7px);
}

.card img {
  height: 235px;
  filter: saturate(0.92) contrast(1.03);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.card h3 {
  min-height: 2.56em;
  margin-bottom: 13px;
  padding-right: 58px;
  font-size: 1.27rem;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.card p {
  font-size: 0.9rem;
}

.card-body > p + p {
  margin-top: 14px;
}

.list {
  margin-top: 17px;
  gap: 10px;
}

.list li {
  padding-left: 26px;
  color: #42586b;
  font-size: 0.87rem;
}

.list li::before {
  content: "✓";
  top: 1px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--primary);
  background: #e7f1ff;
  font-size: 0.66rem;
  font-weight: 900;
}

.split-gallery {
  gap: 16px;
}

.split-item {
  aspect-ratio: 1.35 / 1;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(8, 29, 49, 0.13);
}

.split-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(4, 19, 31, 0.82));
  pointer-events: none;
}

.split-item:hover::before {
  transform: scale(1.06);
}

.split-item.has-image::before {
  background-image: none;
}

.split-item.has-image {
  display: block;
  cursor: pointer;
  text-decoration: none;
}

.split-item-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.split-item.has-image:hover .split-item-media {
  transform: scale(1.06);
}

.office-portfolio-section .split-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-item--contain .split-item-media {
  object-fit: contain;
  background: #e8eef4;
}

@media (max-width: 640px) {
  .office-portfolio-section .split-gallery {
    grid-template-columns: 1fr;
  }
}

.split-item.has-image .split-label b {
  float: right;
  color: #9deaff;
  font-size: 1rem;
}

.split-label {
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 0.91rem;
  line-height: 1.4;
  backdrop-filter: none;
}

.steps {
  gap: 14px;
}

.step {
  position: relative;
  min-height: 262px;
  padding: 25px;
  overflow: hidden;
  border-color: #d9e3eb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(8, 29, 49, 0.065);
}

.step::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -34px;
  width: 100px;
  height: 100px;
  border: 20px solid rgba(10, 91, 211, 0.035);
  border-radius: 50%;
}

.step:hover {
  box-shadow: 0 24px 50px rgba(8, 29, 49, 0.11);
}

.step-num {
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 13px;
  color: #fff;
  background: var(--primary);
  font-family: "Manrope", sans-serif;
  box-shadow: 0 10px 22px rgba(10, 91, 211, 0.22);
}

.step h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.matrix {
  gap: 12px;
}

.tag {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 18px 16px 50px;
  border: 1px solid #d9e4ed;
  border-radius: 15px;
  color: #334b60;
  background: #fff;
  box-shadow: 0 10px 30px rgba(8, 29, 49, 0.05);
  text-align: left;
  font-size: 0.85rem;
}

.tag::before {
  content: "✓";
  position: absolute;
  left: 18px;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--primary);
  font-size: 0.7rem;
}

.tag:hover {
  border-color: #b7cde0;
  background: #f8fbff;
  box-shadow: 0 16px 36px rgba(8, 29, 49, 0.08);
}

.related-brands-section {
  background: linear-gradient(180deg, rgba(229, 238, 246, 0.72), rgba(247, 250, 252, 0.2));
}

.related-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.related-brand-card {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid #d8e4ec;
  border-radius: 17px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 29, 49, 0.05);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-brand-card:hover {
  border-color: #a9c9e5;
  box-shadow: 0 20px 42px rgba(8, 29, 49, 0.1);
  transform: translateY(-4px);
}

.related-brand-card strong {
  color: var(--primary);
  font-size: 1.06rem;
}

.related-brand-card span {
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.52;
}

.related-brand-card small {
  margin-top: auto;
  color: #355c7f;
  font-size: 0.78rem;
  font-weight: 800;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 11px;
  max-width: 920px;
}

.faq-item {
  border: 1px solid #d9e4ec;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(8, 29, 49, 0.045);
}

.faq-item summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: #1d3a53;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--primary);
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.65;
}

.clients-shell {
  padding: clamp(25px, 4vw, 42px);
  overflow: hidden;
  border-color: rgba(138, 171, 199, 0.18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 94% 0, rgba(85, 216, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, #0d2b43, #071827);
  box-shadow: 0 28px 65px rgba(5, 24, 40, 0.18);
}

.clients-note {
  color: #b4c5d2;
}

.client-grid.client-cases {
  gap: 12px;
}

.client-item {
  min-height: 148px;
  padding: 20px;
  border-color: rgba(184, 207, 224, 0.16);
  border-radius: 15px;
  color: #e8f1f7;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.client-item:hover {
  border-color: rgba(85, 216, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.client-case-title {
  color: #fff;
}

.client-case-company {
  color: #79dcff;
}

.client-case-desc {
  color: #aebfcd;
}

.thanks-wrap {
  margin-top: 28px;
  padding-top: 24px;
  border-color: rgba(184, 207, 224, 0.15);
}

.thanks-head {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.thanks-grid {
  gap: 12px;
}

.thanks-card {
  border-color: rgba(184, 207, 224, 0.2);
  border-radius: 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.thanks-caption {
  color: #314a5e;
  font-size: 0.78rem;
}

.thanks-arrow {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 24, 39, 0.8);
}

.partner-grid {
  gap: 16px;
}

.partner-grid .partner-card {
  flex-basis: calc((100% - 32px) / 3);
  max-width: calc((100% - 32px) / 3);
}

.partner-card {
  align-content: start;
  gap: 13px;
  min-height: 345px;
  padding: 25px;
  border-color: #dce5ec;
  border-radius: 20px;
  box-shadow: 0 14px 40px rgba(8, 29, 49, 0.06);
}

.partner-card:hover {
  border-color: #b9cada;
  box-shadow: 0 25px 52px rgba(8, 29, 49, 0.11);
}

.partner-logo {
  height: 72px;
  margin-bottom: 4px;
  border: 0;
  background: #f7f9fb;
}

.partner-title {
  font-size: 1.1rem;
}

.partner-subtitle {
  color: var(--primary);
  font-size: 0.78rem;
}

.partner-points {
  gap: 9px;
}

.partner-points li {
  padding-left: 20px;
  font-size: 0.84rem;
}

.partner-points li::before {
  content: "✓";
  top: 0;
  display: grid;
  width: 14px;
  height: 18px;
  place-items: center;
  color: var(--primary);
  background: transparent;
  font-size: 0.65rem;
}

.partner-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: auto;
}

.partner-actions .btn {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.8rem;
  line-height: 1.15;
  text-align: center;
}

.partner-actions .btn:only-child {
  grid-column: 1 / -1;
}

.partner-card .btn-ghost {
  border-color: #d5e0e9;
  color: #29455c;
  background: #f7f9fb;
}

.trust-grid {
  margin-top: 18px;
  gap: 12px;
}

.trust-item {
  position: relative;
  min-height: 112px;
  display: flex;
  align-items: center;
  padding: 22px 18px 22px 48px;
  border-color: #d9e4ed;
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(8, 29, 49, 0.055);
  text-align: left;
  font-size: 0.82rem;
}

.trust-item::before {
  content: "✓";
  position: absolute;
  left: 18px;
  color: var(--primary);
  font-weight: 900;
}

.benefits {
  gap: 14px;
}

.benefit {
  position: relative;
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 24px 26px 24px 70px;
  border-color: #d9e4ec;
  border-radius: 18px;
  color: #334b60;
  box-shadow: 0 12px 34px rgba(8, 29, 49, 0.055);
  font-weight: 700;
}

.benefit::before {
  content: "✓";
  position: absolute;
  left: 24px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--primary);
  font-size: 0.75rem;
}

.benefit:hover {
  box-shadow: 0 20px 42px rgba(8, 29, 49, 0.095);
}

#contact {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(36, 148, 244, 0.2), transparent 28rem),
    var(--navy);
}

#contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.11) 0.7px, transparent 0.7px);
  background-size: 24px 24px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.6), transparent);
  pointer-events: none;
}

#contact .container {
  position: relative;
  z-index: 1;
}

#contact .section-head::before {
  background: var(--cyan);
}

#contact .section-head h2 {
  color: #fff;
}

#contact .section-head p {
  color: #afc1d0;
}

.contact-wrap {
  grid-template-columns: 0.82fr 1.18fr;
  gap: 18px;
}

.contact-box,
.form-box {
  padding: clamp(25px, 3.5vw, 40px);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.contact-box {
  border-color: rgba(188, 213, 233, 0.18);
  color: #b5c6d3;
  background: rgba(255, 255, 255, 0.055);
}

.contact-box h3 {
  color: #fff;
  font-size: 1.45rem;
}

.contact-box a {
  color: #87e2ff;
}

.form-box {
  border-color: #dce6ed;
  background: #fff;
}

.form-box h3 {
  margin-bottom: 24px;
  font-size: 1.45rem;
}

form {
  gap: 9px;
}

label {
  color: #344d62;
  font-size: 0.78rem;
}

input,
textarea {
  min-height: 52px;
  padding: 13px 15px;
  border-color: #d5e0e8;
  border-radius: 11px;
  color: var(--ink);
  background: #f8fafc;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
}

input:focus,
textarea:focus {
  border-color: #77a9e7;
  outline: 3px solid rgba(10, 91, 211, 0.11);
}

textarea {
  min-height: 124px;
}

.form-box .btn-main {
  margin-top: 8px;
}

footer {
  padding: 22px 20px 28px;
  color: #7f98ab;
  background: var(--navy);
  font-size: 0.8rem;
}

.menu-toggle {
  border-color: #d5e0e8;
  border-radius: 11px;
}

.btn:focus-visible,
.cta-small:focus-visible,
nav a:focus-visible,
.brand-phone:focus-visible,
.menu-toggle:focus-visible,
.thanks-arrow:focus-visible,
.review-modal-close:focus-visible {
  outline: 3px solid rgba(65, 158, 255, 0.36);
  outline-offset: 3px;
}

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

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

@media (max-width: 1100px) {
  nav {
    gap: 13px;
  }

  nav a {
    font-size: 0.78rem;
  }

  .hero-copy {
    padding: 42px;
  }

  h1 {
    font-size: clamp(2.1rem, 4vw, 3rem);
  }

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

@media (min-width: 981px) and (max-height: 820px) {
  .hero {
    padding-top: 16px;
  }

  .hero-grid,
  .hero-image {
    min-height: 600px;
  }

  .hero-copy {
    padding: 28px 40px;
  }

  .eyebrow {
    margin-bottom: 9px;
    padding-block: 5px;
    font-size: 0.66rem;
  }

  h1 {
    margin-bottom: 10px;
    font-size: clamp(2rem, 2.65vw, 2.3rem);
  }

  .lead {
    margin-bottom: 13px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .btn {
    min-height: 44px;
    padding-block: 10px;
  }

  .hero-copy .actions .btn-main {
    min-height: 48px;
  }

  .hero-actions-row {
    margin-top: 8px;
  }

  .hero-project-stat {
    min-height: 44px;
    padding-block: 7px;
  }

  .hero-project-stat__label {
    font-size: 0.69rem;
  }

  .hero-project-stat__value {
    font-size: 1.15rem;
  }

  .kpis {
    margin-top: 10px;
  }

  .kpi {
    min-height: 62px;
    padding-block: 8px;
  }

  .kpi strong {
    font-size: 0.78rem;
  }

  .kpi span {
    font-size: 0.59rem;
  }

  .brands {
    margin-top: 8px;
  }

  .brand-pill {
    padding-block: 5px;
    font-size: 0.66rem;
  }

  .hero-chip {
    right: 20px;
    bottom: 20px;
    left: 20px;
    padding-block: 12px;
    font-size: 0.76rem;
  }

  .hero-chip::before {
    top: 13px;
  }
}

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

  header {
    padding-top: 9px;
  }

  .topbar {
    min-height: 64px;
    padding: 9px 10px 9px 15px;
  }

  .topbar .main-nav {
    top: 78px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 25px 56px rgba(8, 29, 49, 0.18);
  }

  .topbar .main-nav a {
    padding: 12px;
    border-color: #e1e8ee;
  }

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

  .topbar .main-nav a.is-active {
    border-color: #9bbce8;
    color: var(--primary);
    background: #f4f8ff;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-image {
    min-height: clamp(360px, 70vw, 560px);
  }

  .hero-actions-row {
    flex-direction: row;
  }

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

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

  .partner-grid .partner-card {
    flex-basis: calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }

  .brand-hero-media {
    inset: 52px 54px 122px;
  }
}

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

  .brand-text {
    font-size: 1.03rem;
  }

  .brand-logo {
    width: 180px;
    max-height: 36px;
  }

  .brand-phone {
    margin-left: 5px;
    padding: 6px 8px;
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    border-radius: 23px;
  }

  .hero-copy {
    padding: 31px 23px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 0.65rem;
  }

  h1 {
    font-size: clamp(2rem, 9.3vw, 2.7rem);
  }

  .lead {
    line-height: 1.58;
  }

  .hero-actions-row {
    flex-direction: column;
  }

  .hero-project-stat {
    align-items: center;
  }

  .hero-project-stat__label {
    white-space: normal;
  }

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

  .hero-image {
    min-height: 380px;
  }

  .hero-image img,
  .hero-image:hover img {
    width: 100%;
    height: 100%;
    transform: scale(1.025);
  }

  .hero-chip {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding: 13px 14px 13px 42px;
    font-size: 0.75rem;
  }

  .hero-chip::before {
    top: 14px;
    left: 14px;
  }

  section {
    padding: 64px 0;
  }

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

  .section-head h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  .cluster-grid,
  .cards,
  .matrix,
  .related-brand-grid,
  .steps,
  .trust-grid,
  .benefits,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .card img {
    height: 220px;
  }

  .split-gallery {
    grid-template-columns: 1fr;
  }

  .split-item {
    aspect-ratio: 1.4 / 1;
  }

  .step {
    min-height: 0;
  }

  .client-grid.client-cases {
    grid-template-columns: 1fr;
  }

  .partner-grid .partner-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .contact-box,
  .form-box {
    padding: 24px 20px;
  }

  .brand-hero-media {
    inset: 40px 28px 112px;
    min-height: 0;
    padding: 32px 20px;
    border-radius: 22px;
  }

  .brand-hero-media img {
    max-width: min(100%, 300px);
    max-height: 132px;
  }

  .hero-image--dell .brand-hero-media img {
    max-width: 220px;
    max-height: 220px;
  }
}

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

  .brand-phone {
    display: none;
  }

  .kpis {
    gap: 5px;
  }

  .kpi {
    min-height: 86px;
    padding-inline: 6px;
  }

  .kpi strong {
    font-size: 0.78rem;
  }

  .kpi span {
    font-size: 0.61rem;
  }
=
  .brands {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
  }

  .brand-pill {
    padding: 8px 2px;
    font-size: 0.59rem;
  }

  .hero-copy .actions .btn,
  .hero-actions-row .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
}

.deliveries-section {
  position: relative;
  padding-top: clamp(28px, 3vw, 44px);
}

#solutions {
  padding-bottom: clamp(28px, 3vw, 44px);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-kicker::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.delivery-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.delivery-benefit {
  position: relative;
  min-height: 94px;
  padding: 17px 18px 17px 47px;
  border: 1px solid #d8e4ef;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 28px rgba(8, 29, 49, 0.06);
  color: #40586e;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.5;
}

.delivery-benefit::before {
  position: absolute;
  top: 18px;
  left: 17px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: #e9f3ff;
  color: var(--primary);
  content: "✓";
  font-size: 0.78rem;
  font-weight: 800;
}

.delivery-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 14px;
}

.delivery-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e4ed;
  border-radius: 18px;
  background: #eef3f7;
  box-shadow: 0 14px 34px rgba(8, 29, 49, 0.1);
}

.delivery-photo--wide {
  grid-column: span 2;
}

.delivery-photo img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.delivery-photo--wide img {
  height: 280px;
}

.delivery-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(7, 24, 39, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(5px);
}

.delivery-photo:hover img {
  transform: scale(1.04);
}

.delivery-note {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.brand-projects-section {
  background: rgba(231, 238, 244, 0.54);
}

.brand-project-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.brand-project-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d9e4ed;
  border-radius: 18px;
  background: #eef3f7;
  box-shadow: 0 14px 34px rgba(8, 29, 49, 0.1);
}

.brand-project-photo--wide {
  grid-column: span 2;
}

.brand-project-photo img {
  display: block;
  width: 100%;
  height: 290px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.brand-project-photo--fortinet img {
  object-position: center top;
}

.brand-project-photo:hover img {
  transform: scale(1.04);
}

.brand-project-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(7, 24, 39, 0.78);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.35;
  backdrop-filter: blur(5px);
}

.project-notes-section {
  background: #fff;
}

.project-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.project-note {
  padding: 27px 28px;
  border: 1px solid #d9e4ec;
  border-radius: 20px;
  background: linear-gradient(145deg, #fff, #f4f8fb);
  box-shadow: 0 14px 34px rgba(8, 29, 49, 0.06);
}

.project-note span {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--primary);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-note h3 {
  margin-bottom: 11px;
  color: var(--ink);
  font-size: 1.2rem;
}

.project-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .delivery-benefits {
    grid-template-columns: 1fr;
  }

  .delivery-benefit {
    min-height: 0;
  }

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

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

  .project-notes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .brand-hero-media {
    min-height: 0;
    padding: 28px 18px;
  }

  .brand-hero-media img {
    width: auto !important;
    height: auto !important;
    max-width: min(100%, 270px);
    max-height: 128px;
  }

  .hero-image--dell .brand-hero-media img {
    max-width: 200px;
    max-height: 200px;
  }

  .delivery-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .delivery-photo--wide {
    grid-column: span 1;
  }

  .brand-project-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .brand-project-photo--wide {
    grid-column: span 1;
  }

  .delivery-photo img,
  .delivery-photo--wide img,
  .brand-project-photo img {
    height: min(76vw, 340px);
  }
}
