:root {
  --bg-dark: #040817;
  --bg-dark-2: #09122e;
  --bg-light: #f5f8ff;
  --panel: #ffffff;
  --panel-border: rgba(21, 39, 92, 0.08);
  --text-main: #141a31;
  --text-soft: #6e7690;
  --text-inverse: #f5f7ff;
  --blue: #4d67ff;
  --blue-2: #63d8ff;
  --violet: #8a63ff;
  --shadow: 0 24px 80px rgba(10, 18, 48, 0.14);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text-main);
  background: var(--bg-light);
}

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

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

.hero-shell {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 24%, rgba(110, 68, 255, 0.3), transparent 16%),
    radial-gradient(circle at 72% 56%, rgba(69, 220, 255, 0.12), transparent 18%),
    linear-gradient(180deg, #040817 0%, #071129 52%, #050b1f 100%);
  color: var(--text-inverse);
}

.hero-noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(96, 117, 255, 0.08), transparent 36%),
    radial-gradient(circle at 20% 100%, rgba(91, 218, 255, 0.1), transparent 25%);
  pointer-events: none;
}

.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  position: relative;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 35%, #7aefff, transparent 24%),
    linear-gradient(135deg, #4f6cff, #815cff);
  box-shadow: 0 0 24px rgba(82, 118, 255, 0.55);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.brand-mark::after {
  inset: 8px 5px;
  border-radius: 40%;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 247, 255, 0.82);
  font-size: 0.94rem;
}

.nav-links a:hover,
.footer a:hover {
  color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, #6c79ff, #4e69ff 55%, #57d4ff);
  box-shadow: 0 16px 36px rgba(78, 106, 255, 0.35);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(157, 180, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button-ghost-light {
  color: #fff;
  border: 1px solid rgba(157, 180, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline {
  color: #253154;
  border: 1px solid rgba(70, 95, 169, 0.14);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10, 20, 54, 0.08);
}

.topbar-cta {
  min-width: 220px;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 36px;
  padding: 56px 0 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(87, 118, 255, 0.13);
  border: 1px solid rgba(125, 149, 255, 0.18);
  color: #bcc8ff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.eyebrow-blue {
  background: rgba(82, 109, 255, 0.07);
  border-color: rgba(82, 109, 255, 0.11);
  color: #5668e5;
}

.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 5rem);
}

.hero h1 span,
.section h2 span {
  color: #6c82ff;
}

.hero-text {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(235, 240, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.trusted {
  margin-top: 42px;
}

.trusted p {
  margin: 0 0 18px;
  color: rgba(225, 232, 255, 0.66);
  font-size: 0.88rem;
}

.trusted-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 30px;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 10% 12% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 82, 255, 0.28), transparent 62%);
  filter: blur(34px);
  z-index: 0;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 80px rgba(86, 103, 255, 0.28));
  transform: scale(1);
  transition:
    transform 0.55s ease,
    filter 0.55s ease;
}

.hero-image-frame:hover .hero-image {
  transform: scale(1.08);
  filter: drop-shadow(0 36px 90px rgba(104, 123, 255, 0.36));
}

.section {
  padding: 84px 0;
}

.section-light {
  background: linear-gradient(180deg, #f9fbff 0%, #f5f8ff 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 30% 10%, rgba(91, 99, 255, 0.1), transparent 20%),
    linear-gradient(180deg, #07102a 0%, #050b1f 100%);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #111938;
}

.section-dark .section-head h2 {
  color: #ffffff;
}

.section-intro {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.compact h2,
.process-head h2 {
  max-width: none;
}

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

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

.services-showcase {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 0%, rgba(89, 63, 255, 0.18), transparent 28%),
    radial-gradient(circle at 90% 56%, rgba(46, 223, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #081026 0%, #050a19 100%);
  color: #fff;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 30%, rgba(122, 84, 255, 0.08), transparent 24%),
    linear-gradient(115deg, rgba(54, 93, 255, 0.04), transparent 38%);
  pointer-events: none;
}

.services-head {
  position: relative;
  z-index: 1;
  align-items: center;
  margin-bottom: 36px;
}

.services-eyebrow {
  background: rgba(24, 40, 98, 0.82);
  border-color: rgba(114, 137, 255, 0.2);
  color: #bfd0ff;
}

.services-showcase .section-head h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  line-height: 0.98;
  white-space: nowrap;
}

.services-showcase .section-head h2 span {
  color: #5d85ff;
}

.services-intro {
  max-width: 560px;
  color: rgba(216, 224, 245, 0.82);
  font-size: 1.05rem;
}

.services-cta {
  min-width: 290px;
  color: #fff;
  background: linear-gradient(90deg, #1186ff 0%, #b636ff 100%);
  border: 1px solid rgba(160, 226, 255, 0.72);
  box-shadow:
    0 0 0 1px rgba(144, 220, 255, 0.16),
    0 0 28px rgba(90, 112, 255, 0.34);
}

.services-cta::after {
  content: "→";
  margin-left: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.services-showcase .info-card,
.process-card {
  padding: 28px;
  border-radius: var(--radius-md);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 282px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(160px, 0.95fr);
  gap: 18px;
  padding: 26px 26px 22px;
  overflow: hidden;
  border-radius: 20px;
  background-color: #10182e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 4, 18, 0.35);
  transform: translateY(0) scale(1);
  transition:
    transform 0.38s ease,
    box-shadow 0.38s ease,
    border-color 0.38s ease,
    background 0.38s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 78%, currentColor 0%, transparent 22%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 40%);
  opacity: 0.18;
  transition:
    opacity 0.38s ease,
    transform 0.38s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 28px 64px rgba(0, 4, 18, 0.45),
    0 0 28px rgba(90, 118, 255, 0.12);
}

.service-card:hover::before {
  opacity: 0.3;
  transform: scale(1.05);
}

.service-violet {
  color: #b05cff;
  background:
    radial-gradient(circle at 76% 78%, rgba(180, 89, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(53, 21, 89, 0.92), rgba(11, 16, 39, 0.98));
  border: 1px solid rgba(168, 105, 255, 0.58);
}

.service-blue {
  color: #2f95ff;
  background:
    radial-gradient(circle at 76% 78%, rgba(59, 133, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(14, 53, 121, 0.9), rgba(11, 18, 40, 0.98));
  border: 1px solid rgba(66, 143, 255, 0.56);
}

.service-green {
  color: #24e29a;
  background:
    radial-gradient(circle at 76% 78%, rgba(35, 215, 151, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(8, 77, 87, 0.9), rgba(10, 20, 39, 0.98));
  border: 1px solid rgba(28, 219, 177, 0.48);
}

.service-orange {
  color: #ff9438;
  background:
    radial-gradient(circle at 76% 78%, rgba(255, 147, 59, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(81, 39, 18, 0.92), rgba(13, 17, 37, 0.98));
  border: 1px solid rgba(255, 144, 63, 0.44);
}

.service-pink {
  color: #ff58cf;
  background:
    radial-gradient(circle at 76% 78%, rgba(245, 76, 214, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(83, 24, 82, 0.92), rgba(12, 16, 38, 0.98));
  border: 1px solid rgba(243, 88, 203, 0.46);
}

.service-teal {
  color: #35d6ff;
  background:
    radial-gradient(circle at 76% 78%, rgba(48, 206, 255, 0.16), transparent 24%),
    linear-gradient(135deg, rgba(14, 60, 97, 0.92), rgba(10, 18, 39, 0.98));
  border: 1px solid rgba(61, 198, 255, 0.46);
}

.service-copy,
.service-art {
  position: relative;
  z-index: 1;
  transition: transform 0.38s ease;
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.info-card h3,
.product-card h3,
.process-card h3,
.footer h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.services-showcase .info-card h3 {
  margin: 18px 0 10px;
  color: #fff;
  font-size: 1.15rem;
}

.info-card p,
.product-card p,
.process-card p,
.about-copy p,
.footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.services-showcase .info-card p {
  color: rgba(220, 228, 246, 0.8);
  font-size: 0.98rem;
}

.info-card a,
.product-card a {
  display: inline-block;
  margin-top: 16px;
  color: #4d64ea;
  font-weight: 700;
}

.services-showcase .info-card a {
  margin-top: auto;
  padding-top: 18px;
  color: currentColor;
}

.services-showcase .info-card a::after {
  content: "→";
  margin-left: 12px;
  font-size: 1.35rem;
  line-height: 1;
  vertical-align: -2px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.services-showcase .card-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  font-size: 0.88rem;
}

.service-badge {
  background: transparent;
  box-shadow: none;
}

.service-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.08));
  transform: scale(1);
  transition:
    transform 0.38s ease,
    filter 0.38s ease;
}

.violet {
  background: linear-gradient(135deg, #9060ff, #6f49ff);
}

.blue {
  background: linear-gradient(135deg, #4e85ff, #4061ff);
}

.green {
  background: linear-gradient(135deg, #68d947, #2fb96d);
}

.orange {
  background: linear-gradient(135deg, #ffb14d, #ff8b29);
}

.pink {
  background: linear-gradient(135deg, #ef74d8, #d24ebd);
}

.teal {
  background: linear-gradient(135deg, #39d6d8, #1584a2);
}

.service-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.service-svg {
  width: min(100%, 220px);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px currentColor);
  opacity: 0.95;
  transform: translateY(0) scale(1);
  transition:
    transform 0.38s ease,
    filter 0.38s ease,
    opacity 0.38s ease;
}

.service-card:hover .service-copy {
  transform: translateY(-4px);
}

.service-card:hover .service-art {
  transform: translateY(-6px);
}

.service-card:hover .service-badge img {
  transform: scale(1.08);
  filter: drop-shadow(0 0 26px rgba(255, 255, 255, 0.14));
}

.service-card:hover .service-svg {
  transform: translateY(-4px) scale(1.04);
  filter: drop-shadow(0 0 22px currentColor);
  opacity: 1;
}

.products-strip {
  padding-top: 74px;
  padding-bottom: 74px;
}

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

.product-card {
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(115, 134, 255, 0.1), rgba(8, 17, 46, 0.58)),
    rgba(12, 18, 41, 0.88);
  border: 1px solid rgba(140, 164, 255, 0.14);
  box-shadow: 0 18px 50px rgba(1, 7, 28, 0.34);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(132, 164, 255, 0.34);
  box-shadow:
    0 24px 60px rgba(1, 7, 28, 0.42),
    0 0 28px rgba(89, 105, 255, 0.12);
}

.product-card p,
.product-card a {
  color: rgba(227, 236, 255, 0.8);
}

.product-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 86px;
  height: 86px;
}

.product-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(104, 120, 255, 0.18));
  transform: translateY(0) scale(1);
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.product-card:hover .product-icon img {
  transform: translateY(-4px) scale(1.06);
  filter: drop-shadow(0 18px 30px rgba(104, 120, 255, 0.28));
}

.about-layout {
  display: grid;
  grid-template-columns: 0.65fr 1.55fr;
  gap: 32px;
  align-items: center;
}

.about-copy h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.feature-list {
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #3a4465;
  font-weight: 600;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #69d8ff, #5b72ff);
  box-shadow: 0 0 16px rgba(92, 115, 255, 0.24);
}

.about-visual {
  position: relative;
  min-height: 500px;
}

.team-panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.04)),
    linear-gradient(135deg, #13316a, #081127 55%, #0a2f56);
  border: 1px solid rgba(134, 166, 255, 0.15);
  box-shadow: 0 26px 80px rgba(9, 18, 52, 0.2);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.process-section {
  padding-top: 28px;
}

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

.architecture-section {
  position: relative;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 82px;
  background:
    radial-gradient(circle at 88% 18%, rgba(74, 99, 255, 0.14), transparent 18%),
    linear-gradient(180deg, #091126 0%, #080f22 100%);
}

.architecture-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(104, 119, 255, 0.04), transparent 34%),
    radial-gradient(circle at 18% 6%, rgba(96, 214, 255, 0.05), transparent 18%);
  pointer-events: none;
}

.architecture-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.architecture-eyebrow {
  position: relative;
  padding-left: 28px;
  background: rgba(18, 34, 79, 0.82);
  border-color: rgba(106, 143, 255, 0.24);
  color: #c3d1ff;
}

.architecture-eyebrow::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6e8dff;
  box-shadow: 0 0 16px rgba(118, 146, 255, 0.85);
  transform: translateY(-50%);
}

.architecture-section h2 {
  max-width: none;
  color: #ffffff;
  font-size: clamp(2.55rem, 4.8vw, 4.4rem);
  white-space: nowrap;
}

.architecture-section h2 span {
  color: #7486ff;
}

.architecture-intro {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(200, 210, 236, 0.76);
  font-size: 1.04rem;
  line-height: 1.8;
}

.architecture-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.architecture-card {
  padding: 22px 20px 20px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    #151b2d;
  border: 1px solid rgba(118, 138, 196, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.architecture-card h3 {
  margin: 18px 0 10px;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.35;
}

.architecture-card p {
  margin: 0;
  color: rgba(189, 199, 224, 0.76);
  line-height: 1.8;
}

.architecture-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.architecture-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 10px 18px rgba(49, 122, 255, 0.2));
}

.step-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8f0ff, #d4e4ff);
  color: #3658de;
  font-size: 0.9rem;
  font-weight: 800;
}

.industries-section {
  padding-top: 20px;
}

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

.industry-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--panel-border);
  box-shadow: 0 14px 40px rgba(12, 20, 48, 0.08);
  color: #2a355b;
  font-weight: 700;
}

.industry-card span {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #eff4ff, #dfeaff);
  color: #4f66de;
  font-size: 0.72rem;
  font-weight: 800;
}

.industry-callout {
  margin-top: 18px;
  padding: 20px 24px;
  border-radius: 16px;
  background: linear-gradient(90deg, #ecf8ff, #dff5ff);
  color: #34506f;
  font-weight: 600;
}

.cta-band {
  padding: 34px 0;
  background: linear-gradient(90deg, #6a39ff 0%, #3f55ff 44%, #59d0ff 100%);
  color: #fff;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(241, 246, 255, 0.9);
}

.light-glow {
  box-shadow: 0 18px 42px rgba(255, 255, 255, 0.2);
}

.footer {
  padding: 42px 0 22px;
  background: #050b1f;
  color: rgba(227, 236, 255, 0.78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1rem;
}

.footer-about {
  max-width: 320px;
  margin-top: 18px;
}

.footer a,
.footer p {
  display: block;
  margin-bottom: 12px;
  color: rgba(227, 236, 255, 0.72);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.socials span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 8px;
  border-radius: 50px;
  border: 1px solid rgba(138, 160, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 136, 194, 0.12);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

@media (max-width: 1160px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

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

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

  .section-head,
  .cta-layout,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .services-showcase .section-head h2 {
    max-width: none;
  }

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

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

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

  .about-visual {
    min-height: 500px;
  }
}

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

  .topbar {
    padding-top: 18px;
  }

  .topbar-cta {
    display: none;
  }

  .hero {
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 2.7rem;
  }

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

  .section {
    padding: 64px 0;
  }

  .services-showcase .section-head h2 {
    white-space: normal;
  }

  .architecture-section h2 {
    white-space: normal;
  }

  .services-grid,
  .products-grid,
  .process-grid,
  .architecture-grid,
  .industry-grid,
  .footer-grid,
  .about-layout {
    grid-template-columns: 1fr;
  }

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

  .service-art {
    min-height: 140px;
  }

  .about-visual {
    min-height: 360px;
  }
}
