* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0e0c10;
  --panel: #15121b;
  --panel-2: #1b1722;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: rgba(255, 255, 255, 0.96);
  --muted: rgba(255, 255, 255, 0.72);
  --soft: rgba(255, 255, 255, 0.56);
  --accent: #6e23ba;
  --accent-light: #a259ff;
  --accent-glow: rgba(162, 89, 255, 0.28);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1240px, calc(100% - 48px));
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nunito", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

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

main {
  overflow: hidden;
}

/* HERO */

.hero{
  position: relative;
  height: 960px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,   /* плотный чёрный слева */
      rgba(0, 0, 0, 0.45) 75%,   /* почти прозрачно */
      rgba(0, 0, 0, 0) 100%     /* прозрачный справа */
    ),
    url("../img/background-servic.webp") center center / cover no-repeat;
  display: flex;
  z-index: 1;
}

.block{
  background: #6E23BA;
  width: 20px;
  height: 100%;
}

.hero_container{
  padding-top: 80px;
  padding-left: 215px;
  display: flex;
  font-family: 'Nunito', sans-serif;
  height: 100%;
}

.hero_container ul {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.hero_container ul li:last-child {
  margin-top: auto;
  margin-bottom: 100px;
}

.hero_container h1{
  margin-left: -20px;
  margin-top: 200px;
  font-size: 48px;
  font-weight: 800;
}

.hero_container p{
  font-size: 24px;
  font-weight: 100;
  margin-top: 30px;
  margin-left: 30px;
}

.hero_container h2{
  margin-left:30px;
  font-weight:700;
  white-space:nowrap;
}

.typing {
  display: inline-block;
  border-right: 3px solid #a259ff;
  padding-right: 6px;
  white-space: nowrap;
  animation: blink 1.2s step-end infinite;
}

@keyframes blink {
  50% {
    border-right-color: transparent;
  }
}

.hero_container a{
  text-decoration:none;
  color:white;
}

.hero_container a:hover h2 {
  text-shadow:
    0 0 10px rgba(162, 89, 255, 0.7),
    0 0 30px rgba(162, 89, 255, 0.4);
}

/* COMMON */

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 800;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.25s ease;
}

/* последовательная анимация */
.service-card:nth-child(1) .service-link {
  animation: serviceLinkGlow 3s infinite;
}

.service-card:nth-child(2) .service-link {
  animation: serviceLinkGlow 3s infinite 1s;
}

.service-card:nth-child(3) .service-link {
  animation: serviceLinkGlow 3s infinite 2s;
}

@keyframes serviceLinkGlow {
  0% {
    color: #ffffff;
    text-shadow: 0 0 0 rgba(162, 89, 255, 0);
  }

  20% {
    color: #a259ff;
    text-shadow:
      0 0 8px rgba(162, 89, 255, 0.8),
      0 0 16px rgba(162, 89, 255, 0.4);
  }

  40% {
    color: #ffffff;
    text-shadow: 0 0 0 rgba(162, 89, 255, 0);
  }

  100% {
    color: #ffffff;
    text-shadow: 0 0 0 rgba(162, 89, 255, 0);
  }
}

.service-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #a259ff, #7a3cff);
  transition: width 0.3s ease;
}

.service-link:hover {
  animation-play-state: paused;
  color: #a259ff;
  text-shadow:
    0 0 8px rgba(162, 89, 255, 0.7),
    0 0 16px rgba(162, 89, 255, 0.35);
}

.service-link:hover::after {
  width: 100%;
}

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

.services-overview,
.process-section,
.services-section,
.delivery-section {
  padding: 110px 0 0;
}

.delivery-section {
  padding-bottom: 120px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-heading--split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: end;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.section-heading h2,
.delivery-panel h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.section-heading p,
.delivery-panel p,
.service-copy p,
.overview-card p,
.step-card p,
.delivery-grid p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

/* OVERVIEW */

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

.overview-card,
.step-card,
.delivery-grid article {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(110, 35, 186, 0.12), rgba(110, 35, 186, 0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.overview-card:hover,
.step-card:hover,
.delivery-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(162, 89, 255, 0.3);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(162, 89, 255, 0.18),
    0 0 30px rgba(162, 89, 255, 0.12);
}

.overview-card {
  padding: 28px;
}

.overview-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: rgba(110, 35, 186, 0.16);
  border: 1px solid rgba(162, 89, 255, 0.24);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.overview-card:hover .overview-number {
  transform: scale(1.05);
  background: rgba(110, 35, 186, 0.25);
  box-shadow: 0 0 22px rgba(162, 89, 255, 0.18);
}

.overview-card h3,
.step-card h3,
.delivery-grid h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.12;
  margin-bottom: 14px;
}

/* PROCESS */

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

.step-card {
  position: relative;
  padding: 28px 24px 24px;
  min-height: 100%;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -35% auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(162, 89, 255, 0.18), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.step-card:hover::after {
  opacity: 1;
}




.step-badge {
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.step-card h3, .step-card p, .step-icon, .step-card ul, .step-badge{
  margin-left: -10px;
}


.step-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 18px;
  transition:
    transform var(--transition),
    filter var(--transition);
}

.step-card:hover .step-icon {
  transform: scale(1.06);
  filter: drop-shadow(0 0 14px rgba(162, 89, 255, 0.28));
}

.step-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.step-card li {
  position: relative;
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.5;
}

.step-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-light);
  box-shadow: 0 0 0 4px rgba(162, 89, 255, 0.12);
}

/* SERVICES */

.service-list {
  display: grid;
  gap: 22px;
}

.service-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: 28px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at top right, rgba(162, 89, 255, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0%, rgba(162, 89, 255, 0.05) 45%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(162, 89, 255, 0.34);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(162, 89, 255, 0.2),
    0 0 36px rgba(162, 89, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(162, 89, 255, 0.24), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.service-card:hover::before {
  opacity: 1;
}

.service-card--reverse {
  grid-template-columns: minmax(280px, 420px) minmax(0, 1.1fr);
}

.service-card--reverse .service-copy {
  order: 2;
}

.service-card--reverse .service-visual {
  order: 1;
}

.service-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(110, 35, 186, 0.18);
  border: 1px solid rgba(162, 89, 255, 0.28);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.service-card:hover .service-label {
  background: rgba(110, 35, 186, 0.28);
  border-color: rgba(162, 89, 255, 0.42);
  box-shadow: 0 0 18px rgba(162, 89, 255, 0.14);
}

.service-copy h3 {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.12;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  color: var(--accent-light);
  text-shadow: 0 0 18px rgba(162, 89, 255, 0.12);
  transition:
    color var(--transition),
    text-shadow var(--transition);
}

.service-card:hover .service-copy h3 {
  color: #bb86ff;
  text-shadow:
    0 0 14px rgba(162, 89, 255, 0.3),
    0 0 28px rgba(162, 89, 255, 0.14);
}

.service-copy p {
  max-width: 680px;
}

.service-points,
.service-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-points {
  margin-top: 22px;
}

.service-stack {
  margin-top: 18px;
}

.service-points span,
.service-stack span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  font-size: 15px;
  line-height: 1;
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    background var(--transition);
}

.service-card:hover .service-points span,
.service-card:hover .service-stack span {
  border-color: rgba(162, 89, 255, 0.24);
  background: rgba(162, 89, 255, 0.06);
}

.service-points span:hover,
.service-stack span:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(162, 89, 255, 0.12);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  transition:
    transform var(--transition),
    opacity var(--transition),
    text-shadow var(--transition);
}

.service-link:hover {
  transform: translateX(6px);
  opacity: 0.96;
  text-shadow:
    0 0 10px rgba(162, 89, 255, 0.44),
    0 0 22px rgba(162, 89, 255, 0.22);
}

.service-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    border-color var(--transition),
    box-shadow var(--transition),
    transform var(--transition),
    background var(--transition);
}

.service-card:hover .service-visual {
  border-color: rgba(162, 89, 255, 0.24);
  box-shadow:
    inset 0 0 0 1px rgba(162, 89, 255, 0.12),
    0 0 30px rgba(162, 89, 255, 0.08);
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012));
}

.service-visual img {
  width: min(100%, 320px);
  max-height: 300px;
  object-fit: contain;
  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.service-card:hover .service-visual img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 18px rgba(162, 89, 255, 0.15));
}

/* DELIVERY */

.delivery-panel {
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 0% 0%, rgba(110, 35, 186, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.delivery-grid article {
  padding: 24px;
}

@media (max-width: 1820px) {
  .hero_container {
    padding-left: 195px;
  }

  .hero_container h1 {
    font-size: 46px;
    margin-top: 190px;
  }

  .hero_container p {
    font-size: 23px;
  }
}

@media (max-width: 1740px) {

  .hero_container {
    padding-left: 180px;
  }

  .hero_container h1 {
    font-size: 44px;
    margin-top: 185px;
  }

  .hero_container p {
    font-size: 22px;
  }
}

@media (max-width: 1680px) {

  .hero_container {
    padding-left: 165px;
  }

  .hero_container h1 {
    font-size: 42px;
    margin-top: 180px;
  }

  .hero_container p {
    font-size: 21px;
  }
}

@media (max-width: 1600px) {

  .hero {
    height: 900px;
  }

  .hero_container {
    padding-left: 150px;
  }

  .hero_container h1 {
    font-size: 40px;
    margin-top: 170px;
  }

  .hero_container p {
    font-size: 20px;
  }
}

@media (max-width: 1530px){
  .hero{ height: 880px; }
  .hero_container{ padding-left: 140px; }

  .hero_container h1{ font-size: 39px; margin-top: 165px; }
  .hero_container p{ font-size: 19px; }
}

@media (max-width: 1440px) {
  .hero {
    height: 860px;
  }

  .hero_container {
    padding-left: 125px;
  }

  .hero_container h1 {
    font-size: 38px;
    margin-top: 155px;
  }

  .hero_container p {
    font-size: 18px;
  }
}

/* LARGE DESKTOP */

@media (max-width: 1400px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1360px){

  .hero{ height: 830px; }

  .hero_container{ padding-left: 110px; }

  .hero_container h1{ font-size: 36px; margin-top: 145px; }
  .hero_container p{ font-size: 17px; }

}

@media (max-width: 1280px) {
  .hero {
    height: 800px;
  }

  .hero_container {
    padding-left: 95px;
  }

  .hero_container h1 {
    font-size: 34px;
    margin-top: 135px;
  }

  .hero_container p {
    font-size: 16px;
  }
}

/* LAPTOP */

@media (max-width: 1200px) {
  :root {
    --shell: min(1100px, calc(100% - 40px));
  }

  .hero{ height: 770px; }

  .hero_container{ padding-left: 75px; }


  .hero_container h1{ font-size: 33px; margin-top: 125px; }
  .hero_container p{ font-size: 15.5px; }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

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

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

  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr 340px;
  }

  .service-card--reverse .service-copy,
  .service-card--reverse .service-visual {
    order: initial;
  }

  .service-copy h3 {
    font-size: clamp(22px, 2vw, 28px);
  }
}
@media (max-width: 1120px) {
  .hero {
    height: 740px;
  }

  .hero_container {
    padding-left: 55px;
  }

  .hero_container h1 {
    font-size: 32px;
    margin-top: 115px;
  }

  .hero_container p {
    font-size: 15px;
  }
}

@media (max-width: 1040px) {
  .hero {
    height: 720px;
  }

  .hero_container {
    padding-left: 40px;
  }

  .hero_container h1 {
    font-size: 30px;
    margin-top: 105px;
  }

  .hero_container p {
    font-size: 14.5px;
  }
}

@media (max-width: 1024px) {

  .hero {
    height: 680px;
  }

  .hero_container {
    padding-left: 28px;
    padding-right: 28px;
  }


  .hero_container h1 {
    font-size: 30px;
    margin-top: 95px;
  }

  .hero_container p {
    font-size: 14px;
  }

  .hero_container ul li:last-child {
    margin-bottom: 60px;
  }
}
/* TABLET */

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

  .services-overview,
  .process-section,
  .services-section,
  .delivery-section {
    padding-top: 84px;
  }

  .overview-grid,
  .steps-grid,
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card--reverse {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px;
  }

  .service-copy,
  .service-visual {
    order: initial;
  }

  .service-card .service-visual,
  .service-card--reverse .service-visual {
    order: 1;
  }

  .service-card .service-copy,
  .service-card--reverse .service-copy {
    order: 2;
  }

  .service-visual {
    min-height: 220px;
    margin-bottom: 4px;
  }

  .service-visual img {
    width: min(100%, 260px);
    max-height: 220px;
    object-fit: contain;
  }

  .section-heading p,
  .delivery-panel p,
  .service-copy p,
  .overview-card p,
  .step-card p,
  .delivery-grid p {
    font-size: 17px;
  }

  .service-copy h3 {
    font-size: 25px;
    line-height: 1.14;
    color: var(--accent-light);
  }
}

/* MOBILE */

@media (max-width: 768px) {
  :root {
    --shell: calc(100% - 24px);
    --radius-xl: 24px;
    --radius-lg: 20px;
    --radius-md: 16px;
  }

  .hero{
    position: relative;
    height: 100vh;
    min-height: 620px;
  }

  .block{
    display: block !important;
    width: 10px;
    height: 100%;
    background: #6E23BA;
    flex: 0 0 10px;
  }

  .hero_container{
    height: 100%;
    padding-top: 72px;
    padding-left: 28px;
    padding-right: 16px;
  }

  .hero_container ul{
    height: 100%;
  }

  .hero_container h1{
    margin-left: -10px;
    margin-top: 150px;
    font-size: 34px;
    line-height: 1.08;
  }

  .hero_container p{
    margin-left: 20px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.6;
    max-width: 640px;
  }

  .hero_container h2{
    margin-left: 20px;
    font-size: 22px;
    line-height: 1.2;
    white-space: normal;
  }

  .hero_container ul li:last-child{
    margin-top: auto;
    margin-bottom: 90px;
  }

  .services-overview,
  .process-section,
  .services-section,
  .delivery-section {
    padding-top: 72px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-kicker {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .section-heading h2,
  .delivery-panel h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .section-heading p,
  .delivery-panel p,
  .service-copy p,
  .overview-card p,
  .step-card p,
  .delivery-grid p {
    font-size: 16px;
    line-height: 1.65;
  }

  .overview-card,
  .step-card,
  .delivery-grid article {
    padding: 22px;
  }

  .step-icon {
    width: 60px;
    height: 60px;
  }

  .service-card,
  .service-card--reverse {
    padding: 22px;
    border-radius: 22px;
    gap: 18px;
  }

  .service-card .service-visual,
  .service-card--reverse .service-visual {
    order: 1;
  }

  .service-card .service-copy,
  .service-card--reverse .service-copy {
    order: 2;
  }

  .service-copy h3 {
    font-size: 23px;
    line-height: 1.16;
    margin-bottom: 12px;
    color: var(--accent-light);
  }

  .service-label {
    font-size: 12px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .service-points,
  .service-stack {
    gap: 10px;
  }

  .service-points span,
  .service-stack span {
    font-size: 14px;
    padding: 9px 12px;
  }

  .service-visual {
    min-height: 200px;
    padding: 18px;
    border-radius: 22px;
  }

  .service-visual img {
    width: min(100%, 240px);
    max-height: 200px;
  }

  .delivery-panel {
    padding: 24px;
  }

  .delivery-grid {
    margin-top: 20px;
    gap: 14px;
  }
}

/* SMALL MOBILE */

@media (max-width: 560px) {
  .hero{
    position: relative;
    height: 100vh;
    min-height: 560px;
  }

  .block{
    display: block !important;
    width: 6px;
    height: 100%;
    background: #6E23BA;
    flex: 0 0 6px;
  }

  .hero_container{
    height: 100%;
    padding-top: 64px;
    padding-left: 16px;
    padding-right: 12px;
  }

  .hero_container ul{
    height: 100%;
  }

  .hero_container h1{
    margin-left: -5px;
    margin-top: 60px;
    font-size: 28px;
    line-height: 1.08;
  }

  .hero_container p{
    margin-left: 12px;
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
    max-width: 100%;
  }

  .hero_container h2{
    position: relative;
    top: -80px;
    margin-left: 12px;
    font-size: 20px;
    line-height: 1.2;
  }


  .hero_container ul li:last-child{
    margin-top: auto;
    margin-bottom: 72px;
  }

  .overview-grid,
  .steps-grid,
  .service-list,
  .delivery-grid {
    gap: 14px;
  }

  .overview-card h3,
  .step-card h3,
  .delivery-grid h3 {
    font-size: 24px;
  }

  .service-copy h3 {
    font-size: 21px;
  }

  .service-link {
    font-size: 15px;
  }
}

/* EXTRA SMALL */

@media (max-width: 380px) {
  .hero{
    min-height: 520px;
    background-position: center center;
    background-size: cover;
  }

  .hero_container{
    padding-top: 58px;
    padding-left: 12px;
    padding-right: 10px;
  }

  .hero_container h1{
    margin-left: 0;
    margin-top: 128px;
    font-size: 24px;
  }

  .hero_container p{
    margin-left: 10px;
    font-size: 13px;
    line-height: 1.65;
  }

  .hero_container h2{
    margin-left: 10px;
    font-size: 17px;
  }

  .hero_container ul li:last-child{
    margin-bottom: 58px;
  }

  .service-card,
  .service-card--reverse,
  .overview-card,
  .step-card,
  .delivery-panel,
  .delivery-grid article {
    padding: 18px;
  }

  .service-copy h3 {
    font-size: 20px;
  }

  .service-points span,
  .service-stack span {
    width: 100%;
    text-align: center;
  }
}
