:root {
  --bg: #050708;
  --bg-soft: #0d1114;
  --surface: #ffffff;
  --surface-soft: #f4f7f8;
  --surface-line: #d8e1e6;
  --text: #11181d;
  --muted: #55636d;
  --inverse: #f7fbff;
  --brand-blue: #1288df;
  --brand-blue-dark: #074b89;
  --brand-green: #18bf52;
  --brand-green-dark: #0c7432;
  --warning: #f2c94c;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(5, 7, 8, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--surface);
}

/* Home redesign */
.home-redesign {
  background: #06080a;
}

.brand-intro {
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 48%, rgba(24, 191, 82, 0.16), transparent 38%),
    linear-gradient(135deg, rgba(18, 136, 223, 0.16), transparent 38%, rgba(24, 191, 82, 0.16)),
    #020303;
  overflow: hidden;
  animation: intro-shell 6.4s ease forwards;
}

.brand-intro__inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
}

.brand-intro__visuals {
  position: absolute;
  inset: -5vh max(18px, 7vw);
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: clamp(10px, 1.5vw, 22px);
  opacity: 0;
  transform: translateY(22px) scale(1.04);
  filter: saturate(0.92) contrast(1.08);
  animation: intro-visuals 6.4s ease forwards;
}

.brand-intro__visuals::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.82), rgba(2, 3, 3, 0.18) 26%, rgba(2, 3, 3, 0.18) 74%, rgba(2, 3, 3, 0.82)),
    linear-gradient(180deg, rgba(2, 3, 3, 0.32), rgba(2, 3, 3, 0.66));
}

.brand-intro__visuals picture {
  min-width: 0;
  height: 110vh;
  overflow: hidden;
  border-radius: 8px;
  transform: translateY(var(--intro-card-shift, 0));
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.44);
}

.brand-intro__visuals picture:nth-child(2),
.brand-intro__visuals picture:nth-child(4) {
  --intro-card-shift: 7vh;
}

.brand-intro__visuals img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.brand-intro p {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  margin: 0;
  color: #fff;
  padding: 0 22px;
  font-size: clamp(42px, 7vw, 104px);
  line-height: 0.96;
  font-weight: 950;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.72);
  animation: intro-text 6.4s ease forwards;
}

.brand-intro__logo {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.72);
  animation: intro-logo 6.4s ease forwards;
}

.brand-intro__logo img {
  width: min(680px, calc(100vw - 44px));
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 32px 58px rgba(0, 0, 0, 0.62));
}

.home-redesign .topbar {
  background:
    linear-gradient(90deg, rgba(18, 136, 223, 0.12), transparent 42%, rgba(24, 191, 82, 0.1)),
    #020303;
  border-bottom: 1px solid rgba(247, 251, 255, 0.1);
}

.home-redesign .topbar__inner {
  min-height: 56px;
  gap: 12px;
}

.home-redesign .topbar__group {
  gap: 8px;
}

.home-redesign .topbar__group--info {
  flex: 1 1 auto;
}

.home-redesign .topbar__group--actions {
  flex: 0 0 auto;
  justify-content: flex-end;
}

.topbar__item,
.topbar__phone,
.topbar__instagram {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(247, 251, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 251, 255, 0.9);
}

.topbar__item {
  gap: 9px;
}

.topbar__label {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(24, 191, 82, 0.16);
  color: #9de8b5;
  font-size: 11px;
  font-weight: 950;
}

.topbar__phone {
  color: #fff;
  font-weight: 950;
}

.topbar__instagram {
  gap: 8px;
  color: #fff;
}

.topbar__instagram svg {
  width: 18px;
  height: 18px;
  color: #9de8b5;
}

.home-redesign .site-header {
  background: rgba(5, 7, 8, 0.9);
  border-bottom: 1px solid rgba(247, 251, 255, 0.1);
  backdrop-filter: blur(18px);
}

.home-redesign .brand__name {
  color: var(--inverse);
}

.home-redesign .brand__tag {
  color: rgba(247, 251, 255, 0.62);
}

.home-redesign .nav a {
  color: rgba(247, 251, 255, 0.78);
}

.home-redesign .nav a:hover,
.home-redesign .nav a:focus,
.home-redesign .nav a[aria-current="page"] {
  background: rgba(18, 136, 223, 0.18);
  color: #fff;
}

.studio-hero {
  position: relative;
  overflow: hidden;
  color: var(--inverse);
  background:
    linear-gradient(115deg, rgba(5, 7, 8, 0.98), rgba(5, 14, 19, 0.94) 48%, rgba(2, 30, 18, 0.9)),
    #050708;
}

.studio-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    repeating-linear-gradient(118deg, transparent 0 44px, rgba(18, 136, 223, 0.08) 45px, transparent 47px);
  background-size: 92px 92px, 92px 92px, auto;
  mask-image: linear-gradient(90deg, #000 0%, #000 74%, transparent 100%);
  opacity: 0.7;
}

.studio-hero::after {
  content: "KUZEYLI / SERVICE";
  position: absolute;
  right: -30px;
  bottom: 18px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 110px;
  line-height: 0.8;
  font-weight: 950;
  white-space: nowrap;
}

.studio-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  grid-template-areas:
    "copy stage"
    "proof stage";
  gap: 34px 52px;
  min-height: 720px;
  align-items: center;
  padding: 72px 0 64px;
}

.studio-hero__copy {
  grid-area: copy;
}

.studio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #9de8b5;
  font-weight: 950;
  font-size: 13px;
}

.studio-label::before {
  content: "";
  width: 44px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
}

.studio-hero h1 {
  max-width: 820px;
  margin-bottom: 22px;
  color: #fff;
  font-size: 68px;
  line-height: 0.96;
  font-weight: 950;
}

.studio-lead {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.72);
  font-size: 19px;
}

.studio-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.garage-stage {
  grid-area: stage;
  position: relative;
  min-height: 540px;
  padding: 26px;
  border: 1px solid rgba(247, 251, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(6, 12, 15, 0.72);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.garage-stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 8px;
}

.garage-stage::after {
  content: "";
  position: absolute;
  inset: auto -14% 46px -14%;
  height: 120px;
  background: linear-gradient(90deg, transparent, rgba(18, 136, 223, 0.3), rgba(24, 191, 82, 0.28), transparent);
  transform: skewY(-5deg);
  filter: blur(10px);
}

.garage-stage__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 16px;
}

.garage-stage__top img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  border-radius: 6px;
  background: #000;
}

.garage-stage__top span,
.garage-stage__ticket span {
  display: block;
  color: rgba(247, 251, 255, 0.58);
  font-size: 13px;
  font-weight: 850;
}

.garage-stage__top strong,
.garage-stage__ticket strong {
  display: block;
  color: #fff;
  font-size: 20px;
  line-height: 1.12;
}

.vehicle-scan {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 108px;
  height: 250px;
  border: 1px solid rgba(247, 251, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(18, 136, 223, 0.1), rgba(24, 191, 82, 0.06)),
    rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.vehicle-scan::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 54px;
  height: 76px;
  border: 4px solid rgba(255, 255, 255, 0.58);
  border-top-width: 18px;
  border-radius: 120px 120px 30px 30px;
  opacity: 0.28;
}

.vehicle-scan__hood {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 124px;
  height: 96px;
  border: 3px solid rgba(157, 232, 181, 0.32);
  border-bottom: 0;
  border-radius: 100px 100px 0 0;
  transform: perspective(300px) rotateX(28deg);
}

.vehicle-scan__line {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0 42%, rgba(24, 191, 82, 0.5) 43%, transparent 46%);
  animation: scan-vertical 4.5s ease-in-out infinite;
}

.vehicle-scan__lamp {
  position: absolute;
  bottom: 70px;
  width: 90px;
  height: 12px;
  border-radius: 20px;
  background: #9de8b5;
  box-shadow: 0 0 38px rgba(24, 191, 82, 0.6);
}

.vehicle-scan__lamp--left {
  left: 16%;
}

.vehicle-scan__lamp--right {
  right: 16%;
}

.garage-stage__ticket {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  width: min(290px, calc(100% - 52px));
  padding: 18px;
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 8, 0.76);
  backdrop-filter: blur(16px);
}

.studio-proof {
  grid-area: proof;
  display: grid;
  gap: 12px;
  max-width: 760px;
}

.oil-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.oil-logo-strip img {
  display: block;
  width: 100%;
  height: 58px;
  padding: 11px 12px;
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  object-fit: contain;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.studio-proof p {
  color: rgba(247, 251, 255, 0.62);
}

.atelier-section {
  padding: 96px 0;
  background: #fff;
}

.service-lab {
  background:
    linear-gradient(180deg, #f3f7f8, #fff);
}

.service-lab__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 0.84fr);
  gap: 42px;
  align-items: start;
}

.section-intro {
  position: sticky;
  top: 112px;
}

.section-intro h2,
.bay-copy h2,
.campaign-panel h2,
.location-slab h2 {
  margin-bottom: 18px;
  color: var(--text);
  font-size: 44px;
  line-height: 1.02;
  font-weight: 950;
}

.service-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.matrix-card {
  min-height: 344px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  padding: 0;
  border: 1px solid rgba(17, 24, 29, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 7, 8, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.matrix-card:hover,
.matrix-card:focus {
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(5, 7, 8, 0.16);
}

.matrix-card--large {
  grid-row: span 2;
  min-height: 704px;
  color: #fff;
}

.matrix-card__media {
  height: 156px;
  display: block;
  overflow: hidden;
  background: #12191d;
}

.matrix-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--service-image-position, 50% 50%);
  transform: scale(1.02);
  transition: transform 220ms ease, filter 220ms ease;
}

.matrix-card:hover .matrix-card__media img,
.matrix-card:focus .matrix-card__media img {
  transform: scale(1.07);
  filter: saturate(1.08) contrast(1.04);
}

.matrix-card__media--oil {
  --service-image-position: 10% 50%;
}

.matrix-card__media--periodic {
  --service-image-position: 31% 50%;
}

.matrix-card__media--gearbox {
  --service-image-position: 52% 50%;
}

.matrix-card__media--brake {
  --service-image-position: 72% 50%;
}

.matrix-card__media--suspension {
  --service-image-position: 92% 50%;
}

.matrix-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background:
    linear-gradient(160deg, rgba(18, 136, 223, 0.1), transparent 46%),
    #fff;
}

.matrix-card--large .matrix-card__media {
  position: absolute;
  inset: 0;
  height: auto;
}

.matrix-card--large .matrix-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 7, 8, 0.06), rgba(5, 7, 8, 0.38) 42%, rgba(5, 7, 8, 0.92)),
    linear-gradient(135deg, rgba(18, 136, 223, 0.28), rgba(24, 191, 82, 0.18));
}

.matrix-card--large .matrix-card__body {
  position: relative;
  min-height: inherit;
  padding: 28px;
  background: transparent;
}

.matrix-card span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 6px;
  background: rgba(24, 191, 82, 0.12);
  color: var(--brand-green-dark);
  font-weight: 950;
}

.matrix-card--large span {
  background: rgba(255, 255, 255, 0.1);
  color: #9de8b5;
}

.matrix-card h3 {
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1.05;
}

.matrix-card p {
  margin-bottom: 12px;
}

.matrix-card--large p {
  color: rgba(247, 251, 255, 0.72);
}

.matrix-card small {
  display: block;
  color: rgba(78, 93, 105, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.matrix-card--large small {
  color: rgba(247, 251, 255, 0.62);
}

.dark-bay {
  color: var(--inverse);
  background:
    linear-gradient(135deg, rgba(18, 136, 223, 0.18), transparent 40%, rgba(24, 191, 82, 0.16)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px),
    #050708;
}

.dark-bay__grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.44fr) minmax(0, 0.86fr);
  gap: 42px;
  align-items: start;
}

.dark-bay .section-kicker,
.dark-bay p {
  color: rgba(247, 251, 255, 0.68);
}

.dark-bay h2 {
  color: #fff;
}

.bay-steps {
  display: grid;
  gap: 12px;
}

.bay-steps article {
  display: grid;
  grid-template-columns: 58px 0.7fr 1fr;
  gap: 22px;
  align-items: center;
  min-height: 118px;
  padding: 22px;
  border: 1px solid rgba(247, 251, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
}

.bay-steps span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #06110a;
  background: var(--brand-green);
  font-weight: 950;
}

.bay-steps h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 25px;
}

.bay-steps p {
  margin-bottom: 0;
}

.campaign-deck {
  background: #f4f7f8;
}

.campaign-deck__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.5fr);
  gap: 22px;
}

.campaign-panel {
  min-height: 390px;
  padding: 42px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 7, 8, 0.78), rgba(5, 7, 8, 0.95)),
    linear-gradient(120deg, rgba(18, 136, 223, 0.9), rgba(24, 191, 82, 0.84));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.campaign-panel h2 {
  max-width: 760px;
  color: #fff;
}

.campaign-panel p {
  max-width: 620px;
  color: rgba(247, 251, 255, 0.74);
}

.campaign-list {
  display: grid;
  gap: 12px;
}

.campaign-list a {
  min-height: 122px;
  display: grid;
  align-content: center;
  padding: 22px;
  border: 1px solid rgba(17, 24, 29, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(5, 7, 8, 0.08);
}

.campaign-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: 22px;
}

.campaign-list span {
  color: var(--muted);
}

.location-slab {
  background: #fff;
}

.location-slab__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.42fr);
  gap: 32px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(17, 24, 29, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 136, 223, 0.08), rgba(24, 191, 82, 0.08)),
    #fff;
  box-shadow: 0 20px 70px rgba(5, 7, 8, 0.08);
}

.location-actions {
  display: grid;
  gap: 12px;
}

@keyframes scan-vertical {
  0%,
  100% {
    transform: translateY(-40%);
    opacity: 0.22;
  }

  50% {
    transform: translateY(40%);
    opacity: 0.8;
  }
}

@keyframes intro-visuals {
  0% {
    opacity: 0;
    transform: translateY(26px) scale(1.06);
  }

  10%,
  44% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  58%,
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.03);
  }
}

@keyframes intro-text {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  13%,
  42% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  54%,
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.02);
  }
}

@keyframes intro-logo {
  0%,
  50% {
    opacity: 0;
    transform: scale(0.72);
  }

  64%,
  92% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes intro-shell {
  0%,
  92% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@media (max-width: 960px) {
  .home-redesign .nav {
    background: #070b0d;
    border-color: rgba(247, 251, 255, 0.12);
  }

  .home-redesign .topbar__inner {
    align-items: stretch;
  }

  .home-redesign .topbar__group--actions {
    justify-content: flex-start;
  }

  .studio-hero__grid,
  .service-lab__grid,
  .dark-bay__grid,
  .campaign-deck__grid,
  .location-slab__inner {
    grid-template-columns: 1fr;
  }

  .studio-hero__grid {
    grid-template-areas:
      "copy"
      "stage"
      "proof";
    min-height: auto;
  }

  .studio-hero h1 {
    font-size: 52px;
  }

  .section-intro {
    position: static;
  }

  .bay-steps article {
    grid-template-columns: 54px 1fr;
  }

  .bay-steps p {
    grid-column: 2;
  }
}

@media (max-width: 640px) {
  .studio-hero__grid {
    padding: 48px 0;
  }

  .brand-intro p {
    max-width: min(340px, calc(100vw - 32px));
    font-size: 43px;
    justify-self: center;
  }

  .brand-intro__visuals {
    inset: -4vh 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .brand-intro__visuals picture:nth-child(4),
  .brand-intro__visuals picture:nth-child(5) {
    display: none;
  }

  .brand-intro__logo img {
    width: min(330px, calc(100vw - 30px));
  }

  .topbar__item,
  .topbar__phone,
  .topbar__instagram {
    width: 100%;
    justify-content: center;
  }

  .topbar__item {
    justify-content: flex-start;
  }

  .studio-hero h1 {
    font-size: 37px;
    line-height: 1.02;
  }

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

  .oil-logo-strip img {
    height: 54px;
  }

  .studio-lead {
    font-size: 17px;
  }

  .garage-stage {
    min-height: 460px;
    padding: 18px;
  }

  .garage-stage__top {
    align-items: flex-start;
  }

  .garage-stage__top img {
    width: 92px;
    height: 92px;
  }

  .vehicle-scan {
    left: 18px;
    right: 18px;
    bottom: 114px;
  }

  .service-matrix {
    grid-template-columns: 1fr;
  }

  .matrix-card--large {
    min-height: 430px;
  }

  .section-intro h2,
  .bay-copy h2,
  .campaign-panel h2,
  .location-slab h2 {
    font-size: 32px;
  }

  .atelier-section {
    padding: 64px 0;
  }

  .campaign-panel,
  .location-slab__inner {
    padding: 26px;
  }

  .bay-steps article {
    grid-template-columns: 1fr;
  }

  .bay-steps p {
    grid-column: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
}

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

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

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

p {
  color: var(--muted);
}

.page {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--brand-green);
  color: #06110a;
  border-radius: var(--radius);
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.topbar {
  background: #030405;
  color: rgba(247, 251, 255, 0.88);
  font-size: 14px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

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

.topbar a {
  color: rgba(247, 251, 255, 0.95);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 225, 230, 0.9);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

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

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  background: #000;
  border-radius: 6px;
}

.brand__name {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

.brand__tag {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 1px;
}

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

.nav a {
  padding: 10px 11px;
  border-radius: 6px;
  color: #26333a;
  font-weight: 800;
  font-size: 14px;
}

.nav a:hover,
.nav a:focus,
.nav a[aria-current="page"] {
  background: #eaf6ff;
  color: #043c70;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--surface-line);
  background: #fff;
  border-radius: 6px;
  color: var(--text);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 18px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 900;
  color: #06110a;
  background: var(--brand-green);
  box-shadow: 0 10px 30px rgba(24, 191, 82, 0.24);
  cursor: pointer;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus {
  background: #33d86b;
}

.button--dark {
  background: #11181d;
  color: var(--inverse);
  box-shadow: none;
}

.button--dark:hover,
.button--dark:focus {
  background: #26333a;
}

.button--line {
  background: transparent;
  color: var(--inverse);
  border: 1px solid rgba(247, 251, 255, 0.35);
  box-shadow: none;
}

.button--line:hover,
.button--line:focus {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--inverse);
  background:
    linear-gradient(120deg, rgba(5, 7, 8, 0.98), rgba(8, 22, 31, 0.92) 56%, rgba(5, 7, 8, 0.98)),
    linear-gradient(135deg, rgba(18, 136, 223, 0.2), transparent 28%, rgba(24, 191, 82, 0.12) 58%, transparent 82%),
    #050708;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.38;
  animation: grid-drift 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% 0 -8%;
  height: 130px;
  background: linear-gradient(90deg, transparent, rgba(18, 136, 223, 0.38), rgba(24, 191, 82, 0.36), transparent);
  transform: skewY(-2deg);
  opacity: 0.5;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: 46px;
  min-height: 640px;
  padding: 64px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: #9de8b5;
  font-weight: 900;
  font-size: 14px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 4px;
}

.hero h1,
.page-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--inverse);
  font-size: 56px;
  line-height: 1.02;
  font-weight: 950;
}

.hero p {
  max-width: 660px;
  color: rgba(247, 251, 255, 0.76);
  font-size: 19px;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.fact {
  min-height: 96px;
  padding: 16px;
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.fact strong {
  display: block;
  color: #fff;
  font-size: 18px;
}

.fact span {
  color: rgba(247, 251, 255, 0.72);
  font-size: 13px;
}

.hero__visual {
  position: relative;
  min-height: 468px;
  border-left: 1px solid rgba(247, 251, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-stage {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(18, 136, 223, 0.13), rgba(24, 191, 82, 0.09)),
    #020303;
  border: 1px solid rgba(247, 251, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
  display: grid;
  place-items: center;
  overflow: hidden;
  transform: translateZ(0);
}

.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  inset: auto 34px 44px;
  height: 7px;
  background: linear-gradient(90deg, transparent, var(--brand-blue), var(--brand-green), transparent);
  opacity: 0.8;
  animation: scan-line 4.8s ease-in-out infinite;
}

.logo-stage::after {
  inset: 44px 58px auto;
  opacity: 0.4;
  animation-delay: 1.3s;
}

.logo-stage img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.36));
}

.hero__status {
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 162px;
  padding: 13px 14px;
  border: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.hero__status strong,
.hero__status span {
  display: block;
}

.hero__status strong {
  color: #fff;
  font-size: 14px;
}

.hero__status span {
  color: rgba(247, 251, 255, 0.7);
  font-size: 12px;
}

.service-ribbon {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(247, 251, 255, 0.14);
  background: rgba(5, 7, 8, 0.76);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.service-ribbon span {
  padding: 13px 10px;
  color: rgba(247, 251, 255, 0.82);
  text-align: center;
  font-size: 13px;
  font-weight: 800;
}

.service-ribbon span + span {
  border-left: 1px solid rgba(247, 251, 255, 0.12);
}

.section {
  padding: 82px 0;
}

.section--soft {
  background: var(--surface-soft);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(18, 136, 223, 0.14), transparent 34%, rgba(24, 191, 82, 0.12)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 20px),
    var(--bg);
  color: var(--inverse);
}

.section--dark > .container {
  position: relative;
  z-index: 1;
}

.section--dark p,
.section--dark .section-kicker {
  color: rgba(247, 251, 255, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 0.42fr);
  align-items: end;
  gap: 32px;
  margin-bottom: 32px;
}

.section-kicker {
  color: var(--brand-green-dark);
  font-weight: 900;
  margin-bottom: 8px;
}

.section-heading h2,
.content h2 {
  margin-bottom: 0;
  color: var(--text);
  font-size: 36px;
  line-height: 1.1;
  font-weight: 950;
}

.section--dark .section-heading h2,
.section--dark .content h2 {
  color: var(--inverse);
}

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

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

.service-card,
.campaign-card,
.faq-item,
.contact-card,
.step,
.feature {
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card,
.campaign-card,
.contact-card,
.step,
.feature {
  padding: 24px;
}

.service-card,
.campaign-card,
.step,
.feature {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.campaign-card:hover,
.step:hover,
.feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(5, 7, 8, 0.14);
  border-color: rgba(18, 136, 223, 0.28);
}

.service-card h3,
.campaign-card h3,
.contact-card h3,
.step h3,
.feature h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p,
.campaign-card p,
.contact-card p,
.step p,
.feature p {
  margin-bottom: 0;
}

.feature {
  color: var(--text);
}

.feature p {
  color: var(--muted);
}

.section--dark .feature {
  color: var(--inverse);
  border-color: rgba(247, 251, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(9, 14, 17, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section--dark .feature p {
  color: rgba(247, 251, 255, 0.72);
}

.section--dark .feature__icon {
  background: rgba(24, 191, 82, 0.14);
  color: #9de8b5;
  border: 1px solid rgba(157, 232, 181, 0.18);
}

.service-card__icon,
.feature__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  background: #e7f7ed;
  color: var(--brand-green-dark);
}

.service-card__icon svg,
.feature__icon svg {
  width: 24px;
  height: 24px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #064f91;
  font-weight: 900;
}

.link-arrow svg {
  width: 16px;
  height: 16px;
}

.strip {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: center;
}

.strip__media {
  min-height: 360px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(18, 136, 223, 0.82), rgba(24, 191, 82, 0.78)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 18px),
    #0b1820;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(5, 7, 8, 0.18);
}

.strip__media::before {
  content: "";
  position: absolute;
  inset: 32px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  z-index: 1;
}

.strip__media::after {
  content: "";
  position: absolute;
  inset: -20% 45% -20% auto;
  width: 90px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: rotate(12deg);
  animation: light-pass 5.6s ease-in-out infinite;
  z-index: 2;
}

.strip__media img {
  position: absolute;
  inset: 34px;
  width: calc(100% - 68px);
  height: calc(100% - 68px);
  object-fit: contain;
  padding: 46px;
  background: #030405;
  mix-blend-mode: normal;
  border-radius: 6px;
  z-index: 0;
}

.media-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 6px;
  background: rgba(247, 251, 255, 0.92);
  color: #0b1820;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(5, 7, 8, 0.2);
}

.media-badge--top {
  top: 42px;
  left: 44px;
}

.media-badge--right {
  right: 30px;
  top: 48%;
}

.media-badge--bottom {
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
}

.content {
  max-width: 760px;
}

.content h2 {
  margin-bottom: 16px;
}

.content p:last-child {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  color: #2b3941;
  font-weight: 750;
}

.check-list svg {
  width: 22px;
  height: 22px;
  color: var(--brand-green-dark);
}

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

.campaign-card {
  position: relative;
  overflow: hidden;
}

.campaign-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.campaign-card:hover::after {
  transform: scaleX(1);
}

.campaign-card::before {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-green));
  border-radius: 4px;
}

.campaign-card strong {
  color: var(--brand-green-dark);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 48px 0;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(18, 136, 223, 0.94), rgba(24, 191, 82, 0.92)),
    #0b7335;
  color: #fff;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-100%);
  animation: band-sweep 7s ease-in-out infinite;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  margin-bottom: 6px;
  font-size: 31px;
  line-height: 1.16;
}

.cta-band p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--inverse);
  background:
    linear-gradient(120deg, rgba(5, 7, 8, 0.98), rgba(11, 28, 38, 0.94)),
    #050708;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.24;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 74px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.42fr);
  gap: 40px;
  align-items: center;
}

.page-hero p {
  max-width: 680px;
  color: rgba(247, 251, 255, 0.75);
  font-size: 18px;
}

.page-hero__badge {
  border: 1px solid rgba(247, 251, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.page-hero__badge img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  margin-bottom: 20px;
  background: #000;
  border-radius: 6px;
}

.page-hero__badge strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.22;
}

.breadcrumb {
  padding: 18px 0;
  background: #fff;
  border-bottom: 1px solid var(--surface-line);
  color: var(--muted);
  font-size: 14px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: #91a0a8;
}

.breadcrumb a {
  color: #064f91;
  font-weight: 800;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: 38px;
  align-items: start;
}

.article {
  max-width: 780px;
}

.article h2 {
  margin-top: 34px;
  margin-bottom: 12px;
  font-size: 31px;
  line-height: 1.16;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  margin-top: 26px;
  margin-bottom: 8px;
  font-size: 22px;
}

.article p {
  margin-bottom: 16px;
}

.side-panel {
  position: sticky;
  top: 108px;
  border: 1px solid var(--surface-line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
}

.side-panel h2 {
  margin-bottom: 14px;
  font-size: 22px;
}

.side-panel ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
  list-style: none;
}

.side-panel li a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  background: var(--surface-soft);
  color: #1d2b32;
  font-weight: 850;
}

.side-panel li a:hover,
.side-panel li a:focus {
  background: #e7f7ed;
  color: var(--brand-green-dark);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
  color: #1b292f;
}

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.55fr);
  gap: 26px;
}

.map-frame {
  min-height: 420px;
  border: 0;
  width: 100%;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card {
  box-shadow: none;
}

.contact-card a {
  color: #064f91;
  font-weight: 900;
}

.footer {
  background: #030405;
  color: var(--inverse);
  padding: 50px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer p {
  color: rgba(247, 251, 255, 0.7);
}

.footer h2,
.footer h3 {
  margin-bottom: 13px;
}

.footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer a {
  color: rgba(247, 251, 255, 0.82);
}

.footer a:hover,
.footer a:focus {
  color: #9de8b5;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(247, 251, 255, 0.12);
  padding-top: 22px;
  color: rgba(247, 251, 255, 0.58);
  font-size: 14px;
}

.home-redesign .topbar__phone,
.home-redesign .topbar__instagram {
  color: #fff;
  font-weight: 950;
}

.home-redesign .topbar__instagram svg {
  color: #9de8b5;
}

.home-redesign .topbar__instagram:hover,
.home-redesign .topbar__instagram:focus,
.home-redesign .topbar__phone:hover,
.home-redesign .topbar__phone:focus {
  border-color: rgba(157, 232, 181, 0.36);
  background: rgba(24, 191, 82, 0.12);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 76px 76px, 76px 76px;
  }
}

@keyframes scan-line {
  0%,
  100% {
    transform: translateX(-18%);
    opacity: 0.38;
  }

  50% {
    transform: translateX(18%);
    opacity: 0.9;
  }
}

@keyframes light-pass {
  0%,
  42% {
    transform: translateX(-360px) rotate(12deg);
  }

  74%,
  100% {
    transform: translateX(360px) rotate(12deg);
  }
}

@keyframes band-sweep {
  0%,
  40% {
    transform: translateX(-100%);
  }

  70%,
  100% {
    transform: translateX(100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 960px) {
  .topbar__inner,
  .cta-band__inner,
  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--surface-line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .hero__inner,
  .page-hero__inner,
  .section-heading,
  .strip,
  .two-column,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__inner {
    min-height: auto;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }

  .hero__visual {
    min-height: 390px;
    border-left: 0;
  }

  .service-grid,
  .campaign-grid,
  .feature-grid,
  .step-grid,
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

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

  .brand__name {
    font-size: 16px;
  }

  .brand__tag,
  .topbar {
    font-size: 12px;
  }

  .hero__inner,
  .page-hero__inner {
    padding: 48px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero p,
  .page-hero p {
    font-size: 17px;
  }

  .hero__facts,
  .service-ribbon,
  .service-grid,
  .campaign-grid,
  .feature-grid,
  .step-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .service-ribbon {
    position: static;
    margin: 16px;
  }

  .service-ribbon span + span {
    border-left: 0;
    border-top: 1px solid rgba(247, 251, 255, 0.12);
  }

  .logo-stage {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .section-heading h2,
  .content h2 {
    font-size: 29px;
  }

  .article h2 {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .page-hero__actions {
    width: 100%;
  }

  .strip__media {
    min-height: 300px;
  }

  .strip__media img {
    inset: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    padding: 38px;
  }

  .hero__status {
    left: 14px;
    top: 14px;
  }

  .media-badge {
    font-size: 12px;
  }

  .media-badge--right {
    display: none;
  }

  .media-badge--top {
    top: 28px;
    left: 28px;
  }

  .media-badge--bottom {
    bottom: 24px;
  }
}
