:root {
  --night: #07111f;
  --navy: #0b1b2e;
  --steel: #25334a;
  --panel: #101f32;
  --blue: #10a9e8;
  --blue-strong: #0878ff;
  --white: #f7fbff;
  --mist: #a6b3c5;
  --line: rgba(201, 220, 244, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--night);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  align-items: center;
  background: rgba(37, 51, 74, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 76px;
  left: 0;
  padding: 0 clamp(24px, 6vw, 92px);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0.2em;
}

.brand img,
.footer-brand img {
  border-radius: 50%;
  height: 43px;
  width: 43px;
}

nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  gap: 38px;
}

nav a,
.text-link,
.footer-links a,
.footer-social {
  position: relative;
  transition: color 180ms ease;
}

nav a::after {
  background: var(--blue);
  bottom: -12px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

nav a:hover,
.text-link:hover,
.footer-links a:hover,
.footer-social:hover {
  color: var(--blue);
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  background: var(--blue);
  font-size: 11px;
  font-weight: 900;
  justify-self: end;
  letter-spacing: 0.17em;
  padding: 17px 22px;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--blue-strong);
  transform: translateY(-2px);
}

.header-cta span,
.text-link span,
.footer-social span {
  margin-left: 7px;
}

.hero {
  background:
    linear-gradient(180deg, rgba(9, 35, 57, 0.93), rgba(7, 17, 31, 0.98)),
    var(--navy);
  min-height: 100vh;
  overflow: hidden;
  padding: 150px clamp(24px, 7vw, 108px) 210px;
  position: relative;
}

.hero-glow {
  background: radial-gradient(circle, rgba(16, 169, 232, 0.3), transparent 67%);
  filter: blur(8px);
  height: 850px;
  position: absolute;
  right: -120px;
  top: -80px;
  width: 850px;
}

.hero-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 70px 70px;
  inset: 0;
  mask-image: linear-gradient(to bottom, black, transparent 83%);
  position: absolute;
}

.hero-copy {
  position: relative;
  width: min(760px, 60%);
  z-index: 3;
}

.eyebrow {
  align-items: center;
  color: #86a0bb;
  display: flex;
  font-size: 11px;
  font-weight: 900;
  gap: 12px;
  letter-spacing: 0.22em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.eyebrow span {
  background: var(--blue);
  height: 2px;
  width: 30px;
}

.hero h1 {
  font-size: clamp(62px, 7.2vw, 108px);
  letter-spacing: -0.068em;
  line-height: 0.93;
  margin: 0;
  max-width: 980px;
}

.hero h1 em,
.about h2 em,
.closing h2 em {
  color: var(--blue);
  font-style: normal;
}

.hero-text {
  color: #bac7d8;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.7;
  margin: 34px 0 38px;
  max-width: 620px;
}

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

.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 28px;
  justify-content: center;
  letter-spacing: 0.17em;
  padding: 19px 24px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-strong);
}

.text-link {
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  height: min(650px, 62vw);
  position: absolute;
  right: clamp(10px, 3vw, 50px);
  top: 100px;
  width: min(650px, 53vw);
}

.stage-ring {
  border: 1px solid rgba(112, 205, 245, 0.18);
  border-radius: 50%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ring-one {
  height: 100%;
  width: 100%;
}

.ring-two {
  height: 73%;
  width: 73%;
}

.ring-three {
  border-color: rgba(112, 205, 245, 0.35);
  height: 45%;
  width: 45%;
}

.stage-ring::before {
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(16, 169, 232, 0.9);
  content: "";
  height: 7px;
  left: 12%;
  position: absolute;
  top: 22%;
  width: 7px;
}

.stage-logo {
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 45px 100px rgba(0, 0, 0, 0.45),
    0 0 65px rgba(0, 126, 255, 0.28);
  left: 50%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-6deg);
  width: 43%;
}

.stage-logo::after {
  border: 1px solid rgba(255, 255, 255, 0.48);
  content: "";
  inset: 9px;
  pointer-events: none;
  position: absolute;
}

.stage-label {
  backdrop-filter: blur(12px);
  background: rgba(18, 35, 55, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  gap: 7px;
  padding: 16px 20px;
  position: absolute;
  z-index: 2;
}

.stage-label small {
  color: #8196ad;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.stage-label strong {
  font-size: 13px;
  letter-spacing: 0.13em;
}

.label-top {
  right: 7%;
  top: 18%;
}

.label-bottom {
  bottom: 16%;
  left: 4%;
}

.hero-features {
  background: rgba(30, 47, 69, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 0;
  padding: 0 clamp(24px, 7vw, 108px);
  position: absolute;
  right: 0;
  z-index: 4;
}

.hero-features article {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 150px;
  padding: 28px 32px;
  position: relative;
}

.hero-features article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-features article > span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.hero-features h2 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin: 20px 0 8px;
}

.hero-features p {
  color: #91a2b7;
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.section-shell {
  padding: 125px clamp(24px, 7vw, 108px);
}

.about {
  background: #0a1626;
}

.about-kicker {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.about-index {
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(54px, 7vw, 100px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.about-content {
  align-items: start;
  display: grid;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: 1.25fr 0.75fr;
  margin: 45px 0 70px;
}

.about h2,
.section-heading h2,
.closing h2 {
  font-size: clamp(42px, 5vw, 75px);
  letter-spacing: -0.055em;
  line-height: 1.03;
  margin: 0;
}

.about-copy {
  padding-top: 8px;
}

.about-copy p,
.section-heading > p,
.closing-text {
  color: var(--mist);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.about-copy a {
  border-bottom: 1px solid var(--blue);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 18px;
  letter-spacing: 0.12em;
  margin-top: 10px;
  padding-bottom: 9px;
  text-transform: uppercase;
}

.about-visual {
  background:
    linear-gradient(115deg, rgba(16, 169, 232, 0.14), transparent 55%),
    #101f32;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.about-logo {
  align-items: center;
  border-right: 1px solid var(--line);
  display: flex;
  justify-content: center;
  padding: 60px;
}

.about-logo img {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: rotate(-4deg);
  width: min(290px, 100%);
}

.about-quote {
  align-self: center;
  padding: 55px 8vw 55px 7vw;
  position: relative;
}

.about-quote span {
  color: var(--blue);
  font-size: 78px;
  line-height: 0.5;
}

.about-quote p {
  font-size: clamp(23px, 2.3vw, 35px);
  letter-spacing: -0.03em;
  line-height: 1.35;
  margin: 24px 0 0;
}

.about-code {
  bottom: 22px;
  color: #6f8299;
  font-size: 8px;
  letter-spacing: 0.22em;
  position: absolute;
  right: 30px;
}

.services {
  background: #101d2e;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 70px;
  grid-template-columns: 1fr 370px;
  margin-bottom: 65px;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading > p {
  margin: 0;
}

.service-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: rgba(255, 255, 255, 0.008);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  min-height: 355px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:hover {
  background: #172a41;
  transform: translateY(-5px);
}

.service-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.service-top span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.service-top b {
  border: 1px solid var(--line);
  display: grid;
  font-size: 18px;
  font-weight: 400;
  height: 45px;
  place-items: center;
  transition: background 180ms ease, border 180ms ease;
  width: 45px;
}

.service-card:hover .service-top b {
  background: var(--blue);
  border-color: var(--blue);
}

.service-card h3 {
  font-size: clamp(24px, 2.1vw, 32px);
  letter-spacing: -0.035em;
  margin: 145px 0 16px;
}

.service-card p {
  color: #91a2b7;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 370px;
}

.service-line {
  background: var(--blue);
  bottom: 0;
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  width: 100%;
}

.service-card:hover .service-line {
  transform: scaleX(1);
}

.ticker {
  background: var(--blue);
  overflow: hidden;
  padding: 23px 0;
}

.ticker > div {
  align-items: center;
  display: flex;
  gap: 35px;
  justify-content: center;
  white-space: nowrap;
}

.ticker span {
  font-size: clamp(16px, 1.7vw, 25px);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ticker b {
  color: rgba(255, 255, 255, 0.5);
  font-size: 30px;
  font-weight: 300;
}

.packages {
  background:
    radial-gradient(circle at 86% 12%, rgba(16, 169, 232, 0.13), transparent 28%),
    #0d1929;
}

.package-grid {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  background: rgba(255, 255, 255, 0.012);
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.package-card::before {
  background: linear-gradient(90deg, var(--blue), transparent);
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.package-card:hover::before {
  transform: scaleX(1);
}

.package-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.package-head > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.package-head small {
  color: #8193a9;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.package-card h3 {
  font-size: clamp(27px, 2.3vw, 36px);
  letter-spacing: -0.04em;
  margin: 65px 0 18px;
}

.package-description {
  color: #93a4b8;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  min-height: 82px;
}

.package-card ul {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 15px;
  list-style: none;
  margin: 26px 0 35px;
  padding: 26px 0 0;
}

.package-card li {
  color: #bac7d7;
  font-size: 13px;
  line-height: 1.5;
  padding-left: 21px;
  position: relative;
}

.package-card li::before {
  color: var(--blue);
  content: "—";
  left: 0;
  position: absolute;
}

.package-card > a {
  border-top: 1px solid var(--line);
  display: flex;
  font-size: 10px;
  font-weight: 900;
  justify-content: space-between;
  letter-spacing: 0.12em;
  margin-top: auto;
  padding-top: 24px;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.package-card:last-child {
  background:
    linear-gradient(145deg, rgba(16, 169, 232, 0.16), transparent 58%),
    #14283e;
  grid-column: span 2;
}

.package-note {
  color: #75889f;
  font-size: 11px;
  letter-spacing: 0.05em;
  margin: 24px 0 0;
  text-align: right;
}

.process {
  background:
    radial-gradient(circle at 12% 45%, rgba(16, 169, 232, 0.12), transparent 25%),
    #091524;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.process-grid::before {
  background: var(--line);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 59px;
}

.process-grid li {
  border-left: 1px solid var(--line);
  min-height: 270px;
  padding: 0 35px 25px;
  position: relative;
}

.process-grid li:last-child {
  border-right: 1px solid var(--line);
}

.process-grid li > span {
  color: #8295ab;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.process-dot {
  background: var(--night);
  border: 2px solid var(--blue);
  border-radius: 50%;
  height: 13px;
  margin: 40px 0 48px;
  position: relative;
  width: 13px;
  z-index: 2;
}

.process-grid h3 {
  font-size: 25px;
  margin: 0 0 13px;
}

.process-grid p {
  color: #91a2b7;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.closing {
  background:
    linear-gradient(rgba(11, 28, 47, 0.45), rgba(5, 13, 24, 0.9)),
    var(--panel);
  min-height: 650px;
  overflow: hidden;
  padding: 130px 24px;
  position: relative;
  text-align: center;
}

.closing-orbit {
  border: 1px solid rgba(16, 169, 232, 0.22);
  border-radius: 50%;
  height: 760px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 760px;
}

.closing-orbit::before,
.closing-orbit::after {
  border: 1px solid rgba(16, 169, 232, 0.13);
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.closing-orbit::before {
  height: 540px;
  width: 540px;
}

.closing-orbit::after {
  background: radial-gradient(circle, rgba(16, 169, 232, 0.15), transparent 65%);
  height: 350px;
  width: 350px;
}

.closing > *:not(.closing-orbit) {
  position: relative;
  z-index: 1;
}

.closing .eyebrow {
  justify-content: center;
}

.closing h2 {
  margin: 0 auto;
}

.closing-text {
  margin: 32px auto 35px;
  max-width: 570px;
}

.button-light {
  background: var(--white);
  color: #07111f;
}

.button-light:hover {
  background: var(--blue);
  color: var(--white);
}

.site-footer {
  background:
    radial-gradient(circle at 88% 32%, rgba(0, 194, 255, 0.2), transparent 28%),
    radial-gradient(circle at 54% 105%, rgba(0, 102, 255, 0.2), transparent 34%),
    linear-gradient(135deg, #07111e 0%, #0a1b2d 48%, #073958 100%);
  border-top: 1px solid rgba(123, 213, 255, 0.18);
  overflow: hidden;
  padding: 0 clamp(24px, 7vw, 108px);
  position: relative;
}

.site-footer::before {
  border: 1px solid rgba(0, 179, 255, 0.09);
  border-radius: 50%;
  content: "";
  height: 420px;
  pointer-events: none;
  position: absolute;
  right: -130px;
  top: -190px;
  width: 420px;
}

.footer-main {
  display: grid;
  gap: clamp(48px, 7vw, 110px);
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr) minmax(150px, 0.45fr);
  padding: 74px 0 58px;
  position: relative;
  z-index: 1;
}

.footer-contact {
  max-width: 560px;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 38px;
}

.footer-brand div {
  display: grid;
  gap: 5px;
}

.footer-brand b {
  letter-spacing: 0.1em;
}

.footer-brand span {
  color: #8295aa;
  font-size: 12px;
}

.footer-contact h2 {
  font-size: clamp(36px, 4.6vw, 68px);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 520px;
}

.footer-contact > p {
  color: #9eb0c3;
  line-height: 1.7;
  margin: 0;
  max-width: 510px;
}

.footer-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.footer-contact-links a {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  display: grid;
  font-size: 15px;
  gap: 5px;
  min-width: 210px;
  padding: 15px 18px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.footer-contact-links a:hover {
  background: rgba(0, 153, 255, 0.14);
  border-color: rgba(65, 186, 255, 0.48);
  transform: translateY(-2px);
}

.footer-contact-links span {
  color: #69caff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-column {
  align-content: start;
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.footer-column h3 {
  font-size: 15px;
  margin: 0 0 12px;
  padding-bottom: 13px;
  position: relative;
}

.footer-column h3::after {
  background: var(--blue);
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 38px;
}

.footer-column a {
  color: #aebccd;
  font-size: 13px;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  font-size: 12px;
  justify-content: flex-start;
  padding: 26px 0 30px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  color: #7f91a4;
  margin: 0;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 450px;
  }

  .hero-copy {
    width: 78%;
  }

  .hero-stage {
    bottom: 115px;
    height: 440px;
    right: 0;
    top: auto;
    width: 440px;
  }

  .about-content {
    gap: 60px;
  }

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

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

  .package-card {
    min-height: 500px;
  }

  .package-card:last-child {
    grid-column: auto;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 55px;
  }

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

@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding: 0 20px;
  }

  .brand {
    font-size: 11px;
  }

  .brand img {
    height: 35px;
    width: 35px;
  }

  .header-cta {
    font-size: 0;
    padding: 13px 15px;
  }

  .header-cta::before {
    content: "İLETİŞİM";
    font-size: 9px;
  }

  .header-cta span {
    font-size: 11px;
  }

  .hero {
    padding: 120px 20px 510px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

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

  .hero-stage {
    bottom: 165px;
    height: 350px;
    right: -48px;
    width: 350px;
  }

  .stage-logo {
    width: 50%;
  }

  .label-top {
    right: 5%;
  }

  .label-bottom {
    left: 0;
  }

  .hero-features {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .hero-features article {
    display: none;
  }

  .hero-features article:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    min-height: 140px;
  }

  .section-shell {
    padding: 90px 20px;
  }

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

  .about-index {
    display: none;
  }

  .about-visual {
    grid-template-columns: 1fr;
  }

  .about-logo {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    padding: 45px;
  }

  .about-logo img {
    width: 190px;
  }

  .about-quote {
    padding: 50px 30px 70px;
  }

  .service-grid,
  .process-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 325px;
    padding: 25px;
  }

  .service-card h3 {
    margin-top: 120px;
  }

  .package-card {
    min-height: 480px;
    padding: 28px 24px;
  }

  .package-card h3 {
    margin-top: 48px;
  }

  .package-description {
    min-height: auto;
  }

  .package-note {
    line-height: 1.6;
    text-align: left;
  }

  .ticker > div {
    gap: 18px;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .process-grid {
    row-gap: 0;
  }

  .process-grid li,
  .process-grid li:last-child {
    border-bottom: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
    min-height: auto;
    padding: 28px 0 38px;
  }

  .process-dot {
    margin: 24px 0;
  }

  .closing {
    min-height: 590px;
    padding: 100px 20px;
  }

  .closing-orbit {
    height: 590px;
    width: 590px;
  }

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

  .footer-main {
    gap: 44px;
    grid-template-columns: 1fr;
    padding: 56px 0 42px;
  }

  .footer-brand {
    margin-bottom: 32px;
  }

  .footer-contact-links {
    display: grid;
  }

  .footer-contact-links a {
    min-width: 0;
    width: 100%;
  }

  .footer-column {
    gap: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
