:root {
  --bg: #010711;
  --bg-soft: #031020;
  --panel: rgba(4, 14, 30, 0.78);
  --panel-strong: rgba(5, 15, 32, 0.9);
  --line: rgba(67, 131, 255, 0.36);
  --line-soft: rgba(132, 172, 235, 0.22);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.52);
  --blue: #1479ff;
  --blue-2: #0048ff;
  --cyan: #18d9ff;
  --glow: rgba(20, 121, 255, 0.48);
  --max: 1376px;
  --header: 100px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  background:
    linear-gradient(104deg, rgba(0, 5, 14, 0.98) 0%, rgba(1, 8, 20, 0.98) 50%, rgba(1, 5, 15, 0.98) 100%),
    var(--bg);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

button,
input,
textarea {
  font: inherit;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 18, 42, 0.08), transparent 35%, rgba(0, 82, 225, 0.08)),
    repeating-linear-gradient(115deg, transparent 0 280px, rgba(29, 101, 255, 0.08) 281px, transparent 283px);
}

.dot-field {
  position: absolute;
  width: 300px;
  height: 900px;
  opacity: 0.55;
  background-image: radial-gradient(circle, rgba(35, 130, 255, 0.9) 1px, transparent 1.7px);
  background-size: 13px 13px;
  mask-image: linear-gradient(90deg, transparent, #000 28%, #000 76%, transparent);
}

.dot-field-right {
  top: -30px;
  right: -22px;
}

.dot-field-left {
  bottom: -290px;
  left: -90px;
  opacity: 0.16;
}

.neon-chevron {
  position: absolute;
  top: -60px;
  right: -45px;
  width: 460px;
  height: 1020px;
}

.neon-chevron::before,
.neon-chevron::after {
  content: "";
  position: absolute;
  right: 120px;
  width: 3px;
  height: 530px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--blue), var(--cyan), var(--blue), transparent);
  box-shadow: 0 0 18px var(--blue), 0 0 34px rgba(0, 191, 255, 0.5);
}

.neon-chevron::before {
  top: -34px;
  transform: rotate(-27deg);
  transform-origin: bottom center;
}

.neon-chevron::after {
  top: 376px;
  transform: rotate(31deg);
  transform-origin: top center;
}

.laser {
  position: absolute;
  width: 2px;
  height: 520px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(20, 121, 255, 0.95), transparent);
  box-shadow: 0 0 18px rgba(20, 121, 255, 0.75);
}

.laser-one {
  right: 170px;
  bottom: -210px;
  transform: rotate(42deg);
}

.laser-two {
  left: 430px;
  bottom: -230px;
  opacity: 0.45;
  transform: rotate(45deg);
}

.laser-three {
  right: 360px;
  top: 60px;
  height: 780px;
  opacity: 0.2;
  transform: rotate(-28deg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 54px;
  background: rgba(1, 4, 12, 0.82);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
}

.brand img {
  width: 72px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(20, 121, 255, 0.42));
}

.brand span,
.footer-brand span {
  color: #ffffff;
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 43px;
}

.site-nav a {
  position: relative;
  padding: 17px 0 19px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 86px;
  height: 2px;
  opacity: 0;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  box-shadow: 0 0 12px var(--blue), 0 0 22px rgba(24, 217, 255, 0.55);
  transition: opacity 160ms ease;
}

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

.site-nav a.active::after {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: var(--text);
  background: rgba(9, 25, 52, 0.78);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px auto;
  background: var(--text);
  border-radius: 999px;
}

.page-section {
  position: relative;
  width: min(var(--max), calc(100% - 96px));
  min-height: auto;
  margin: 0 auto;
  padding: 60px 0;
  scroll-margin-top: 100px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(20, 121, 255, 0.48);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  color: var(--text);
  font-weight: 800;
  line-height: 1.12;
}

h1 span,
h2 span {
  color: var(--blue);
  text-shadow: 0 0 18px rgba(20, 121, 255, 0.42);
}

.hero-section {
  display: block;
  padding-top: 150px;
}

.hero-copy {
  padding-left: 60px;
  max-width: none;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 25px;
  font-size: 56px;
}

.hero-text {
  max-width: 560px;
  margin-bottom: 52px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-width: 222px;
  min-height: 56px;
  padding: 0 30px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(105deg, #1188ff 0%, #0067ff 52%, #0048ff 100%);
  box-shadow: 0 0 26px rgba(0, 87, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: #ffffff;
  background: rgba(4, 12, 28, 0.58);
  border-color: rgba(178, 201, 235, 0.46);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(20, 121, 255, 0.42);
}

.tech-strip {
  width: min(1080px, calc(100vw - 96px));
  margin: 60px auto 0;
  overflow: hidden;
  text-align: center;
  transform: translateX(-30px);
}

.tech-strip > p {
  margin-bottom: 30px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.tech-list {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.tech-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: tech-marquee 22s linear infinite;
}

.tech-list:hover .tech-track {
  animation-play-state: paused;
}

.tech-set {
  display: flex;
  align-items: center;
  gap: 58px;
  flex: 0 0 auto;
  padding-inline: 29px;
}

.tech-item {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 13px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  font-weight: 500;
}

.tech-item svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 9px rgba(20, 121, 255, 0.7));
}

.tech-item text {
  fill: var(--blue);
  stroke: none;
  font-size: 11px;
  font-weight: 800;
  font-family: Arial, sans-serif;
}

@keyframes tech-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 19px;
  font-size: 48px;
}

.section-heading p:not(.eyebrow),
.contact-copy > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.section-heading-left {
  margin-left: 135px;
  margin-bottom: 39px;
}

.section-heading-center {
  max-width: 700px;
  margin: 0 auto 27px;
  text-align: center;
}

.services-section {
  padding-top: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
  max-width: 1215px;
}

.service-card {
  min-height: 423px;
  padding: 38px 32px 31px;
  border: 1px solid rgba(24, 102, 255, 0.44);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 21, 44, 0.82), rgba(3, 10, 24, 0.74)),
    rgba(4, 13, 28, 0.75);
  box-shadow: inset 0 0 34px rgba(0, 115, 255, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.service-icon {
  display: grid;
  place-items: center;
  height: 156px;
  margin-bottom: 28px;
}

.service-icon svg {
  width: 132px;
  height: 132px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 13px rgba(20, 121, 255, 0.95)) drop-shadow(0 0 26px rgba(24, 217, 255, 0.35));
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 22px;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.service-card a,
.project-info a {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 0 12px rgba(20, 121, 255, 0.42);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1215px;
  margin: 42px auto 0;
  padding-top: 29px;
  border-top: 1px solid rgba(20, 121, 255, 0.38);
}

.benefits article {
  display: flex;
  gap: 20px;
  min-height: 90px;
  padding: 0 32px;
  border-right: 1px solid rgba(20, 121, 255, 0.32);
}

.benefits article:first-child {
  padding-left: 4px;
}

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

.benefits svg {
  width: 47px;
  min-width: 47px;
  height: 47px;
  padding: 10px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(20, 121, 255, 0.86);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(20, 121, 255, 0.58);
}

.benefits h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.2;
}

.benefits p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.route-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 110px;
}

.portfolio-section {
  padding-top: 60px;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.portfolio-filters button {
  min-width: 108px;
  min-height: 36px;
  padding: 0 19px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
}

.portfolio-filters button.active {
  background: linear-gradient(105deg, #0e86ff, #004cff);
  border-color: rgba(82, 151, 255, 0.48);
  box-shadow: 0 0 16px rgba(20, 121, 255, 0.5);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
  max-width: 1252px;
  margin: 0 auto;
}

.project-card {
  display: grid;
  grid-template-columns: 302px 1fr;
  gap: 30px;
  min-height: 251px;
  padding: 20px 28px 20px 20px;
  border: 1px solid rgba(124, 158, 222, 0.34);
  border-radius: 7px;
  background: rgba(4, 14, 30, 0.72);
  transition: opacity 170ms ease, transform 170ms ease, border-color 170ms ease;
}

.project-card[hidden] {
  display: none;
}

.project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 121, 255, 0.62);
}

.project-card img {
  width: 100%;
  height: 211px;
  object-fit: cover;
  align-self: center;
  border-radius: 5px;
  border: 1px solid rgba(61, 116, 219, 0.24);
  box-shadow: inset 0 0 20px rgba(20, 121, 255, 0.22);
}

.project-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.project-info h3 {
  margin-bottom: 13px;
  font-size: 22px;
  line-height: 1.2;
}

.project-category {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 800;
}

.project-info p:not(.project-category) {
  min-height: 58px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.portfolio-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 88px;
  min-height: 141px;
  max-width: 1252px;
  margin: 16px auto 0;
  padding: 22px 46px;
  text-align: center;
  border: 1px solid rgba(20, 121, 255, 0.38);
  border-radius: 7px;
  background: rgba(4, 14, 30, 0.72);
  box-shadow: inset 14px 0 18px -18px rgba(24, 217, 255, 0.8);
}

.portfolio-cta h3 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.15;
}

.portfolio-cta p {
  margin-bottom: 0;
  color: var(--soft);
  font-size: 19px;
}

.portfolio-cta .btn {
  min-width: 204px;
  min-height: 54px;
  font-size: 15px;
}

.contact-section {
  min-height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.96fr 1fr;
  gap: 74px;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-copy {
  position: relative;
  min-height: 610px;
}

.contact-copy::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: 54px;
  width: 360px;
  height: 360px;
  opacity: 0.32;
  background: url("/assets/world-dots.svg") center / contain no-repeat;
  filter: drop-shadow(0 0 16px rgba(20, 121, 255, 0.28));
  pointer-events: none;
}

.contact-copy h2 {
  margin-bottom: 22px;
  font-size: 52px;
}

.contact-copy > p {
  max-width: 610px;
  margin-bottom: 35px;
  font-size: 19px;
}

.contact-details {
  display: grid;
  gap: 31px;
  position: relative;
  z-index: 1;
}

.contact-details article,
.contact-details article a {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.contact-details article a:hover svg {
  stroke: var(--cyan);
  filter: drop-shadow(0 0 12px var(--cyan));
}

.contact-details svg {
  width: 32px;
  min-width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(20, 121, 255, 0.6));
}

.contact-details h3 {
  margin-bottom: 6px;
  font-size: 19px;
  line-height: 1;
}

.contact-details p {
  margin: 0;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.15;
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  position: relative;
  z-index: 1;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--blue);
  border: 1px solid rgba(143, 169, 217, 0.32);
  border-radius: 9px;
  background: rgba(5, 13, 30, 0.55);
  box-shadow: inset 0 0 16px rgba(20, 121, 255, 0.05);
  transition: color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-links a:hover {
  color: var(--cyan);
  border-color: rgba(24, 217, 255, 0.58);
  box-shadow: 0 0 20px rgba(20, 121, 255, 0.28);
}

.social-links svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-form {
  display: grid;
  gap: 23px;
  align-self: start;
  padding: 57px 44px 50px;
  border: 1px solid rgba(142, 168, 217, 0.32);
  border-radius: 15px;
  background: rgba(5, 14, 31, 0.76);
  box-shadow: inset 0 0 32px rgba(20, 121, 255, 0.04);
}

.contact-form label {
  display: block;
}

.contact-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: #ffffff;
  background: rgba(3, 10, 24, 0.6);
  border: 1px solid rgba(142, 168, 217, 0.32);
  border-radius: 5px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form input {
  height: 64px;
  padding: 0 18px;
  font-size: 16px;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 20px 18px;
  font-size: 16px;
  line-height: 1.45;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.74);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(24, 217, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(20, 121, 255, 0.14);
}

.btn-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 9px;
  cursor: pointer;
}

.form-status {
  min-height: 22px;
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.form-status.error {
  color: #ff9d9d;
}

.form-status.success {
  color: #75e9ff;
}

.site-footer {
  width: 100%;
  background: rgba(1, 4, 12, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 30px 0;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: 285px 1fr 430px;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 108px), 1484px);
  margin: 0 auto;
}

.footer-brand img {
  width: 62px;
  filter: drop-shadow(0 0 8px rgba(20, 121, 255, 0.36));
}

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

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  text-align: center;
}

.site-footer nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-left: 36px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  transition: color 160ms ease;
}

.site-footer a:hover {
  color: var(--blue);
}

@media (max-width: 1240px) {
  .site-nav {
    gap: 25px;
  }

  .hero-copy {
    padding-left: 12px;
  }

  .hero-copy h1,
  .contact-copy h2 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 18px;
  }

  .section-heading-left {
    margin-left: 0;
  }

  .project-card {
    grid-template-columns: 245px 1fr;
  }

  .contact-layout {
    gap: 36px;
  }
}

@media (max-width: 1020px) {
  :root {
    --header: 82px;
  }

  .site-header {
    padding: 0 24px;
  }

  .brand img {
    width: 62px;
  }

  .brand span {
    font-size: 20px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line-soft);
    border-radius: 10px;
    background: rgba(2, 9, 22, 0.96);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 12px;
    text-align: center;
  }

  .site-nav a::after {
    width: 42%;
  }

  .page-section {
    width: min(100% - 38px, var(--max));
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 64px;
  }

  .hero-section {
    display: block;
  }

  .hero-copy {
    padding-left: 0;
  }

  .tech-strip {
    width: 100%;
    transform: none;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 40px;
  }

  .services-grid,
  .benefits,
  .portfolio-grid,
  .contact-layout,
  .footer-container {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .benefits {
    gap: 22px;
    border-top: 0;
  }

  .benefits article {
    padding: 0;
    border-right: 0;
  }

  .portfolio-cta {
    flex-direction: column;
    gap: 22px;
  }

  .contact-copy {
    min-height: auto;
  }

  .contact-copy::after {
    right: 0;
    bottom: -16px;
  }

  .site-footer {
    padding: 25px 0;
  }

  .footer-container {
    width: min(100% - 38px, 760px);
    justify-items: center;
    text-align: center;
    gap: 30px;
  }

  .site-footer nav {
    padding-left: 0;
    border-left: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 680px) {
  .dot-field-right {
    opacity: 0.28;
  }

  .neon-chevron {
    opacity: 0.5;
    right: -170px;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-copy h2 {
    font-size: 32px;
  }

  .hero-text,
  .section-heading p:not(.eyebrow),
  .contact-copy > p {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .tech-list {
    mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  }

  .tech-set {
    gap: 34px;
    padding-inline: 17px;
  }

  .services-grid {
    gap: 18px;
  }

  .service-card {
    padding: 30px 24px;
  }

  .service-icon {
    height: 120px;
  }

  .service-icon svg {
    width: 110px;
    height: 110px;
  }

  .portfolio-filters {
    gap: 10px;
  }

  .portfolio-filters button {
    min-width: 0;
    flex: 1 1 42%;
  }

  .project-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 16px;
  }

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

  .portfolio-cta {
    padding: 28px 18px;
  }

  .portfolio-cta h3 {
    font-size: 23px;
  }

  .portfolio-cta p {
    font-size: 17px;
  }

  .contact-details p {
    font-size: 19px;
  }

  .social-links a {
    width: 62px;
    height: 62px;
  }

  .contact-form {
    padding: 28px 18px;
    border-radius: 10px;
  }
}
