@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #020814;
  --panel: rgba(2, 11, 24, 0.88);
  --line: rgba(130, 169, 215, 0.24);
  --text: #f7f8fb;
  --muted: #b3c0d3;
  --blue: #08a9ff;
  --blue-2: #0875ff;
  --orange: #ff7700;
  --shell: min(1640px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background: #020814;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 46%, rgba(0, 102, 255, 0.17), transparent 32%),
    radial-gradient(circle at 93% 51%, rgba(255, 105, 0, 0.11), transparent 25%),
    linear-gradient(180deg, #020814 0%, #031126 70%, #020814 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 135px 0 150px;
  z-index: -7;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(13, 105, 204, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 105, 204, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, black 80%, transparent);
}

.navbar {
  position: relative;
  z-index: 20;
  min-height: 110px;
  margin-top: 17px;
  padding: 13px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: rgba(2, 10, 23, 0.84);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035), 0 22px 60px rgba(0,0,0,0.27);
  backdrop-filter: blur(18px);
}

.navbar-logo {
  width: 305px;
  height: 76px;
  display: flex;
  align-items: center;
}

.navbar-logo img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 0 12px rgba(0, 140, 255, 0.25));
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 72px;
  font-size: 1.05rem;
  font-weight: 700;
}

.navbar-links a {
  transition: 0.22s ease;
}

.navbar-links a:hover {
  color: var(--blue);
}

.nav-contact {
  min-width: 126px;
  padding: 18px 26px;
  text-align: center;
  border: 1px solid #0788ff;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 139, 255, 0.25), rgba(9, 42, 121, 0.55));
  box-shadow: 0 0 25px rgba(0, 122, 255, 0.13);
}

.nav-contact:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 0 33px rgba(0, 154, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 55px;
  height: 55px;
  border: 1px solid rgba(80, 128, 190, 0.22);
  border-radius: 15px;
  background: rgba(6, 20, 39, 0.95);
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px auto;
  background: var(--blue);
  box-shadow: 0 0 10px rgba(0, 169, 255, 0.68);
}

.hero-content {
  position: relative;
  z-index: 8;
  padding-top: 46px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  padding: 10px 22px;
  border: 1px solid rgba(0, 160, 255, 0.45);
  border-radius: 999px;
  color: #14b6ff;
  background: rgba(0, 95, 180, 0.08);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero-content h1 {
  max-width: 980px;
  margin: 25px auto 18px;
  font-size: clamp(4rem, 6.1vw, 6.75rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  font-weight: 800;
}

.hero-content h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #00a9ff 8%, #65c7ff 42%, #f7b26f 65%, #ff7a00 86%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-content p {
  margin: 0 auto;
  color: #c4cfde;
  font-size: 1.22rem;
  line-height: 1.62;
}

.hero-actions {
  margin-top: 31px;
  display: flex;
  justify-content: center;
  gap: 24px;
}

.button {
  min-width: 225px;
  min-height: 58px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 18px;
  font-weight: 800;
  transition: 0.24s ease;
}

.button-primary {
  background: linear-gradient(135deg, #0eaaff, #0866e5);
  box-shadow: 0 18px 38px rgba(0, 122, 255, 0.28);
}

.button-secondary {
  border: 1px solid rgba(111, 157, 212, 0.24);
  background: rgba(4, 14, 29, 0.78);
}

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

.digital-planet {
  position: absolute;
  left: 50%;
  bottom: 66px;
  z-index: 2;
  width: 1040px;
  height: 350px;
  transform: translateX(-50%);
  pointer-events: none;
}

.planet-sphere {
  position: absolute;
  left: 50%;
  bottom: -610px;
  width: 1060px;
  height: 1060px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 3px solid #14b8ff;
  background:
    repeating-radial-gradient(circle at center, transparent 0 44px, rgba(6, 126, 255, 0.16) 45px 46px),
    repeating-linear-gradient(90deg, transparent 0 63px, rgba(0, 168, 255, 0.18) 64px 65px),
    repeating-linear-gradient(0deg, transparent 0 51px, rgba(255, 112, 0, 0.16) 52px 53px),
    radial-gradient(circle at 42% 20%, #0e8fff 0, #033978 17%, #021839 52%, #130d0b 84%);
  box-shadow:
    inset 0 20px 70px rgba(0, 174, 255, 0.36),
    inset -30px 10px 80px rgba(255, 99, 0, 0.14),
    0 -9px 25px rgba(0, 174, 255, 0.8),
    0 -20px 80px rgba(0, 119, 255, 0.34);
}

.planet-sphere::before,
.planet-sphere::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.73;
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(0, 173, 255, 0.42) 15% 15.25%, transparent 15.25% 38%, rgba(255, 115, 0, 0.35) 38% 38.25%, transparent 38.25% 65%, rgba(0, 173, 255, 0.36) 65% 65.2%, transparent 65.2%),
    linear-gradient(0deg, transparent 0 23%, rgba(255, 115, 0, 0.3) 23% 23.25%, transparent 23.25% 44%, rgba(0, 173, 255, 0.35) 44% 44.2%, transparent 44.2% 68%, rgba(255, 115, 0, 0.25) 68% 68.2%, transparent 68.2%);
  clip-path: polygon(0 8%, 24% 8%, 24% 18%, 53% 18%, 53% 6%, 100% 6%, 100% 41%, 71% 41%, 71% 55%, 87% 55%, 87% 82%, 57% 82%, 57% 67%, 31% 67%, 31% 82%, 0 82%);
}

.planet-sphere::after {
  transform: rotate(90deg);
  opacity: 0.43;
}

.planet-ring {
  position: absolute;
  left: 50%;
  bottom: -103px;
  width: 1410px;
  height: 385px;
  border-radius: 50%;
  border: 4px solid transparent;
  border-top-color: #ff7c00;
  border-right-color: rgba(255, 112, 0, 0.95);
  transform: translateX(-45%) rotate(-7deg);
  box-shadow: 0 -3px 17px rgba(255, 111, 0, 0.62);
}

.ring-two {
  width: 1320px;
  bottom: -90px;
  border-top-color: rgba(0, 164, 255, 0.82);
  border-right-color: rgba(255, 112, 0, 0.55);
  transform: translateX(-46%) rotate(-4deg);
  opacity: 0.65;
}

.ring-three {
  width: 1490px;
  bottom: -130px;
  transform: translateX(-44%) rotate(-9deg);
  opacity: 0.3;
}

.side-ring {
  position: absolute;
  top: 180px;
  z-index: 0;
  width: 410px;
  height: 410px;
  border-radius: 50%;
}

.side-ring::before,
.side-ring::after {
  content: "";
  position: absolute;
  inset: 37px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.35;
}

.side-ring::after {
  inset: 85px;
  opacity: 0.22;
}

.side-ring-left {
  left: -250px;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0 0 45px rgba(0, 157, 255, 0.28), inset 0 0 45px rgba(0, 157, 255, 0.14);
}

.side-ring-right {
  right: -252px;
  top: 320px;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 0 0 45px rgba(255, 113, 0, 0.24), inset 0 0 45px rgba(255, 113, 0, 0.12);
}

.circuit {
  position: absolute;
  top: 220px;
  bottom: 170px;
  z-index: -1;
  width: 43%;
  opacity: 0.44;
  background:
    linear-gradient(90deg, transparent 0 13%, rgba(0, 139, 255, 0.32) 13.2% 13.5%, transparent 13.7% 36%, rgba(0, 139, 255, 0.25) 36.2% 36.5%, transparent 36.7%),
    linear-gradient(0deg, transparent 0 18%, rgba(0, 139, 255, 0.28) 18.2% 18.5%, transparent 18.7% 42%, rgba(0, 139, 255, 0.22) 42.2% 42.5%, transparent 42.7%);
  background-size: 260px 175px;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 82%, transparent);
}

.circuit-left {
  left: 0;
}

.circuit-right {
  right: 0;
  transform: scaleX(-1);
  filter: hue-rotate(160deg) saturate(1.7);
}

.quick-services {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 12;
  transform: translateX(-50%);
  min-height: 126px;
  padding: 20px 29px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(119, 159, 207, 0.23);
  border-radius: 27px;
  background: rgba(2, 11, 24, 0.93);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 65px rgba(0,0,0,0.34);
}

.quick-services article {
  padding: 8px 35px;
  display: flex;
  align-items: center;
  gap: 22px;
  border-right: 1px solid rgba(112, 160, 220, 0.17);
}

.quick-services article:last-child {
  border-right: 0;
}

.service-icon {
  width: 65px;
  height: 65px;
  flex: 0 0 65px;
  display: grid;
  place-items: center;
  font-size: 2.35rem;
  font-weight: 700;
  background: transparent;
}

.service-icon.blue {
  color: #08a9ff;
  text-shadow: 0 0 18px rgba(0, 169, 255, 0.55);
}

.service-icon.orange {
  color: #ff7900;
  text-shadow: 0 0 18px rgba(255, 121, 0, 0.48);
}

.quick-services h2 {
  margin: 0 0 9px;
  font-size: 1rem;
}

.quick-services p {
  margin: 0;
  color: #abb9cc;
  font-size: 0.87rem;
  line-height: 1.55;
}

.section {
  padding: 105px 0 120px;
}

.section-heading {
  margin-bottom: 40px;
  text-align: center;
}

.section-heading span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.section-heading h2 {
  margin: 12px 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

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

.product-card {
  min-height: 140px;
  padding: 27px 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(8, 25, 48, 0.9), rgba(3, 13, 28, 0.95));
  transition: 0.25s ease;
}

.product-card strong {
  font-size: 1.35rem;
}

.product-card span {
  color: var(--muted);
}

.product-card b {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue);
  font-size: 1.6rem;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 255, 0.5);
  box-shadow: 0 16px 36px rgba(0, 119, 255, 0.12);
}

@media (max-width: 1100px) {
  .navbar-links {
    gap: 35px;
  }

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

  .quick-services article:nth-child(2) {
    border-right: 0;
  }

  .quick-services article:nth-child(-n+2) {
    border-bottom: 1px solid rgba(112, 160, 220, 0.17);
  }

  .hero {
    min-height: 1060px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100% - 22px);
  }

  .hero {
    min-height: 1165px;
  }

  .navbar {
    min-height: 84px;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 23px;
  }

  .navbar-logo {
    width: 230px;
    height: 60px;
  }

  .navbar-logo img {
    max-height: 60px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 40;
  }

  .navbar-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 15px;
    display: grid;
    gap: 7px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(2, 11, 24, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: 0.22s ease;
  }

  .navbar-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .navbar-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-contact {
    min-width: 0;
  }

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

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

  .hero-content p {
    padding-inline: 5px;
    font-size: 1rem;
  }

  .hero-content p br {
    display: none;
  }

  .hero-actions {
    padding-inline: 8px;
    flex-direction: column;
    align-items: center;
  }

  .button {
    width: min(100%, 340px);
  }

  .digital-planet {
    width: 720px;
    bottom: 190px;
  }

  .planet-sphere {
    width: 720px;
    height: 720px;
    bottom: -445px;
  }

  .planet-ring {
    width: 900px;
    bottom: -100px;
  }

  .quick-services {
    bottom: 15px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .quick-services article,
  .quick-services article:nth-child(2),
  .quick-services article:nth-child(-n+2) {
    padding: 14px 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(112, 160, 220, 0.17);
  }

  .quick-services article:last-child {
    border-bottom: 0;
  }

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

@media (max-width: 470px) {
  .hero {
    min-height: 1190px;
  }

  .navbar-logo {
    width: 190px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
  }

  .eyebrow {
    font-size: 0.69rem;
  }

  .digital-planet {
    width: 600px;
    bottom: 210px;
  }

  .planet-sphere {
    width: 600px;
    height: 600px;
    bottom: -370px;
  }

  .quick-services p br {
    display: none;
  }
}


/* =========================
   O NAMA / PODSTRANICA
   ========================= */

.site-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 8%, rgba(0, 130, 255, 0.13), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(255, 112, 0, 0.09), transparent 25%),
    #020814;
}

.subpage-hero {
  position: relative;
  min-height: 665px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 35%, rgba(0, 105, 255, 0.17), transparent 35%),
    linear-gradient(180deg, #020814 0%, #031126 72%, #020814 100%);
}

.subpage-hero::before {
  content: "";
  position: absolute;
  inset: 120px 0 0;
  z-index: -3;
  opacity: 0.3;
  background-image:
    linear-gradient(rgba(13, 105, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 105, 204, 0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 22%, transparent 95%);
}

.subpage-hero .hero-orbit {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  opacity: 0.52;
  z-index: -1;
}

.subpage-hero .hero-orbit::before,
.subpage-hero .hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  inset: 38px;
  border: 1px solid currentColor;
  opacity: 0.38;
}

.subpage-hero .hero-orbit::after {
  inset: 86px;
  opacity: 0.22;
}

.subpage-hero .hero-orbit-left {
  left: -245px;
  top: 190px;
  color: var(--blue);
  border: 2px solid var(--blue);
  box-shadow: 0 0 50px rgba(0, 157, 255, 0.24);
}

.subpage-hero .hero-orbit-right {
  right: -250px;
  top: 240px;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: 0 0 50px rgba(255, 113, 0, 0.2);
}

.subpage-hero-inner {
  position: relative;
  z-index: 4;
  padding-top: 72px;
  padding-bottom: 85px;
  text-align: center;
}

.back-link {
  display: table;
  margin: 0 auto 30px;
  color: #a9bad0;
  font-weight: 600;
  transition: 0.2s ease;
}

.back-link:hover {
  color: var(--blue);
  transform: translateX(-4px);
}

.subpage-hero-inner h1 {
  max-width: 930px;
  margin: 24px auto 18px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.subpage-hero-inner h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, #00a9ff 8%, #67c8ff 43%, #f4b16f 66%, #ff7a00 87%);
  -webkit-background-clip: text;
  background-clip: text;
}

.subpage-hero-inner > p {
  max-width: 780px;
  margin: 0 auto;
  color: #becbdd;
  font-size: 1.15rem;
  line-height: 1.72;
}

.stats-row {
  max-width: 860px;
  margin: 45px auto 0;
  padding: 21px 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 25px;
  background: rgba(2, 11, 24, 0.8);
  backdrop-filter: blur(16px);
}

.stats-row article {
  padding: 8px 22px;
  border-right: 1px solid rgba(112, 160, 220, 0.16);
}

.stats-row article:last-child {
  border-right: 0;
}

.stats-row strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.65rem;
  color: white;
}

.stats-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.content-section {
  padding: 100px 0;
}

.content-section .section-heading {
  text-align: left;
}

.section-kicker {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
}

.about-main-card,
.value-card,
.feature-card,
.contact-card,
.contact-copy {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(8, 25, 48, 0.9), rgba(3, 13, 28, 0.95));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.about-main-card {
  position: relative;
  min-height: 520px;
  padding: 38px;
  overflow: hidden;
  border-radius: 28px;
}

.about-main-card::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -140px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 151, 255, 0.18), transparent 70%);
}

.about-main-card > img {
  width: 88px;
  height: 88px;
  padding: 14px;
  object-fit: contain;
  border: 1px solid rgba(0, 169, 255, 0.22);
  border-radius: 23px;
  background: rgba(0, 104, 190, 0.08);
}

.about-main-card h3 {
  margin: 30px 0 16px;
  font-size: 2rem;
}

.about-main-card p {
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.78;
}

.owner-row {
  margin-top: 31px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid rgba(112, 160, 220, 0.14);
}

.owner-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue), #0752c5);
  box-shadow: 0 0 25px rgba(0, 136, 255, 0.24);
}

.owner-row span,
.owner-row strong {
  display: block;
}

.owner-row span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

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

.value-card {
  min-height: 250px;
  padding: 28px;
  border-radius: 24px;
  transition: 0.25s ease;
}

.value-card:hover,
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 255, 0.46);
  box-shadow: 0 17px 40px rgba(0, 119, 255, 0.1);
}

.value-card > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--blue);
  font-size: 1.35rem;
  background: rgba(0, 132, 255, 0.09);
  border: 1px solid rgba(0, 169, 255, 0.2);
}

.value-card:nth-child(even) > span {
  color: var(--orange);
  border-color: rgba(255, 119, 0, 0.22);
  background: rgba(255, 119, 0, 0.07);
}

.value-card h3 {
  margin: 25px 0 11px;
}

.value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.content-section .feature-card {
  position: relative;
  min-height: 300px;
  padding: 30px;
  border-radius: 25px;
  transition: 0.25s ease;
}

.content-section .feature-card > img {
  width: 76px;
  height: 76px;
  padding: 12px;
  object-fit: contain;
  border: 1px solid rgba(0, 169, 255, 0.2);
  border-radius: 21px;
  background: rgba(0, 106, 200, 0.07);
}

.content-section .feature-card h3 {
  margin: 28px 0 13px;
  font-size: 1.25rem;
}

.content-section .feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.67;
}

.contact-section {
  margin-bottom: 90px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 25px;
}

.contact-copy {
  padding: 52px;
  border-radius: 29px;
  background:
    radial-gradient(circle at 10% 20%, rgba(0, 151, 255, 0.17), transparent 35%),
    linear-gradient(145deg, rgba(8, 25, 48, 0.92), rgba(3, 13, 28, 0.96));
}

.contact-copy h2 {
  margin: 15px 0 20px;
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.contact-copy > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-copy .hero-actions {
  justify-content: flex-start;
}

.contact-card {
  padding: 20px 32px;
  border-radius: 29px;
}

.contact-card article {
  padding: 24px 0;
  border-bottom: 1px solid rgba(112, 160, 220, 0.14);
}

.contact-card article:last-child {
  border-bottom: 0;
}

.contact-card span,
.contact-card strong,
.contact-card a,
.contact-card p {
  display: block;
}

.contact-card span {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.contact-card a:hover {
  color: var(--blue);
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  width: var(--shell);
  margin-inline: auto;
  padding: 34px 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid rgba(112, 160, 220, 0.14);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-brand img {
  width: 220px;
  max-height: 65px;
  object-fit: contain;
  object-position: left center;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .about-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .content-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .subpage-hero {
    min-height: 750px;
  }

  .subpage-hero-inner {
    padding-top: 65px;
  }

  .subpage-hero-inner h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .stats-row {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .stats-row article,
  .stats-row article:last-child {
    border-right: 0;
    border-bottom: 1px solid rgba(112, 160, 220, 0.15);
    padding: 17px;
  }

  .stats-row article:last-child {
    border-bottom: 0;
  }

  .content-section {
    padding: 78px 0;
  }

  .content-section .section-heading {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .content-section .feature-grid {
    grid-template-columns: 1fr;
  }

  .about-main-card {
    min-height: 0;
    padding: 29px 24px;
  }

  .value-card {
    min-height: 220px;
  }

  .contact-copy {
    padding: 38px 25px;
  }

  .contact-card {
    padding: 14px 24px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
  }

  .footer-brand img {
    object-position: center;
  }
}
