﻿:root {
  --brand-navy: #002070;
  --brand-blue: #0050a0;
  --brand-cyan: #00b8cc;
  --brand-cyan-dark: #008ca8;
  --ink: #0b1b2b;
  --text: #334155;
  --muted: #64748b;
  --line: #d9e8f2;
  --soft-blue: #f2f9fd;
  --soft-cyan: #e8fbff;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(0, 32, 112, 0.11);
  --shadow-soft: 0 12px 32px rgba(0, 80, 160, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1180px;
  --nav-h: 82px;
  --font-head: "Manrope", Arial, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  font-size: 15.5px;
  line-height: 1.68;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

.skip-link {
  position: absolute;
  left: 18px;
  top: -60px;
  z-index: 100;
  background: var(--brand-navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 232, 242, 0.86);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 188px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  color: #22344b;
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--brand-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand-blue);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--brand-navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 10px;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--brand-blue);
  box-shadow: 0 12px 28px rgba(0, 80, 160, 0.22);
}

.btn-primary:hover {
  background: var(--brand-navy);
}

.btn-secondary {
  color: var(--brand-navy);
  background: var(--white);
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: var(--brand-cyan);
  color: var(--brand-blue);
  box-shadow: var(--shadow-soft);
}

.btn-light {
  color: var(--brand-navy);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 32, 112, 0.16);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--soft-blue);
}

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

.section-deep {
  background: var(--brand-navy);
  color: var(--white);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 0.5fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 36px;
}

.section-title,
.page-title,
.hero-title {
  margin: 0;
  font-family: var(--font-head);
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.14;
}

.section-title {
  font-size: clamp(1.32rem, 1.9vw, 1.78rem);
}

.section-deep .section-title,
.section-deep .section-sub,
.section-deep p {
  color: var(--white);
}

.section-sub {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.section-eyebrow {
  margin: 0 0 8px;
  color: var(--brand-cyan-dark);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.center-head {
  max-width: 840px;
  margin: 0 auto 42px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  padding: 56px 0 56px;
  background:
    linear-gradient(90deg, rgba(242, 249, 253, 0.94) 0%, rgba(255, 255, 255, 0.92) 52%, rgba(232, 251, 255, 0.65) 100%);
  overflow: hidden;
}

.home-page .site-header {
  position: absolute;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.home-page .nav-wrap {
  min-height: 76px;
}

.home-page .nav-links a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.86rem;
}

.home-page .nav-links a:hover,
.home-page .nav-links a.active {
  color: var(--brand-cyan);
}

.home-page .nav-links a::after {
  bottom: -8px;
}

.home-page .nav-actions .btn-primary {
  min-height: 38px;
  padding: 10px 18px;
  background: var(--brand-cyan);
  box-shadow: 0 10px 24px rgba(0, 184, 204, 0.28);
}

.home-page .home-hero {
  min-height: 560px;
  padding: 128px 0 92px;
  background:
    linear-gradient(90deg, rgba(2, 14, 32, 0.96) 0%, rgba(4, 25, 48, 0.9) 34%, rgba(4, 25, 48, 0.5) 58%, rgba(2, 14, 32, 0.16) 100%),
    url("../images/server-room-hero.webp") center right / cover no-repeat;
}

.home-page .home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 12, 30, 0.2));
  pointer-events: none;
}

.home-page .home-hero .container {
  position: relative;
  z-index: 1;
}

.home-page .home-hero .hero-grid {
  display: block;
}

.home-page .hero-content {
  max-width: 620px;
}

.home-page .home-hero .hero-media {
  display: none;
}

.home-page .home-hero .hero-title {
  color: var(--white);
  font-size: clamp(1.82rem, 2.85vw, 2.55rem);
  line-height: 1.12;
}

.home-page .hero-title .accent {
  color: var(--brand-cyan);
}

.home-page .home-hero .hero-copy {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.94rem;
  line-height: 1.68;
}

.home-page .home-hero .btn {
  min-height: 43px;
  padding: 11px 20px;
  font-size: 0.84rem;
}

.home-page .home-hero .btn-primary {
  background: var(--brand-cyan);
  box-shadow: 0 10px 24px rgba(0, 184, 204, 0.3);
}

.home-page .home-hero .btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.48);
}

.home-page .home-hero .btn-ghost:hover {
  border-color: var(--brand-cyan);
  box-shadow: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 44px;
}

.hero-title {
  max-width: 780px;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.hero-copy {
  margin-top: 18px;
  max-width: 680px;
  color: #41536b;
  font-size: clamp(0.95rem, 1.2vw, 1.04rem);
}

.hero-actions,
.cta-actions,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 24px;
}

.hero-media,
.page-media,
.service-media,
.solution-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #d9edf7;
  border: 1px solid rgba(217, 232, 242, 0.92);
  box-shadow: var(--shadow);
}

.hero-media {
  height: 430px;
  min-height: 430px;
}

.page-media {
  height: 380px;
}

.service-media {
  height: 260px;
}

.solution-media {
  height: 180px;
}

.hero-media img,
.page-media img,
.service-media img,
.solution-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  color: var(--white);
  background: rgba(0, 32, 112, 0.88);
  box-shadow: 0 16px 34px rgba(0, 32, 112, 0.26);
}

.media-note strong {
  font-family: var(--font-head);
  font-size: 1rem;
}

.media-note span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.highlight-strip {
  margin-top: -38px;
  position: relative;
  z-index: 4;
}

.home-page .highlight-strip {
  margin-top: -44px;
  background: linear-gradient(180deg, transparent 0 44px, #edf8fe 44px 100%);
}

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

.card,
.highlight-card,
.service-card,
.why-card,
.help-card,
.process-card,
.quality-card,
.contact-card,
.solution-card,
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}

.highlight-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
}

.home-page .highlight-card {
  min-height: 166px;
  align-items: start;
  padding: 30px 34px;
  border-color: rgba(216, 230, 238, 0.95);
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(10, 47, 85, 0.12);
}

.home-page .highlight-card:nth-child(2) .icon-box {
  color: var(--white);
  background: var(--brand-navy);
}

.home-page .highlight-card h3 {
  font-size: 1.08rem;
}

.home-page .highlight-card p {
  max-width: 220px;
  font-size: 0.84rem;
  line-height: 1.56;
}

.icon-box {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: var(--brand-blue);
  background: var(--soft-cyan);
  flex: 0 0 auto;
}

.icon-box.bare {
  color: var(--brand-blue);
  background: transparent;
}

.icon-box.deep {
  color: var(--white);
  background: var(--brand-blue);
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3,
.highlight-card h3,
.service-card h3,
.why-card h3,
.help-card h3,
.process-card h3,
.quality-card h3,
.contact-card h3,
.solution-card h3,
.value-card h3,
.service-detail h3,
.profile-panel h3 {
  margin: 0;
  font-family: var(--font-head);
  color: var(--ink);
  font-size: 1.06rem;
  line-height: 1.25;
}

.section-deep .card h3,
.section-deep .quality-card h3 {
  color: var(--white);
}

.card p,
.highlight-card p,
.service-card p,
.why-card p,
.help-card p,
.process-card p,
.quality-card p,
.contact-card p,
.solution-card p,
.value-card p,
.service-detail p,
.profile-panel p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-deep .quality-card p {
  color: rgba(255, 255, 255, 0.75);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

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

.service-card,
.why-card,
.process-card,
.quality-card,
.help-card,
.contact-card,
.value-card {
  padding: 24px;
}

.service-card {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(135deg, rgba(0, 184, 204, 0.1), rgba(255, 255, 255, 0) 48%),
    radial-gradient(circle at 88% 12%, rgba(0, 80, 160, 0.08), rgba(0, 80, 160, 0) 34%);
  transition: opacity 0.22s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  z-index: 2;
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));
  border-radius: 0 0 999px 999px;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.home-page .highlight-strip + .section-white {
  background: #edf8fe;
  padding-top: 76px;
}

.home-page .services-head {
  grid-template-columns: minmax(0, 0.75fr) auto;
  align-items: start;
  margin-bottom: 22px;
}

.home-page .services-head .section-title {
  max-width: 560px;
  font-size: clamp(1.34rem, 1.9vw, 1.78rem);
}

.compact-btn {
  width: max-content;
  min-height: 38px;
  padding: 9px 16px;
  font-size: 0.8rem;
  justify-self: end;
  white-space: nowrap;
}

.home-page .service-card {
  min-height: 234px;
  padding: 26px;
  border-radius: 10px;
  border-color: rgba(216, 230, 238, 0.9);
  box-shadow: 0 10px 30px rgba(13, 73, 116, 0.08);
}

.home-page .service-card .icon-box {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}

.home-page .service-card .icon {
  width: 34px;
  height: 34px;
}

.home-page .service-card h3 {
  font-size: 1.02rem;
}

.home-page .service-card p {
  max-width: 280px;
  font-size: 0.86rem;
  line-height: 1.58;
}

.card-arrow {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  color: var(--brand-cyan-dark);
  text-decoration: none;
}

.card-arrow .icon {
  width: 18px;
  height: 18px;
}

.service-card:hover,
.service-card:focus-within,
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 184, 204, 0.52);
  box-shadow: 0 22px 48px rgba(0, 80, 160, 0.14);
}

.service-card:hover::before,
.service-card:focus-within::before,
.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after {
  transform: scaleX(1);
}

.service-card .icon-box,
.why-card .icon-box,
.quality-card .icon-box,
.contact-card .icon-box {
  margin-bottom: 18px;
}

.service-card .icon-box {
  transition: transform 0.22s ease, color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover .icon-box,
.service-card:focus-within .icon-box {
  color: var(--white);
  background: var(--brand-cyan);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 184, 204, 0.24);
}

.service-card-link,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--brand-blue);
  font-family: var(--font-head);
  font-weight: 800;
  text-decoration: none;
}

.service-card .card-arrow,
.service-card .service-card-link .icon {
  transition: transform 0.22s ease, color 0.22s ease;
}

.service-card:hover .card-arrow,
.service-card:focus-within .card-arrow,
.service-card:hover .service-card-link .icon,
.service-card:focus-within .service-card-link .icon {
  transform: translateX(4px);
}

.service-card-link:hover,
.text-link:hover {
  color: var(--brand-cyan-dark);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(340px, 0.76fr);
  gap: 52px;
  align-items: center;
}

.home-page .about-preview {
  background: var(--white);
  padding: 0;
}

.home-page .about-preview .container {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(24px, 1fr) minmax(0, 540px) minmax(0, 640px) minmax(24px, 1fr);
  gap: 0;
}

.home-page .about-preview .stack {
  grid-column: 2;
  max-width: 470px;
  padding: 78px 46px 72px 0;
}

.home-page .about-preview .page-media {
  grid-column: 3 / 5;
  height: 455px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .about-preview .section-title {
  font-size: clamp(1.38rem, 2vw, 1.82rem);
}

.home-page .why-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
}

.home-page .why-card + .why-card {
  border-left: 1px solid var(--line);
}

.home-page .why-card .icon-box {
  margin-left: auto;
  margin-right: auto;
  color: var(--brand-blue);
}

.home-page .why-card .icon {
  width: 46px;
  height: 46px;
}

.home-page .why-card h3 {
  font-size: 0.95rem;
}

.home-page .why-card p {
  font-size: 0.8rem;
  line-height: 1.52;
}

.who-help {
  background: linear-gradient(135deg, #052344, #061c37 55%, #063d63);
  padding: 54px 0;
}

.who-help .center-head {
  margin-bottom: 34px;
}

.who-help .section-title {
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
}

.who-help .help-card {
  min-height: auto;
  color: var(--white);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.who-help .help-card .icon-box {
  color: #9ae7f3;
}

.who-help .help-card h3 {
  color: var(--white);
  font-size: 0.95rem;
}

.process-section .center-head {
  margin-bottom: 46px;
}

.process-line {
  position: relative;
}

.process-line::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 48px;
  border-top: 1px dashed rgba(0, 184, 204, 0.55);
}

.process-line .process-card {
  border: 0;
  box-shadow: none;
  text-align: center;
  background: transparent;
}

.process-line .step {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  margin: 0 auto 18px;
  background: var(--brand-cyan-dark);
  box-shadow: 0 10px 24px rgba(0, 184, 204, 0.22);
}

.process-line .step .icon {
  width: 34px;
  height: 34px;
}

.process-line .process-card h3 {
  font-size: 0.95rem;
}

.process-line .process-card h3::before {
  content: counter(step-counter) ". ";
}

.process-line {
  counter-reset: step-counter;
}

.process-line .process-card {
  counter-increment: step-counter;
}

.process-line .process-card p {
  max-width: 210px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.8rem;
  line-height: 1.55;
}

.standards-band {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  padding: 82px 0;
  background:
    linear-gradient(90deg, rgba(2, 14, 32, 0.94), rgba(3, 22, 43, 0.78) 44%, rgba(3, 22, 43, 0.28)),
    url("../images/network-cables-closeup.webp") center right / cover no-repeat;
}

.standards-copy {
  max-width: 560px;
}

.standards-copy .section-title {
  color: var(--white);
}

.standard-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.standard-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.standard-list .icon {
  width: 20px;
  height: 20px;
  padding: 3px;
  color: var(--white);
  background: var(--brand-cyan);
  border-radius: 50%;
  flex: 0 0 auto;
}

.home-cta-section {
  padding: 0;
  background: linear-gradient(90deg, #08aac2, #053566);
}

.home-page .home-cta-section .container {
  width: 100%;
  max-width: none;
}

.home-page .home-cta-section .cta-band {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 240px;
  align-items: center;
  gap: 48px;
  padding: 56px max(40px, calc((100vw - var(--max)) / 2));
  border-radius: 0;
  box-shadow: none;
  background:
    radial-gradient(circle at right, rgba(255, 255, 255, 0.14), transparent 28%),
    linear-gradient(90deg, #09adca, #053363);
}

.home-page .home-cta-section .cta-band h3 {
  grid-column: 2;
  max-width: 620px;
  font-size: clamp(1.32rem, 1.9vw, 1.75rem);
}

.home-page .home-cta-section .cta-band p {
  grid-column: 2;
  max-width: 540px;
}

.cta-icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  color: rgba(255, 255, 255, 0.64);
}

.cta-icon.icon,
.cta-icon .icon {
  width: 96px;
  height: 96px;
}

.home-page .home-cta-section .cta-actions {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.stack {
  display: grid;
  gap: 18px;
}

.plain-list,
.check-list {
  list-style: none;
  display: grid;
  gap: 11px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  color: #41536b;
}

.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--soft-cyan);
  border: 4px solid var(--brand-cyan);
}

.help-card {
  display: grid;
  place-items: center;
  min-height: 124px;
  text-align: center;
}

.help-card .icon-box {
  margin-bottom: 12px;
}

.process-card {
  position: relative;
}

.step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-blue);
  font-family: var(--font-head);
  font-weight: 800;
}

.quality-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.cta-band {
  padding: 58px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 32, 112, 0.96), rgba(0, 80, 160, 0.92)),
    var(--brand-navy);
  box-shadow: var(--shadow);
}

.cta-band h3 {
  margin: 0;
  max-width: 760px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.32rem, 2vw, 1.82rem);
  line-height: 1.12;
}

.cta-band p {
  margin-top: 16px;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-actions {
  margin-top: 28px;
}

.page-hero {
  padding: 78px 0;
  background:
    linear-gradient(90deg, rgba(242, 249, 253, 0.98), rgba(255, 255, 255, 0.94));
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
  gap: 52px;
  align-items: center;
}

.page-title {
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
}

.page-intro {
  margin-top: 18px;
  max-width: 720px;
  color: #41536b;
  font-size: 0.98rem;
  line-height: 1.65;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.profile-panel,
.service-detail {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 30px;
  align-items: center;
}

.service-detail + .service-detail {
  margin-top: 24px;
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.service-detail h3 {
  font-size: 1.28rem;
}

.service-media {
  box-shadow: none;
}

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

.solution-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-media {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.solution-body {
  padding: 22px;
}

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

.contact-card a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--brand-cyan-dark);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.map-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.subpage-hero {
  position: relative;
  min-height: 350px;
  padding: 56px 0 68px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #06182d;
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 16, 33, 0.96), rgba(3, 21, 43, 0.78) 44%, rgba(3, 21, 43, 0.24)),
    var(--hero-image) center right / cover no-repeat;
}

.about-hero {
  --hero-image: url("../images/about-office-tech-desk-optimized.webp");
}

.services-hero {
  --hero-image: url("../images/server-room-hero.webp");
  min-height: 350px;
}

.services-page .subpage-copy {
  max-width: 960px;
}

.services-page .subpage-copy h1 {
  max-width: 900px;
  font-size: clamp(1.76rem, 2.6vw, 2.36rem);
}

.contact-hero {
  --hero-image: url("../images/about-office-tech-desk-optimized.webp");
  min-height: 410px;
}

.subpage-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--brand-cyan);
  text-decoration: none;
}

.breadcrumb span::before {
  content: ">";
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.62);
}

.subpage-copy {
  max-width: 600px;
}

.subpage-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.76rem, 2.65vw, 2.55rem);
  line-height: 1.12;
}

.subpage-copy p {
  max-width: 520px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.65;
}

.accent-rule {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 24px;
  background: var(--brand-cyan);
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  padding: 4px;
  background: var(--white);
}

.service-showcase-card {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 56px 7vw;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 15, 29, 0.92), rgba(5, 23, 42, 0.63) 48%, rgba(5, 23, 42, 0.12)),
    var(--service-image) center / cover no-repeat;
}

.service-showcase-security {
  --service-image: url("../images/cctv-camera.webp");
}

.service-showcase-network {
  --service-image: url("../images/portfolio/network-cabinet-installation.webp");
}

.service-showcase-web {
  --service-image: url("../images/about-office-tech-desk-optimized.webp");
}

.service-showcase-access {
  --service-image: url("../images/access-control-device.webp");
}

.service-showcase-card > div {
  max-width: 370px;
  position: relative;
  z-index: 1;
}

.service-showcase-card .section-eyebrow {
  color: var(--brand-cyan);
  letter-spacing: 0.12em;
}

.service-showcase-card h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  line-height: 1.08;
}

.service-showcase-card p:not(.section-eyebrow) {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-showcase-card .btn {
  margin-top: 24px;
  justify-self: start;
  background: var(--brand-cyan);
  box-shadow: 0 12px 28px rgba(0, 184, 204, 0.26);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-detail-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-detail-card .icon-box {
  margin-bottom: 18px;
}

.service-detail-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.12rem;
  line-height: 1.25;
}

.service-detail-card p {
  margin-top: 10px;
  color: var(--muted);
}

.service-detail-card .check-list {
  margin-top: 18px;
}

.work-samples-section {
  background: #f2f9fd;
}

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

.work-sample-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.work-sample-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 204, 0.42);
  box-shadow: var(--shadow);
}

.work-sample-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center;
}

.work-sample-card div {
  padding: 18px;
}

.work-sample-card p {
  margin: 0 0 6px;
  color: var(--brand-cyan-dark);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-sample-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.04rem;
  line-height: 1.3;
}

.work-sample-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.project-work-head {
  margin-top: 54px;
}

.projects-list-section .project-work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projects-list-section .project-work-grid .work-sample-card img {
  height: 235px;
}

.about-intro .page-media {
  height: 320px;
}

.about-principles {
  padding: 46px 0;
  background: linear-gradient(90deg, #eef9ff, #f8fcff);
}

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

.principle-item {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.principle-item + .principle-item {
  border-left: 1px solid var(--line);
  padding-left: 32px;
}

.principle-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-cyan-dark);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.principle-icon .icon {
  width: 38px;
  height: 38px;
}

.principle-item h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.08rem;
}

.principle-item p,
.tick-list li {
  color: var(--text);
  font-size: 0.93rem;
  line-height: 1.62;
}

.tick-list {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  list-style: none;
}

.tick-list li::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--brand-navy);
  font-weight: 800;
}

.profile-section {
  padding-top: 0;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f3faff, #ffffff);
  box-shadow: var(--shadow-soft);
}

.profile-summary {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.profile-icon {
  width: 84px;
  height: 84px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-navy);
}

.profile-icon .icon {
  width: 38px;
  height: 38px;
}

.profile-summary h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
}

.profile-link {
  margin: 2px 0 12px;
  color: var(--brand-cyan-dark);
  font-weight: 800;
}

.profile-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.profile-facts div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
}

.profile-facts dt {
  color: var(--ink);
  font-weight: 800;
}

.profile-facts dd {
  margin: 0;
  color: var(--text);
}

.page-cta {
  padding: 34px 0;
  color: var(--white);
  background:
    radial-gradient(circle at left, rgba(0, 184, 204, 0.34), transparent 24%),
    linear-gradient(90deg, #048fb0, #061b35 64%, #06182d);
}

.cta-inline {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) auto;
  gap: 42px;
  align-items: center;
}

.cta-inline .cta-icon {
  grid-column: auto;
  grid-row: auto;
  color: rgba(255, 255, 255, 0.72);
}

.cta-inline h3 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-head);
  font-size: clamp(1.24rem, 1.9vw, 1.72rem);
  line-height: 1.16;
}

.cta-inline p {
  margin-top: 8px;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
}

.contact-details-section {
  padding: 34px 0 26px;
  background: #f8fcff;
}

.contact-page .contact-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-page .contact-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 20px;
  min-height: 214px;
  padding: 30px;
  border-radius: 10px;
  border-color: rgba(217, 232, 242, 0.95);
  box-shadow: 0 14px 34px rgba(0, 32, 112, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.contact-page .contact-card.visible {
  animation: contact-card-bounce 0.7s ease both;
}

.contact-page .contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 184, 204, 0.36);
  box-shadow: 0 20px 42px rgba(0, 32, 112, 0.13);
}

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

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

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

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

.contact-page .contact-card:nth-child(6).visible {
  animation-delay: 0.25s;
}

@keyframes contact-card-bounce {
  0% {
    transform: translateY(22px);
  }
  55% {
    transform: translateY(-8px);
  }
  78% {
    transform: translateY(3px);
  }
  100% {
    transform: translateY(0);
  }
}

.contact-icon {
  width: 68px;
  height: 68px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brand-cyan-dark);
  background: #e5f8ff;
}

.contact-icon .icon {
  width: 34px;
  height: 34px;
}

.contact-page .contact-card h3 {
  font-size: 1.1rem;
}

.contact-page .contact-card p {
  color: var(--text);
  font-size: 0.96rem;
}

.contact-page .contact-card p + p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-action-band {
  padding: 38px 0 42px;
  color: var(--white);
  text-align: center;
  background: radial-gradient(circle at center, rgba(0, 184, 204, 0.13), transparent 32%), #061b35;
}

.contact-action-band .center-head {
  margin-bottom: 28px;
}

.contact-action-band .section-title {
  color: var(--white);
  font-size: clamp(1.26rem, 1.9vw, 1.7rem);
}

.contact-action-band .accent-rule {
  margin: 10px auto 0;
}

.contact-action-band p {
  color: rgba(255, 255, 255, 0.84);
}

.contact-action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}

.contact-action {
  min-height: 84px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 18px 26px;
  border-radius: 999px;
  color: var(--white);
  text-align: left;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.26);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.contact-action:hover {
  transform: translateY(-2px);
  border-color: var(--brand-cyan);
}

.contact-action.call,
.contact-action.email {
  background: linear-gradient(135deg, var(--brand-cyan), var(--brand-blue));
  border-color: transparent;
}

.contact-action .icon {
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
}

.contact-action strong {
  display: block;
  font-family: var(--font-head);
  font-size: 0.98rem;
}

.contact-action small {
  color: rgba(255, 255, 255, 0.86);
}

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
}

.office-map {
  min-height: 360px;
}

.office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  border: 0;
}

.office-copy {
  min-width: 0;
  padding: 58px 40px 58px 72px;
}

.office-copy .section-title {
  font-size: clamp(1.38rem, 2vw, 1.8rem);
}

.office-copy .accent-rule {
  margin-top: 12px;
}

.office-copy > p:not(.section-eyebrow) {
  margin-top: 18px;
  max-width: 440px;
  color: var(--text);
}

.office-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  list-style: none;
}

.office-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
}

.office-list .icon {
  width: 22px;
  height: 22px;
  color: var(--brand-cyan-dark);
  flex: 0 0 auto;
}

.projects-hero {
  --hero-image: url("../images/projects/nyansix-school-management.webp");
  min-height: 410px;
}

.projects-hero::before {
  background:
    linear-gradient(90deg, rgba(3, 16, 33, 0.98), rgba(3, 21, 43, 0.86) 46%, rgba(3, 21, 43, 0.34)),
    var(--hero-image) center right / cover no-repeat;
}

.projects-list-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

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

.project-card,
.project-mini-card,
.project-proof-grid article {
  border: 1px solid rgba(217, 232, 242, 0.94);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.project-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.project-card:hover,
.project-mini-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 184, 204, 0.42);
  box-shadow: var(--shadow);
}

.project-media {
  display: block;
  height: 310px;
  overflow: hidden;
  background: #06182d;
}

.project-media img,
.project-mini-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.24s ease;
}

.project-card:hover .project-media img,
.project-mini-card:hover img {
  transform: scale(1.03);
}

.project-body {
  padding: 28px;
}

.project-category,
.project-mini-card p {
  margin: 0 0 8px;
  color: var(--brand-cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h3,
.project-mini-card h3,
.project-proof-grid h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.1rem;
  line-height: 1.25;
}

.project-card p:not(.project-category),
.project-proof-grid p {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.68;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  list-style: none;
}

.project-tags li {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brand-blue);
  background: #eaf6fc;
  font-size: 0.78rem;
  font-weight: 800;
}

.featured-projects {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbff 100%);
}

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

.project-mini-card {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.project-mini-card > a {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #06182d;
}

.project-mini-card > div {
  padding: 22px;
}

.project-mini-card .service-card-link {
  margin-top: 14px;
}

.project-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(0, 184, 204, 0.11), transparent 34%),
    linear-gradient(180deg, #f5fbff 0%, #edf8fe 100%);
}

.project-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 32, 112, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 32, 112, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.project-process-section .container {
  position: relative;
}

.project-process-section .split {
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(209, 231, 244, 0.96);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 70px rgba(0, 32, 112, 0.11);
}

.project-process-section .stack {
  position: relative;
  justify-content: center;
  min-height: 100%;
  padding: 40px;
  overflow: hidden;
  border-radius: 20px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 184, 204, 0.2), transparent 38%),
    linear-gradient(135deg, #03152b 0%, #002b6c 100%);
  box-shadow: 0 20px 46px rgba(0, 32, 112, 0.2);
}

.project-process-section .stack::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.project-process-section .stack .section-eyebrow {
  color: #48ddea;
}

.project-process-section .stack .section-title,
.project-process-section .stack p:not(.section-eyebrow) {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.project-process-section .stack p:not(.section-eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
}

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

.project-proof-grid article {
  position: relative;
  min-height: 206px;
  padding: 24px;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 252, 255, 0.98));
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.project-proof-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));
  opacity: 0;
  transition: opacity 0.2s ease;
}

.project-proof-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 184, 204, 0.42);
  box-shadow: 0 18px 42px rgba(0, 32, 112, 0.13);
}

.project-proof-grid article:hover::before {
  opacity: 1;
}

.project-proof-grid .icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: 16px;
  color: var(--brand-cyan-dark);
  background: #e9f8fc;
  box-shadow: inset 0 0 0 1px rgba(0, 184, 204, 0.14);
}

.blog-hero {
  --hero-image: url("../images/about-office-tech-desk-optimized.webp");
  min-height: 410px;
}

.single-blog-hero {
  --hero-image: url("../images/cctv-camera.webp");
  min-height: 410px;
}

.single-blog-hero-network {
  --hero-image: url("../images/network-switch-cables.webp");
}

.single-blog-hero-web,
.single-blog-hero-branding,
.single-blog-hero-ai,
.single-blog-hero-internet {
  --hero-image: url("../images/about-office-tech-desk-optimized.webp");
}

.single-blog-hero-maintenance {
  --hero-image: url("../images/server-room-hero.webp");
}

.single-blog-hero-access {
  --hero-image: url("../images/access-control-device.webp");
}

.single-blog-hero-cybersecurity {
  --hero-image: url("../images/cctv-control-room-screens.webp");
}

.single-blog-hero-cloud {
  --hero-image: url("../images/server-room-hero.webp");
}

.single-blog-hero-email-security {
  --hero-image: url("../images/about-office-tech-desk-optimized.webp");
}

.single-blog-page .subpage-copy {
  max-width: 820px;
}

.single-blog-page .subpage-copy h1 {
  max-width: 780px;
  font-size: clamp(1.72rem, 2.65vw, 2.42rem);
}

.blog-main-section,
.article-section-wrap {
  padding: 58px 0 70px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbfe 100%);
}

.blog-layout,
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 36px;
  align-items: start;
}

.blog-content-column {
  min-width: 0;
}

.blog-list-head {
  margin-bottom: 24px;
}

.blog-list-head h3,
.sidebar-card h3,
.article-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  line-height: 1.22;
}

.blog-list-head h3 {
  font-size: 1.55rem;
}

.blog-list {
  display: grid;
  gap: 14px;
}

.blog-post-card {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  overflow: hidden;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-post-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 184, 204, 0.42);
  box-shadow: 0 20px 44px rgba(0, 32, 112, 0.12);
}

.blog-post-media {
  min-height: 190px;
  overflow: hidden;
  background: var(--soft-blue);
}

.blog-post-media img,
.article-feature img,
.recent-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-body {
  position: relative;
  display: grid;
  align-content: center;
  padding: 24px 28px;
  min-width: 0;
}

.blog-category {
  margin: 0 0 8px;
  color: var(--brand-cyan-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-post-body h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: clamp(1.08rem, 1.55vw, 1.34rem);
  line-height: 1.18;
}

.blog-post-body h3 a {
  color: inherit;
  text-decoration: none;
}

.blog-post-body h3 a:hover {
  color: var(--brand-blue);
}

.blog-post-body > p:not(.blog-category) {
  margin-top: 10px;
  color: var(--text);
  line-height: 1.58;
}

.blog-post-meta,
.article-hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.blog-post-meta {
  margin-top: 18px;
  padding-right: 116px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.blog-post-meta span,
.article-hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-post-meta .icon,
.article-hero-meta .icon {
  width: 17px;
  height: 17px;
  color: var(--brand-blue);
}

.read-link {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
}

.read-link .icon {
  width: 16px;
  height: 16px;
}

.read-link:hover {
  color: var(--brand-cyan-dark);
}

.blog-sidebar {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h3 {
  font-size: 1.14rem;
}

.sidebar-card > h3 + * {
  margin-top: 18px;
}

.blog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}

.blog-search input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0 16px;
  color: var(--ink);
  font: inherit;
  outline: none;
  background: #fbfdff;
}

.blog-search input:focus {
  border-color: var(--brand-cyan);
  box-shadow: 0 0 0 4px rgba(0, 184, 204, 0.12);
}

.blog-search button {
  width: 48px;
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  color: var(--white);
  background: var(--brand-blue);
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
}

.blog-search button:hover {
  background: var(--brand-navy);
  transform: translateY(-1px);
}

.blog-search .icon {
  width: 20px;
  height: 20px;
  margin: auto;
}

.category-list {
  display: grid;
  gap: 13px;
  list-style: none;
}

.category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.category-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--text);
  text-decoration: none;
}

.category-list a:hover {
  color: var(--brand-blue);
}

.category-list .icon {
  width: 19px;
  height: 19px;
  color: var(--brand-cyan-dark);
}

.recent-post-list {
  display: grid;
  gap: 14px;
}

.recent-post {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.recent-post img {
  width: 76px;
  height: 64px;
  border-radius: 8px;
  background: var(--soft-blue);
}

.recent-post strong {
  display: block;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 0.86rem;
  line-height: 1.25;
}

.recent-post small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.recent-post:hover strong {
  color: var(--brand-blue);
}

.newsletter-card {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 88%, rgba(0, 184, 204, 0.2), transparent 32%),
    linear-gradient(135deg, #073b66, #06182d 72%);
}

.newsletter-card h3,
.newsletter-card p {
  color: var(--white);
}

.newsletter-card p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.newsletter-card .btn {
  margin-top: 22px;
  background: var(--brand-cyan-dark);
}

.newsletter-icon.icon {
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  color: var(--white);
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.pagination a,
.pagination span {
  min-width: 38px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--brand-navy);
  background: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.pagination a.active,
.pagination a:hover {
  color: var(--white);
  border-color: var(--brand-blue);
  background: var(--brand-blue);
}

.pagination .next {
  gap: 8px;
  min-width: 92px;
  border-radius: 999px;
}

.pagination .next .icon {
  width: 16px;
  height: 16px;
}

.article-hero-meta {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 800;
}

.article-hero-meta .icon {
  color: var(--white);
}

.article-main {
  min-width: 0;
}

.article-feature {
  overflow: hidden;
  height: 315px;
  margin: 0 0 28px;
  border-radius: var(--radius-sm);
  background: var(--soft-blue);
  box-shadow: var(--shadow-soft);
}

.article-body {
  color: var(--text);
}

.article-body > p,
.article-body section > p {
  margin-top: 0;
  font-size: 1.03rem;
  line-height: 1.78;
}

.article-body section {
  margin-top: 32px;
}

.article-body h3 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
}

.article-body a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.article-body a:hover {
  color: var(--brand-cyan-dark);
}

.article-share {
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #f4fbff;
}

.article-share-bottom {
  margin-top: 36px;
  background: linear-gradient(135deg, #f4fbff 0%, #ffffff 100%);
}

.article-share-bottom .article-share-links {
  gap: 10px;
}

.article-share-bottom .share-btn {
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 50%;
  font-size: 0;
}

.article-share-bottom .share-btn .icon {
  width: 20px;
  height: 20px;
}

.article-share h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.article-share-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white) !important;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.share-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 24px rgba(0, 32, 112, 0.18);
}

.share-btn .icon {
  width: 18px;
  height: 18px;
}

.share-btn.facebook {
  background: #0b58b8;
}

.share-btn.linkedin {
  background: #074c86;
}

.share-btn.x {
  background: #08111f;
}

.share-btn.whatsapp {
  background: #128c7e;
}

.article-callout {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 10px;
  color: var(--brand-navy);
  background: #eaf6fd;
}

.article-callout .icon {
  width: 26px;
  height: 26px;
  color: var(--brand-cyan-dark);
}

.article-callout p {
  margin: 0;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.author-avatar {
  width: 76px;
  height: 76px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0 12px;
  overflow: hidden;
  border-radius: 50%;
  background: #06214a;
}

.author-avatar img {
  width: 84%;
  height: auto;
}

.author-card p {
  margin-top: 10px;
  color: var(--text);
  line-height: 1.65;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--brand-navy);
  background: #eaf3fa;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.tag-cloud a:hover {
  color: var(--white);
  background: var(--brand-blue);
}

.help-sidebar-card .btn {
  margin-top: 20px;
}

.help-sidebar-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 18px;
}

.help-sidebar-row .icon {
  width: 42px;
  height: 42px;
  color: var(--brand-cyan-dark);
}

.help-sidebar-row p {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
}

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

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--white);
  background: var(--brand-cyan-dark);
  box-shadow: 0 14px 32px rgba(0, 32, 112, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--brand-blue);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #07182b;
  padding: 64px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.6fr));
  gap: 36px;
}

.footer-logo {
  width: 188px;
  max-width: 100%;
  display: block;
  margin-bottom: 18px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.footer-col h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1rem;
}

.footer-col p {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand-cyan);
}

.footer-links a.active {
  color: var(--brand-cyan);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--brand-cyan);
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(3, 18, 36, 0.9), rgba(3, 30, 59, 0.7)),
    url("../images/about-office-tech-desk-optimized.webp") center / cover no-repeat;
}

.legal-section {
  background: linear-gradient(180deg, #f8fcff, #ffffff);
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.legal-card section {
  margin-top: 28px;
}

.legal-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: var(--font-head);
  font-size: 1.18rem;
}

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

.legal-card a {
  color: var(--brand-blue);
  font-weight: 800;
  text-decoration: none;
}

.legal-card a:hover {
  color: var(--brand-cyan-dark);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.reveal.fade-left {
  transform: translateX(-34px);
}

.reveal.fade-right {
  transform: translateX(34px);
}

.reveal.fade-up {
  transform: translateY(28px);
}

.reveal.fade-scale {
  transform: scale(0.96);
}

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

.reveal.fade-left.visible,
.reveal.fade-right.visible,
.reveal.fade-up.visible,
.reveal.fade-scale.visible {
  transform: none;
}

.service-card.reveal {
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card.reveal.visible:hover,
.service-card.reveal.visible:focus-within {
  transform: translateY(-6px);
}

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

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

@media (max-width: 1080px) {
  .nav-links {
    gap: 18px;
  }

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

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

  .solution-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page .contact-info-grid,
  .contact-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .principle-grid {
    gap: 24px;
  }

  .principle-item {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .principle-icon {
    width: 58px;
    height: 58px;
  }

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

  .blog-layout,
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 28px;
  }

  .blog-post-card {
    grid-template-columns: 260px minmax(0, 1fr);
  }

  .blog-post-body {
    padding: 22px;
  }

  .blog-post-meta {
    padding-right: 0;
  }

  .read-link {
    position: static;
    margin-top: 14px;
    justify-self: start;
  }

  .home-page .home-cta-section .cta-band {
    grid-template-columns: 110px minmax(0, 1fr) 210px;
    gap: 28px;
  }
}

@media (max-width: 1024px) and (min-width: 901px) {
  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 92px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 10px;
  }

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

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--soft-blue);
  }

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

@media (max-width: 900px) {
  :root {
    --nav-h: 74px;
  }

  .container {
    width: min(100% - 32px, var(--max));
  }

  .brand img {
    width: 156px;
  }

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

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 13px 12px;
    border-radius: 10px;
  }

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

  .nav-links a.active,
  .nav-links a:hover {
    background: var(--soft-blue);
  }

  .home-page .nav-links {
    background: var(--white);
  }

  .home-page .nav-links a {
    color: #22344b;
  }

  .home-page .nav-links a.active,
  .home-page .nav-links a:hover {
    color: var(--brand-blue);
  }

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

  .hero,
  .page-hero {
    padding: 54px 0;
  }

  .home-page .home-hero {
    min-height: auto;
    padding: 120px 0 90px;
    background-position: center right;
  }

  .hero-grid,
  .page-hero-grid,
  .split,
  .service-detail,
  .section-head,
  .company-profile,
  .office-section,
  .blog-layout,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: 310px;
    padding: 46px 0 56px;
  }

  .subpage-copy h1 {
    font-size: 1.78rem;
  }

  .service-showcase {
    grid-template-columns: 1fr;
  }

  .service-showcase-card {
    min-height: 300px;
    padding: 42px 32px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-item + .principle-item {
    border-left: 0;
    padding-left: 0;
  }

  .profile-facts {
    padding-left: 0;
    border-left: 0;
  }

  .cta-inline {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 24px;
  }

  .cta-inline .btn {
    grid-column: 2;
    justify-self: start;
  }

  .office-copy {
    padding: 46px 32px;
  }

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

  .search-card,
  .newsletter-card,
  .author-card,
  .help-sidebar-card {
    grid-column: 1 / -1;
  }

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

  .highlight-strip {
    margin-top: 0;
    padding-top: 28px;
    background: var(--soft-blue);
  }

  .highlight-grid,
  .grid-3,
  .grid-4,
  .profile-grid,
  .value-grid,
  .work-sample-grid,
  .projects-list-section .project-work-grid,
  .project-preview-grid,
  .project-proof-grid,
  .contact-actions,
  .service-detail-grid,
  .contact-page .contact-info-grid,
  .contact-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 66px 0;
  }

  .project-process-section .split {
    padding: 22px;
  }

  .cta-band {
    padding: 34px;
  }

  .home-page .highlight-strip {
    margin-top: 0;
    padding-top: 0;
    background: #edf8fe;
  }

  .home-page .about-preview .container {
    width: min(100% - 32px, var(--max));
    max-width: var(--max);
    grid-template-columns: 1fr;
  }

  .home-page .about-preview .stack,
  .home-page .about-preview .page-media {
    grid-column: auto;
  }

  .home-page .about-preview .stack {
    max-width: none;
    padding: 66px 0 30px;
  }

  .home-page .about-preview .page-media {
    height: 360px;
    border-radius: var(--radius);
    margin-bottom: 66px;
  }

  .home-page .why-card + .why-card {
    border-left: 0;
  }

  .process-line::before {
    display: none;
  }

  .home-page .home-cta-section .cta-band {
    grid-template-columns: 1fr;
    padding: 42px 32px;
  }

  .home-page .home-cta-section .cta-actions {
    grid-column: auto;
    grid-row: auto;
    max-width: 260px;
  }

  .home-page .home-cta-section .cta-band h3,
  .home-page .home-cta-section .cta-band p,
  .cta-icon {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .hero-title,
  .page-title {
    font-size: 1.78rem;
  }

  .home-page .home-hero {
    padding: 100px 0 62px;
  }

  .home-page .home-hero .hero-title {
    font-size: 1.82rem;
  }

  .home-page .home-hero .hero-copy {
    font-size: 0.95rem;
  }

  .hero-media,
  .page-media {
    height: 300px;
    min-height: 300px;
  }

  .hero-actions,
  .cta-actions,
  .inline-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .highlight-grid,
  .grid-3,
  .grid-4,
  .grid-5,
  .grid-6,
  .profile-grid,
  .value-grid,
  .solution-grid,
  .project-grid,
  .work-sample-grid,
  .projects-list-section .project-work-grid,
  .project-preview-grid,
  .project-proof-grid,
  .service-detail-grid,
  .contact-page .contact-info-grid,
  .contact-action-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subpage-hero {
    min-height: auto;
    padding: 42px 0 50px;
  }

  .blog-hero,
  .single-blog-hero {
    min-height: auto;
  }

  .subpage-copy h1 {
    font-size: 1.76rem;
  }

  .subpage-copy p {
    font-size: 0.98rem;
  }

  .service-showcase-card {
    min-height: 280px;
    padding: 34px 24px;
  }

  .service-showcase-card h3 {
    font-size: 1.34rem;
  }

  .project-process-section .split {
    padding: 14px;
    border-radius: 18px;
  }

  .project-process-section .stack {
    padding: 28px 24px;
    border-radius: 16px;
  }

  .project-proof-grid article {
    min-height: auto;
    padding: 22px;
  }

  .contact-page .contact-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .contact-action {
    border-radius: 18px;
  }

  .profile-summary,
  .principle-item {
    grid-template-columns: 1fr;
  }

  .profile-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .company-profile {
    padding: 24px;
  }

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

  .cta-inline .btn {
    grid-column: auto;
    width: 100%;
  }

  .blog-main-section,
  .article-section-wrap {
    padding: 42px 0 54px;
  }

  .blog-list-head {
    margin-bottom: 16px;
  }

  .blog-post-card {
    grid-template-columns: 1fr;
  }

  .blog-post-media {
    min-height: 210px;
  }

  .blog-post-body {
    padding: 22px;
  }

  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .article-feature {
    height: 245px;
  }

  .article-callout {
    grid-template-columns: 1fr;
  }

  .article-hero-meta {
    gap: 12px;
  }

  .project-media,
  .project-mini-card > a {
    height: 230px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .highlight-card {
    grid-template-columns: 46px 1fr;
  }

  .icon-box {
    width: 46px;
    height: 46px;
  }

  .service-detail,
  .profile-panel,
  .service-card,
  .why-card,
  .process-card,
  .quality-card,
  .contact-card,
  .value-card {
    padding: 22px;
  }

  .footer-bottom {
    display: grid;
  }

  .home-page .highlight-card {
    padding: 22px;
  }

  .home-page .service-card {
    min-height: 210px;
  }

  .process-line .step {
    width: 72px;
    height: 72px;
  }

  .standards-band {
    min-height: auto;
    padding: 66px 0;
  }

  .standard-list li {
    font-size: 0.88rem;
  }

  .cta-icon.icon,
  .cta-icon .icon {
    width: 72px;
    height: 72px;
  }
}
