:root {
  --red: #f52237;
  --red-dark: #d90f25;
  --ink: #111317;
  --muted: #646970;
  --line: #e4e5e8;
  --soft: #f6f6f7;
  --dark: #08090b;
  --card-dark: #1c1d21;
  --container: 1232px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.container {
  max-width: var(--container);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--red);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  background: rgba(4, 5, 6, .5);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  position: fixed;
  height: 78px;
  background: rgba(5, 6, 8, .93);
  box-shadow: 0 9px 35px rgba(0, 0, 0, .16);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.1px;
}

.brand span {
  color: var(--red);
}

.brand small {
  font-size: .62em;
  letter-spacing: -.4px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 45px;
  margin-left: auto;
  margin-right: 70px;
}

.main-nav a {
  position: relative;
  padding: 28px 0;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .25px;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transition: transform .25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
}

.menu-toggle svg {
  width: 21px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .2px;
  cursor: pointer;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 8px 20px rgba(245, 34, 55, .16);
}

.btn-primary:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  box-shadow: 0 12px 26px rgba(245, 34, 55, .25);
}

.header-cta {
  min-width: 128px;
  min-height: 38px;
  padding: 0 20px;
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.16);
}

.btn-ghost:hover {
  color: var(--ink);
  background: #fff;
}

.btn-outline {
  min-height: 41px;
  color: var(--ink);
  border-color: #73777c;
  background: transparent;
}

.btn-outline:hover {
  color: #fff;
  border-color: var(--ink);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #fff;
  background-color: #050607;
  background-image: url("assets/hero-laptop.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2,3,4,.96) 0%, rgba(2,3,4,.88) 31%, rgba(2,3,4,.38) 54%, rgba(2,3,4,.06) 76%),
    linear-gradient(0deg, rgba(2,3,4,.26) 0%, transparent 36%);
}

.hero-inner {
  position: relative;
  min-height: 620px;
  padding-top: 158px;
}

.hero-copy {
  width: 52%;
  max-width: 610px;
}

.eyebrow {
  margin: 0 0 19px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .35px;
}

.eyebrow-light {
  display: none;
}

.hero h1 {
  margin: 0;
  font-size: clamp(40px, 4.2vw, 61px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2.7px;
}

.hero h1 span {
  color: var(--red);
}

.hero-lead {
  max-width: 510px;
  margin: 24px 0 31px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.hero-actions .btn {
  min-width: 174px;
  min-height: 46px;
}

.hero-benefits {
  position: absolute;
  right: 16px;
  bottom: 45px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-benefits svg {
  width: 15px;
  height: 15px;
  color: var(--red);
  stroke-width: 2.2;
}

.section {
  padding: 78px 0;
}

.section-intro {
  max-width: 300px;
}

.section-intro h2 {
  margin: 0 0 19px;
  font-size: 30px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: -1px;
}

.section-intro p:not(.eyebrow) {
  margin: 0 0 25px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card {
  position: relative;
  min-height: 245px;
  padding: 28px 24px 25px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(21, 24, 30, .1);
}

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

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: #fff;
  border-radius: 5px;
  background: linear-gradient(145deg, #ff4051, #e41026);
  box-shadow: 0 9px 18px rgba(245,34,55,.22);
}

.icon-box svg {
  width: 22px;
}

.service-card h3 {
  margin: 0 0 14px;
  font-size: 14px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.service-card > a {
  position: absolute;
  right: 20px;
  bottom: 17px;
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--red);
  opacity: 0;
  place-items: center;
  transform: translate(-7px, 7px);
  transition: opacity .25s ease, transform .25s ease;
}

.service-card:hover > a {
  opacity: 1;
  transform: translate(0);
}

.service-card > a svg {
  width: 17px;
}

.portfolio {
  background: var(--soft);
}

.projects-shell {
  overflow: hidden;
}

.projects-track {
  display: flex;
  gap: 16px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

.project-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(16, 18, 22, .045);
  transition: transform .3s ease, box-shadow .3s ease;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 38px rgba(16, 18, 22, .12);
}

.project-visual {
  position: relative;
  height: 170px;
  overflow: hidden;
}

.browser-bar {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  height: 14px;
  padding: 0 7px;
  background: rgba(255,255,255,.94);
}

.browser-bar i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #b6b7ba;
}

.project-industrial {
  background:
    linear-gradient(90deg, rgba(19,19,18,.94) 0 45%, rgba(19,19,18,.1) 75%),
    repeating-linear-gradient(115deg, transparent 0 9px, rgba(255,190,19,.2) 10px 11px),
    linear-gradient(145deg, #4f4c42, #191918);
}

.mini-site {
  position: absolute;
  inset: 27px 12px 13px;
  color: #fff;
  background: radial-gradient(circle at 82% 55%, #8b8a83 0 10%, transparent 11%);
}

.mini-logo {
  display: block;
  margin-bottom: 28px;
  font-size: 7px;
  font-weight: 800;
}

.mini-logo span {
  color: #ffc400;
}

.mini-site strong,
.build-layout strong,
.fitness-layout strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  text-transform: uppercase;
}

.mini-site b,
.build-layout b,
.fitness-layout b {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 7px;
  color: #111;
  background: #ffc400;
  font-size: 5px;
}

.project-shop {
  color: #315e61;
  background: linear-gradient(#a6ece4 0 42%, #f9f7f2 42%);
}

.shop-layout {
  position: absolute;
  inset: 25px 10px 10px;
  text-align: center;
}

.shop-layout > span {
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.shop-bubble {
  display: grid;
  width: 52px;
  height: 52px;
  margin: 11px auto 17px;
  color: #e28d79;
  border: 6px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: #ffe6da;
  place-items: center;
}

.shop-bubble svg {
  width: 21px;
}

.shop-items {
  display: flex;
  justify-content: center;
  gap: 7px;
}

.shop-items i {
  width: 34px;
  height: 26px;
  border-radius: 2px;
  background: linear-gradient(#f6d0bd 60%, #fff 60%);
  box-shadow: 0 2px 5px rgba(0,0,0,.08);
}

.project-build {
  color: #fff;
  background: #12365a;
}

.build-layout {
  position: absolute;
  inset: 14px 0 0;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;
}

.build-layout > div {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.build-layout small,
.fitness-layout small {
  display: block;
  margin-bottom: 9px;
  color: #42add1;
  font-size: 5px;
  font-weight: 700;
}

.build-layout b {
  color: #fff;
  background: #1681c0;
}

.building {
  align-self: stretch;
  background:
    linear-gradient(90deg, transparent 0 9%, rgba(255,255,255,.18) 10% 12%, transparent 13% 29%, rgba(255,255,255,.18) 30% 33%, transparent 34%),
    linear-gradient(160deg, rgba(255,255,255,.85), #6d8496 55%, #324b62 56%);
  clip-path: polygon(18% 20%, 90% 0, 100% 100%, 0 100%);
}

.project-fitness {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3,3,4,.98), rgba(3,3,4,.35)),
    radial-gradient(circle at 78% 40%, #665457 0 10%, transparent 11%),
    linear-gradient(135deg, #292b30, #090a0c);
}

.fitness-layout {
  position: absolute;
  inset: 44px 12px 12px;
}

.fitness-layout small {
  color: var(--red);
}

.fitness-layout b {
  color: #fff;
  background: var(--red);
}

.project-meta {
  padding: 14px 12px 17px;
}

.project-meta h3 {
  margin: 0 0 4px;
  font-size: 12px;
}

.project-meta p {
  margin: 0;
  color: #85898f;
  font-size: 10px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.slider-dots button {
  width: 15px;
  height: 5px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: #c6c8cb;
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dots button.active {
  width: 22px;
  background: var(--red);
}

.process {
  padding-top: 67px;
  padding-bottom: 67px;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-grid::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: #e6e7e9;
}

.process-step {
  position: relative;
  z-index: 1;
}

.step-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 15px;
  color: var(--red);
  border-radius: 50%;
  background: #fff0f1;
  place-items: center;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.process-step:hover .step-icon {
  color: #fff;
  background: var(--red);
  transform: translateY(-5px);
}

.step-icon svg {
  width: 25px;
}

.process-step h3 {
  margin: 0 0 10px;
  font-size: 13px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.testimonials {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #0a0b0d;
}

.testimonials-pattern {
  position: absolute;
  inset: 0;
  opacity: .25;
  background:
    repeating-radial-gradient(ellipse at 8% 75%, transparent 0 39px, #4b4d52 40px 41px, transparent 42px 54px),
    repeating-linear-gradient(55deg, transparent 0 42px, rgba(255,255,255,.08) 43px 44px);
}

.testimonials .container {
  position: relative;
}

.section-intro-dark h2 {
  color: #fff;
}

.section-intro-dark p:not(.eyebrow) {
  color: #9a9da3;
}

.quote-card {
  display: flex;
  flex-direction: column;
  min-height: 205px;
  margin: 0;
  padding: 25px 24px;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: 4px;
  background: rgba(34, 36, 40, .92);
  transition: transform .3s ease, background .3s ease;
}

.quote-card:hover {
  background: #27292e;
  transform: translateY(-6px);
}

.stars {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 14px;
  letter-spacing: 2px;
}

.quote-card blockquote {
  margin: 0 0 19px;
  color: #e5e6e8;
  font-size: 11px;
  line-height: 1.7;
}

.quote-card figcaption {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.quote-card figcaption strong {
  font-size: 11px;
}

.quote-card figcaption span {
  color: #8f9298;
  font-size: 9px;
}

.contact {
  padding-top: 66px;
  padding-bottom: 61px;
}

.contact .section-intro {
  max-width: 330px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  transition: color .2s ease;
}

.contact-links a:hover {
  color: var(--red);
}

.contact-links svg {
  width: 15px;
  color: var(--red);
}

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

.contact-form label {
  display: block;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  border: 1px solid #dcdfe3;
  border-radius: 3px;
  outline: none;
  background: #fff;
  transition: border .2s ease, box-shadow .2s ease;
}

.contact-form input {
  height: 45px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 124px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a6a9ae;
  font-size: 11px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(245,34,55,.08);
}

.contact-form .is-invalid {
  border-color: var(--red);
}

.btn-submit {
  position: relative;
  width: 100%;
  gap: 9px;
  border: 0;
}

.btn-submit svg {
  width: 15px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s ease, transform .25s ease;
}

.btn-submit:hover svg {
  opacity: 1;
  transform: translateX(0);
}

.form-message {
  min-height: 20px;
  margin: -5px 0 0;
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
}

.form-message.success {
  color: #18864b;
}

.site-footer {
  padding: 49px 0 0;
  color: #91949a;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.04), transparent 28%),
    #090a0c;
}

.footer-main {
  padding-bottom: 39px;
}

.footer-about {
  margin: 27px 0 0;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer h3 {
  margin: 4px 0 16px;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.site-footer .col-6 > a,
.site-footer .col-md-6 > a {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  transition: color .2s ease;
}

.site-footer a:hover {
  color: #fff;
}

.footer-contact {
  display: flex !important;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px !important;
}

.footer-contact svg {
  width: 14px;
  color: #c6c8cb;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 17px;
}

.socials a {
  display: grid;
  width: 38px;
  height: 38px;
  color: #fff;
  border-radius: 50%;
  background: #222429;
  place-items: center;
  transition: background .25s ease, transform .25s ease;
}

.socials a:hover {
  background: var(--red);
  transform: translateY(-3px);
}

.socials svg {
  width: 16px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  border-top: 1px solid #282a2e;
  font-size: 8px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 31px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1199.98px) {
  .main-nav {
    gap: 29px;
    margin-right: 35px;
  }

  .hero {
    background-position: 57% bottom;
  }

  .hero-copy {
    width: 58%;
  }

  .service-card {
    min-height: 226px;
  }

  .project-card {
    flex-basis: calc(33.333% - 11px);
  }
}

@media (max-width: 991.98px) {
  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    backdrop-filter: none;
  }

  .site-header .brand {
    position: relative;
    z-index: 3;
  }

  .menu-toggle {
    position: relative;
    z-index: 3;
    display: inline-flex;
    margin-left: auto;
    margin-right: 12px;
  }

  .main-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    gap: 2px;
    margin: 0;
    padding: 108px 24px 40px;
    overflow-x: hidden;
    overflow-y: auto;
    background: rgba(6,7,9,.985);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    width: min(100%, 340px);
    padding: 16px 12px;
    border-bottom: 1px solid rgba(255,255,255,.09);
    font-size: 17px;
    text-align: center;
  }

  .main-nav a::after {
    right: 38%;
    bottom: 7px;
    left: 38%;
  }

  .header-cta {
    z-index: 2;
    min-width: 112px;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero {
    background-position: 64% bottom;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(2,3,4,.96), rgba(2,3,4,.76) 55%, rgba(2,3,4,.17)),
      linear-gradient(0deg, rgba(2,3,4,.34), transparent 44%);
  }

  .hero-inner {
    padding-top: 145px;
  }

  .hero-copy {
    width: 66%;
  }

  .hero-benefits {
    flex-wrap: wrap;
  }

  .section {
    padding: 70px 0;
  }

  .section-intro {
    max-width: 550px;
    margin-bottom: 23px;
  }

  .process-grid {
    margin-top: 20px;
  }
}

@media (max-width: 767.98px) {
  .brand {
    font-size: 17px;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    margin-right: 0;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero {
    background-position: 61% bottom;
    background-size: auto 58%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(2,3,4,.97) 0%, rgba(2,3,4,.91) 47%, rgba(2,3,4,.18) 80%),
      linear-gradient(90deg, rgba(2,3,4,.38), transparent);
  }

  .hero-inner {
    padding-top: 120px;
  }

  .hero-copy {
    width: 100%;
    max-width: 550px;
  }

  .hero h1 {
    font-size: clamp(37px, 9.6vw, 50px);
    letter-spacing: -1.8px;
  }

  .hero-lead {
    max-width: 470px;
    font-size: 14px;
  }

  .hero-benefits {
    right: 12px;
    bottom: 24px;
    left: 12px;
    gap: 11px 20px;
  }

  .hero-benefits span {
    font-size: 9px;
  }

  .project-card {
    flex-basis: calc(50% - 8px);
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 22px;
  }

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

  .process-step {
    display: flex;
    gap: 14px;
  }

  .step-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    margin: 0;
  }

  .quote-card {
    min-height: 180px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 14px 0;
  }
}

@media (max-width: 575.98px) {
  .header-inner,
  .hero-inner,
  .section .container,
  .site-footer .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .section-intro h2 {
    font-size: 27px;
  }

  .project-card {
    flex-basis: 82%;
  }

  .project-visual {
    height: 185px;
  }

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

  .process-step p {
    max-width: 290px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Shared service subpages */
.main-nav a.active::after {
  transform: scaleX(1);
}

.subpage {
  background: #fff;
}

.subpage .site-header {
  position: fixed;
}

.subpage .site-header.is-scrolled {
  position: fixed;
}

.subpage-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 75% 45%, rgba(66, 70, 78, .68), transparent 28%),
    linear-gradient(125deg, #050608 0%, #0b0d11 52%, #171a20 100%);
}

.hero-grid-glow {
  position: absolute;
  inset: 0;
  opacity: .3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 50%, #000);
}

.subpage-hero .container {
  position: relative;
  padding-top: 157px;
  padding-bottom: 90px;
}

.subpage-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 47px;
  color: #72777f;
  font-size: 10px;
  text-transform: uppercase;
}

.breadcrumb a {
  color: #b1b4b9;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: #fff;
}

.breadcrumb svg {
  width: 12px;
  height: 12px;
}

.subpage-hero h1 {
  max-width: 640px;
  margin: 0;
  font-size: clamp(47px, 5.3vw, 70px);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -3.4px;
}

.subpage-hero h1 span {
  color: var(--red);
}

.subpage-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 25px 0 31px;
  color: #aeb2b8;
  font-size: 16px;
  line-height: 1.75;
}

.subpage-hero .hero-actions .btn {
  min-width: 190px;
}

.hero-proof {
  display: flex;
  gap: 25px;
  margin-top: 28px;
  color: #a9adb4;
}

.hero-proof span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 600;
}

.hero-proof svg {
  width: 14px;
  color: var(--red);
}

.web-mockup,
.shop-mockup {
  position: relative;
  z-index: 2;
  min-height: 445px;
  perspective: 1100px;
}

.mockup-window,
.shop-window {
  position: absolute;
  top: 18px;
  right: -58px;
  width: 650px;
  height: 402px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 37px 80px rgba(0,0,0,.48);
  transform: rotateY(-9deg) rotateX(2deg);
}

.mockup-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 25px;
  padding: 0 10px;
  color: #888c91;
  background: #eef0f2;
}

.mockup-toolbar i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #afb3b8;
}

.mockup-toolbar span {
  min-width: 160px;
  margin: 0 auto;
  padding: 2px 18px;
  border-radius: 4px;
  background: #fff;
  font-size: 6px;
  text-align: center;
}

.mockup-page {
  position: relative;
  height: calc(100% - 25px);
  color: #fff;
  background:
    radial-gradient(circle at 78% 50%, rgba(245,34,55,.16), transparent 23%),
    linear-gradient(125deg, #101216, #282d34);
}

.mockup-nav {
  display: flex;
  align-items: center;
  height: 52px;
  padding: 0 31px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.mockup-nav b {
  font-size: 10px;
  letter-spacing: 1px;
}

.mockup-nav b span,
.mobile-screen b span {
  color: var(--red);
}

.mockup-nav div {
  display: flex;
  gap: 17px;
  margin-left: auto;
}

.mockup-nav div i {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.35);
}

.mockup-nav em {
  width: 55px;
  height: 17px;
  margin-left: 24px;
  background: var(--red);
}

.mockup-content {
  position: relative;
  z-index: 2;
  padding: 65px 0 0 42px;
}

.mockup-content small {
  color: var(--red);
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.mockup-content strong {
  display: block;
  margin: 13px 0 17px;
  font-size: 30px;
  line-height: 1.12;
  letter-spacing: -1.3px;
}

.mockup-content p {
  width: 180px;
  height: 4px;
  margin: 0 0 7px;
  border-radius: 3px;
  background: rgba(255,255,255,.28);
}

.mockup-content p.short {
  width: 125px;
}

.mockup-content b {
  display: inline-block;
  margin-top: 23px;
  padding: 10px 16px;
  background: var(--red);
  font-size: 6px;
}

.mockup-orbit {
  position: absolute;
  top: 66px;
  right: 44px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 25px rgba(255,255,255,.018),
    0 0 0 52px rgba(255,255,255,.012);
}

.mockup-orbit::before,
.mockup-orbit::after {
  position: absolute;
  content: "";
  background: linear-gradient(145deg, #474d55, #111317);
  transform: rotate(45deg);
}

.mockup-orbit::before {
  inset: 44px;
}

.mockup-orbit::after {
  inset: 82px;
  background: var(--red);
  box-shadow: 0 0 36px rgba(245,34,55,.35);
}

.mobile-mockup {
  position: absolute;
  z-index: 4;
  right: -35px;
  bottom: -9px;
  width: 130px;
  height: 260px;
  padding: 7px;
  border: 2px solid #4d5259;
  border-radius: 20px;
  background: #08090b;
  box-shadow: 0 25px 60px rgba(0,0,0,.48);
}

.mobile-notch {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 42px;
  height: 8px;
  border-radius: 5px;
  background: #050607;
  transform: translateX(-50%);
}

.mobile-screen {
  position: relative;
  height: 100%;
  padding: 28px 13px;
  overflow: hidden;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(145deg, #171a20, #090a0c);
}

.mobile-screen b {
  font-size: 8px;
}

.mobile-screen small {
  display: block;
  margin-top: 43px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
}

.mobile-screen i {
  display: block;
  width: 46px;
  height: 15px;
  margin-top: 18px;
  background: var(--red);
}

.floating-score,
.floating-cart {
  position: absolute;
  z-index: 5;
  bottom: 12px;
  left: -9px;
  display: grid;
  grid-template-columns: 35px auto;
  align-items: center;
  min-width: 135px;
  padding: 12px;
  color: var(--ink);
  border: 1px solid #eee;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
}

.floating-score svg,
.floating-cart svg {
  grid-row: 1 / 3;
  width: 24px;
  color: var(--red);
}

.floating-score b,
.floating-cart b {
  font-size: 16px;
  line-height: 1;
}

.floating-score small,
.floating-cart small {
  color: #8c9095;
  font-size: 7px;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 105px;
}

.proof-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border-right: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.proof-grid strong {
  color: var(--red);
  font-size: 25px;
  letter-spacing: -1.2px;
}

.proof-grid span {
  max-width: 120px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.45;
  text-transform: uppercase;
}

.detail-features {
  padding-top: 96px;
  padding-bottom: 96px;
}

.center-heading {
  max-width: 650px;
  margin: 0 auto 48px;
  text-align: center;
}

.center-heading h2 {
  margin: 0 0 16px;
  font-size: 38px;
  line-height: 1.2;
  letter-spacing: -1.5px;
}

.center-heading > p:not(.eyebrow) {
  max-width: 570px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 13px;
}

.feature-card {
  min-height: 235px;
  padding: 29px 28px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  border-color: transparent;
  transform: translateY(-6px);
  box-shadow: 0 17px 45px rgba(20,23,29,.09);
}

.feature-card > span {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 23px;
  color: var(--red);
  border-radius: 50%;
  background: #fff0f1;
  place-items: center;
}

.feature-card > span svg {
  width: 21px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 15px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.solution-split {
  overflow: hidden;
  background: var(--soft);
}

.content-visual {
  position: relative;
  min-height: 410px;
  perspective: 900px;
}

.content-browser {
  position: absolute;
  top: 23px;
  left: -100px;
  display: grid;
  grid-template-columns: 78px 1fr;
  width: 630px;
  height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(25,27,32,.17);
  transform: rotateY(7deg);
}

.content-browser > .mockup-toolbar {
  grid-column: 1 / 3;
}

.content-browser aside,
.dashboard-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 23px;
  color: #fff;
  background: #111318;
}

.content-browser aside b,
.dashboard-side b {
  margin-bottom: 12px;
  font-size: 16px;
}

.content-browser aside b span,
.dashboard-side b span {
  color: var(--red);
}

.content-browser aside i,
.dashboard-side i {
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
}

.editor-area {
  padding: 27px;
  background: #f7f8fa;
}

.editor-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}

.editor-head span {
  width: 120px;
  height: 12px;
  border-radius: 4px;
  background: #292c32;
}

.editor-head b {
  width: 62px;
  height: 22px;
  border-radius: 3px;
  background: var(--red);
}

.editor-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin-bottom: 14px;
  padding: 11px;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(0,0,0,.035);
}

.editor-row > i {
  height: 52px;
  border-radius: 3px;
  background: linear-gradient(135deg, #dfe1e5, #aeb3bb);
}

.editor-row > div {
  padding-top: 6px;
}

.editor-row b,
.editor-row span {
  display: block;
  width: 65%;
  height: 5px;
  margin-bottom: 8px;
  border-radius: 3px;
  background: #dadde1;
}

.editor-row b {
  width: 42%;
  height: 7px;
  background: #3b3e44;
}

.split-copy {
  max-width: 510px;
  padding-left: 30px;
}

.split-copy h2 {
  margin: 0 0 19px;
  font-size: 38px;
  line-height: 1.22;
  letter-spacing: -1.5px;
}

.split-copy > p:not(.eyebrow) {
  margin: 0 0 27px;
  color: var(--muted);
  font-size: 13px;
}

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

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}

.check-list svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  padding: 5px;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
}

.check-list b {
  color: var(--ink);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link svg {
  width: 16px;
  transition: transform .2s ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.detailed-process {
  padding-top: 96px;
  padding-bottom: 96px;
}

.numbered-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.numbered-process article {
  position: relative;
  min-height: 245px;
  padding: 33px 26px;
  border-right: 1px solid var(--line);
  transition: color .3s ease, background .3s ease;
}

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

.numbered-process article > span {
  position: absolute;
  top: 21px;
  right: 22px;
  color: #e6e7e9;
  font-size: 35px;
  font-weight: 800;
  letter-spacing: -2px;
}

.numbered-process article > svg {
  width: 28px;
  height: 28px;
  margin: 13px 0 34px;
  color: var(--red);
}

.numbered-process h3 {
  margin: 0 0 12px;
  font-size: 14px;
}

.numbered-process p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

.numbered-process article:hover {
  color: #fff;
  background: #111318;
}

.numbered-process article:hover > span {
  color: rgba(255,255,255,.08);
}

.numbered-process article:hover p {
  color: #a8acb2;
}

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

.faq-list {
  border-top: 1px solid #d9dbdf;
}

.faq-list details {
  border-bottom: 1px solid #d9dbdf;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 21px 3px;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 18px;
  color: var(--red);
  transition: transform .25s ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 670px;
  margin: -5px 0 23px;
  color: var(--muted);
  font-size: 11px;
}

.cta-band {
  padding: 72px 0;
  color: #fff;
  background:
    radial-gradient(circle at 83% 20%, rgba(245,34,55,.18), transparent 25%),
    repeating-linear-gradient(55deg, transparent 0 55px, rgba(255,255,255,.025) 56px 57px),
    #090a0d;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-band-inner h2 {
  margin: 0 0 9px;
  font-size: 32px;
  letter-spacing: -1.3px;
}

.cta-band-inner p:not(.eyebrow) {
  margin: 0;
  color: #8e9299;
  font-size: 11px;
}

.cta-band-inner .btn {
  flex: 0 0 auto;
  gap: 9px;
  min-height: 49px;
}

.cta-band-inner .btn svg {
  width: 16px;
}

/* E-shop hero and dashboard */
.shop-hero {
  background:
    radial-gradient(circle at 76% 45%, rgba(79, 61, 60, .66), transparent 28%),
    linear-gradient(125deg, #050608 0%, #0b0d11 50%, #20191a 100%);
}

.eshop-hero-image,
.service-device-image,
.demo-device-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: 445px;
}

.eshop-hero-image::before,
.service-device-image::before,
.demo-device-image::before {
  position: absolute;
  z-index: -1;
  inset: 10% -15% 5% 7%;
  content: "";
  border-radius: 50%;
  background: rgba(245, 34, 55, .11);
  filter: blur(70px);
}

.eshop-hero-image img,
.service-device-image img,
.demo-device-image img {
  display: block;
  width: 760px;
  max-width: none;
  height: auto;
  margin-left: -32px;
  border-radius: 18px;
  filter: drop-shadow(0 30px 45px rgba(0, 0, 0, .35));
}

.shop-window {
  right: -75px;
  height: 405px;
}

.store-head {
  display: flex;
  align-items: center;
  height: 54px;
  padding: 0 28px;
  color: #1a1b1e;
  border-bottom: 1px solid #eee;
}

.store-head b {
  font-size: 14px;
  letter-spacing: 2px;
}

.store-head b span {
  color: var(--red);
}

.store-head div {
  margin: 0 auto;
  color: #777b80;
  font-size: 7px;
}

.store-head svg {
  width: 17px;
}

.store-body {
  display: grid;
  grid-template-columns: 55% 45%;
  height: calc(100% - 79px);
  color: #17181b;
  background: #eee9e5;
}

.store-copy {
  padding: 63px 0 0 39px;
}

.store-copy small {
  color: #9d6565;
  font-size: 7px;
  font-weight: 800;
}

.store-copy strong {
  display: block;
  margin: 13px 0 25px;
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.15;
}

.store-copy b {
  display: inline-block;
  padding: 10px 17px;
  color: #fff;
  background: #202124;
  font-size: 6px;
}

.store-product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
  background: #d5c7bf;
}

.store-product > span {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 30px;
  height: 30px;
  color: #fff;
  border-radius: 50%;
  background: #9e6565;
  font-size: 6px;
  place-items: center;
}

.product-shape {
  width: 130px;
  height: 150px;
  margin-bottom: 11px;
  border: 13px solid #8d6e63;
  border-bottom-width: 40px;
  border-radius: 65px 65px 8px 8px;
  background: #b38c7c;
  box-shadow: 0 18px 22px rgba(69,45,39,.17);
}

.store-product small {
  font-size: 7px;
}

.store-product b {
  margin-top: 3px;
  font-size: 9px;
}

.floating-order {
  position: absolute;
  z-index: 5;
  right: -14px;
  bottom: -1px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}

.floating-order > svg {
  width: 25px;
  color: #26a765;
}

.floating-order span {
  display: flex;
  flex-direction: column;
}

.floating-order b {
  font-size: 9px;
}

.floating-order small {
  color: #8b8f95;
  font-size: 7px;
}

.floating-cart {
  bottom: 33px;
  left: -15px;
}

.orders-dashboard {
  display: grid;
  grid-template-columns: 82px 1fr;
  min-height: 410px;
  overflow: hidden;
  border-radius: 8px;
  background: #f6f7f9;
  box-shadow: 0 26px 70px rgba(25,27,32,.17);
}

.dashboard-main {
  padding: 31px;
}

.dashboard-main header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.dashboard-main header div {
  display: flex;
  flex-direction: column;
}

.dashboard-main header small {
  color: #999da3;
  font-size: 8px;
}

.dashboard-main header strong {
  font-size: 16px;
}

.dashboard-main header span {
  display: grid;
  width: 33px;
  height: 33px;
  color: #777b82;
  border-radius: 50%;
  background: #fff;
  place-items: center;
}

.dashboard-main header svg {
  width: 14px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.dashboard-stats div {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 5px;
  background: #fff;
}

.dashboard-stats small {
  color: #91959a;
  font-size: 8px;
}

.dashboard-stats b {
  margin-top: 4px;
  font-size: 20px;
}

.dashboard-stats em {
  position: absolute;
  top: 19px;
  right: 15px;
  color: #1c9a59;
  font-size: 8px;
  font-style: normal;
}

.chart-card {
  margin-top: 13px;
  padding: 18px;
  border-radius: 5px;
  background: #fff;
}

.chart-card span {
  display: block;
  margin-bottom: 18px;
  font-size: 9px;
  font-weight: 700;
}

.chart-card svg {
  width: 100%;
  height: 105px;
}

.commerce-split .split-copy {
  padding-right: 30px;
  padding-left: 0;
}

.integrations {
  padding-top: 90px;
  padding-bottom: 90px;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.integration-grid span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 68px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  transition: color .25s ease, border-color .25s ease, transform .25s ease;
}

.integration-grid span:hover {
  color: var(--red);
  border-color: var(--red);
  transform: translateY(-3px);
}

.integration-grid svg {
  width: 19px;
  color: var(--red);
}

/* Demo gallery */
.demo-hero {
  min-height: 650px;
  background:
    radial-gradient(circle at 50% 75%, rgba(83,86,94,.5), transparent 30%),
    linear-gradient(125deg, #050608, #15181d);
}

.demo-hero .container {
  padding-top: 122px;
  padding-bottom: 58px;
}

.demo-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.demo-hero .breadcrumb {
  margin-bottom: 35px;
}

.demo-hero h1 {
  font-size: clamp(45px, 4.7vw, 64px);
}

.demo-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
}

.demo-device-image {
  min-height: 455px;
}

.demo-device-image img {
  width: 780px;
  margin-left: -42px;
}

.demos-section {
  padding-top: 86px;
  padding-bottom: 96px;
  background: var(--soft);
}

.demo-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 39px;
}

.demo-toolbar h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -1.2px;
}

.filter-buttons {
  display: flex;
  gap: 7px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.filter-buttons button {
  min-height: 34px;
  padding: 0 16px;
  color: #72767c;
  border: 0;
  border-radius: 2px;
  background: transparent;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}

.filter-buttons button.active {
  color: #fff;
  background: var(--red);
}

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

.demo-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20,22,27,.045);
  transition: opacity .25s ease, transform .3s ease, box-shadow .3s ease;
}

.demo-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(20,22,27,.11);
}

.demo-card.is-filtered {
  display: none;
}

.demo-visual {
  height: 310px;
}

.demo-visual .browser-bar {
  height: 20px;
}

.demo-visual .browser-bar span {
  margin: 0 auto;
  color: #9a9da2;
  font-size: 6px;
}

.demo-visual .mini-site {
  inset: 52px 28px 25px;
}

.demo-visual .mini-logo {
  margin-bottom: 65px;
  font-size: 10px;
}

.demo-visual .mini-site strong,
.demo-visual .build-layout strong,
.demo-visual .fitness-layout strong {
  font-size: 27px;
}

.demo-visual .mini-site b,
.demo-visual .build-layout b,
.demo-visual .fitness-layout b {
  padding: 8px 11px;
  font-size: 7px;
}

.demo-visual .shop-layout {
  inset: 42px 20px 20px;
}

.demo-visual .shop-layout > span {
  font-size: 15px;
}

.demo-visual .shop-bubble {
  width: 95px;
  height: 95px;
  margin-bottom: 27px;
}

.demo-visual .shop-items i {
  width: 70px;
  height: 50px;
}

.demo-visual .build-layout {
  inset: 20px 0 0;
}

.demo-visual .build-layout > div {
  padding-left: 28px;
}

.demo-visual .build-layout small,
.demo-visual .fitness-layout small {
  font-size: 7px;
}

.demo-visual .fitness-layout {
  inset: 85px 30px 30px;
}

.demo-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 24px;
}

.demo-meta span {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-meta h3 {
  margin: 3px 0 5px;
  font-size: 17px;
}

.demo-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.demo-meta > a {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--red);
  border: 1px solid var(--line);
  border-radius: 50%;
  place-items: center;
  transition: color .25s ease, border .25s ease, background .25s ease;
}

.demo-meta > a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.demo-meta svg {
  width: 17px;
}

.demo-law {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8,16,22,.94), rgba(8,16,22,.25)),
    linear-gradient(135deg, #887354, #263442);
}

.law-layout,
.food-layout {
  position: absolute;
  inset: 48px 30px 25px;
}

.law-layout > b {
  display: block;
  margin-bottom: 57px;
  font-family: Georgia, serif;
  font-size: 11px;
  letter-spacing: 1px;
}

.law-layout > b span {
  color: #c9ad7d;
}

.law-layout small,
.food-layout small {
  display: block;
  margin-bottom: 9px;
  color: #c9ad7d;
  font-size: 7px;
  font-weight: 700;
}

.law-layout strong,
.food-layout strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
}

.law-layout > i,
.food-layout > i,
.cosmetics-layout > div i,
.estate-layout > div i {
  display: inline-block;
  margin-top: 18px;
  padding: 9px 11px;
  color: #101418;
  background: #c9ad7d;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
}

.demo-cosmetics {
  color: #324437;
  background: #e8e0d3;
}

.cosmetics-layout,
.estate-layout {
  position: absolute;
  inset: 20px 0 0;
}

.cosmetics-layout nav,
.estate-layout nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  padding: 0 28px;
  font-size: 7px;
}

.cosmetics-layout nav b {
  font-family: Georgia, serif;
  font-size: 12px;
  letter-spacing: 2px;
}

.cosmetics-layout > div,
.estate-layout > div {
  position: relative;
  z-index: 2;
  padding: 49px 0 0 30px;
}

.cosmetics-layout > div small,
.estate-layout > div small {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 1px;
}

.cosmetics-layout > div strong,
.estate-layout > div strong {
  display: block;
  margin: 10px 0;
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.13;
}

.cosmetics-layout > div i {
  color: #fff;
  background: #5e7867;
}

.cosmetics-layout > em {
  position: absolute;
  right: 44px;
  bottom: 7px;
  width: 150px;
  height: 200px;
  border-radius: 75px 75px 5px 5px;
  background:
    radial-gradient(circle at 40% 25%, #fff 0 3%, transparent 4%),
    linear-gradient(160deg, #9daf96, #55755f);
  box-shadow: 0 21px 30px rgba(55,80,61,.2);
}

.demo-estate {
  color: #fff;
  background: linear-gradient(135deg, #304351, #8e9495);
}

.estate-layout nav {
  background: rgba(8,19,27,.45);
}

.estate-layout nav b {
  font-size: 11px;
  letter-spacing: 2px;
}

.estate-layout > div {
  padding-top: 60px;
}

.estate-layout > div i {
  color: #fff;
  background: #a68058;
}

.estate-layout > em {
  position: absolute;
  right: 25px;
  bottom: 0;
  width: 240px;
  height: 190px;
  opacity: .85;
  background:
    repeating-linear-gradient(90deg, transparent 0 25px, rgba(255,255,255,.8) 26px 28px),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(255,255,255,.55) 32px 34px),
    linear-gradient(135deg, #7d898e, #273b48);
  clip-path: polygon(18% 23%, 100% 0, 100% 100%, 0 100%);
}

.demo-food {
  color: #fff;
  background:
    radial-gradient(circle at 80% 50%, #885b3f 0 15%, transparent 16%),
    linear-gradient(90deg, rgba(20,15,12,.98), rgba(20,15,12,.38)),
    #4f392f;
}

.food-layout > b {
  display: block;
  margin-bottom: 54px;
  font-family: Georgia, serif;
  font-size: 13px;
  letter-spacing: 1px;
}

.food-layout > b span {
  color: #d98b53;
}

.food-layout small {
  color: #d98b53;
}

.food-layout > i {
  color: #fff;
  background: #c76c37;
}

.food-layout > em {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 170px;
  height: 170px;
  border: 8px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: inset 0 0 0 35px rgba(15,10,8,.55);
}

.demo-note {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 21px;
  margin-top: 42px;
  padding: 27px 30px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}

.demo-note > svg {
  width: 34px;
  color: var(--red);
}

.demo-note h3 {
  margin: 0 0 4px;
  font-size: 14px;
}

.demo-note p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1199.98px) {
  .mockup-window,
  .shop-window {
    right: -140px;
  }

  .mobile-mockup {
    right: -18px;
  }

  .eshop-hero-image img,
  .service-device-image img {
    width: 680px;
    margin-left: -18px;
  }

  .demo-device-image img {
    width: 720px;
    margin-left: -25px;
  }

  .proof-grid > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .content-browser {
    left: -145px;
  }
}

@media (max-width: 991.98px) {
  .subpage .main-nav a {
    padding: 13px;
    font-size: 16px;
  }

  .subpage-hero {
    min-height: auto;
  }

  .subpage-hero .container {
    padding-top: 125px;
  }

  .subpage-hero-copy {
    max-width: 680px;
  }

  .web-mockup,
  .shop-mockup {
    min-height: 470px;
    margin-top: 10px;
  }

  .eshop-hero-image,
  .service-device-image,
  .demo-device-image {
    min-height: auto;
    margin-top: 25px;
  }

  .eshop-hero-image img,
  .service-device-image img,
  .demo-device-image img {
    width: 100%;
    max-width: 820px;
    margin: 0 auto;
  }

  .demo-hero {
    min-height: auto;
  }

  .demo-hero-copy {
    max-width: 680px;
  }

  .mockup-window,
  .shop-window {
    right: auto;
    left: 5%;
    width: 88%;
  }

  .mobile-mockup {
    right: 2%;
  }

  .floating-score,
  .floating-cart {
    left: 2%;
  }

  .floating-order {
    right: 2%;
  }

  .content-visual {
    min-height: 390px;
  }

  .content-browser {
    right: 0;
    left: 0;
    width: 100%;
  }

  .split-copy,
  .commerce-split .split-copy {
    max-width: 650px;
    padding: 0;
  }

  .numbered-process {
    grid-template-columns: 1fr 1fr;
  }

  .numbered-process article:nth-child(2) {
    border-right: 0;
  }

  .numbered-process article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .orders-dashboard {
    max-width: 690px;
    margin: 0 auto;
  }

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

  .demo-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-visual {
    height: 265px;
  }

  .demo-visual .mini-site strong,
  .demo-visual .build-layout strong,
  .demo-visual .fitness-layout strong {
    font-size: 22px;
  }
}

@media (max-width: 767.98px) {
  .subpage-hero h1 {
    font-size: clamp(42px, 11vw, 58px);
    letter-spacing: -2.4px;
  }

  .subpage-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

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

  .proof-grid > div {
    min-height: 95px;
    border-bottom: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .proof-grid > div:nth-child(even) {
    border-right: 1px solid var(--line);
  }

  .center-heading h2,
  .split-copy h2 {
    font-size: 31px;
  }

  .cta-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-band-inner .btn {
    width: 100%;
  }

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

  .demo-visual {
    height: 310px;
  }

  .demo-note {
    grid-template-columns: auto 1fr;
  }

  .demo-note .btn {
    grid-column: 1 / 3;
  }
}

@media (max-width: 575.98px) {
  .subpage-hero .container {
    padding-top: 110px;
    padding-bottom: 65px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

  .subpage-hero .hero-actions {
    max-width: none;
  }

  .hero-proof {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .web-mockup,
  .shop-mockup {
    min-height: 330px;
  }

  .eshop-hero-image,
  .service-device-image,
  .demo-device-image {
    width: calc(100% + 40px);
    margin: 28px -20px -15px;
  }

  .eshop-hero-image img,
  .service-device-image img,
  .demo-device-image img {
    width: 112%;
    max-width: none;
    margin-left: -6%;
    border-radius: 9px;
  }

  .mockup-window,
  .shop-window {
    top: 10px;
    left: 0;
    width: 100%;
    height: 285px;
    transform: none;
  }

  .mockup-content {
    padding: 40px 0 0 22px;
  }

  .mockup-content strong {
    font-size: 21px;
  }

  .mockup-orbit {
    top: 61px;
    right: 17px;
    width: 145px;
    height: 145px;
  }

  .mockup-orbit::before {
    inset: 30px;
  }

  .mockup-orbit::after {
    inset: 57px;
  }

  .mockup-nav {
    padding: 0 18px;
  }

  .mockup-nav div {
    display: none;
  }

  .mobile-mockup {
    right: -6px;
    bottom: -5px;
    width: 95px;
    height: 190px;
  }

  .mobile-screen {
    padding: 25px 9px;
  }

  .mobile-screen small {
    margin-top: 28px;
    font-size: 13px;
  }

  .floating-score,
  .floating-cart {
    bottom: 1px;
    left: -6px;
  }

  .floating-order {
    display: none;
  }

  .store-body {
    grid-template-columns: 58% 42%;
  }

  .store-copy {
    padding: 39px 0 0 19px;
  }

  .store-copy strong {
    font-size: 19px;
  }

  .product-shape {
    width: 74px;
    height: 100px;
    border-width: 8px;
    border-bottom-width: 25px;
  }

  .proof-grid strong {
    font-size: 20px;
  }

  .detail-features,
  .detailed-process {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .feature-card {
    min-height: 205px;
  }

  .content-visual {
    min-height: 300px;
  }

  .content-browser {
    height: 285px;
    grid-template-columns: 55px 1fr;
  }

  .editor-area {
    padding: 16px;
  }

  .editor-row {
    grid-template-columns: 55px 1fr;
  }

  .numbered-process {
    grid-template-columns: 1fr;
  }

  .numbered-process article {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .numbered-process article:nth-child(3) {
    border-bottom: 1px solid var(--line);
  }

  .numbered-process article:last-child {
    border-bottom: 0;
  }

  .orders-dashboard {
    grid-template-columns: 55px 1fr;
    min-height: 350px;
  }

  .dashboard-main {
    padding: 18px;
  }

  .dashboard-stats b {
    font-size: 14px;
  }

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

  .filter-buttons {
    flex-wrap: wrap;
    width: 100%;
  }

  .filter-buttons button {
    flex: 1 0 42%;
  }

  .demo-visual {
    height: 235px;
  }

  .demo-visual .mini-logo {
    margin-bottom: 35px;
  }

  .demo-visual .mini-site strong,
  .demo-visual .build-layout strong,
  .demo-visual .fitness-layout strong,
  .law-layout strong,
  .food-layout strong {
    font-size: 18px;
  }

  .demo-visual .shop-bubble {
    width: 65px;
    height: 65px;
    margin: 12px auto;
  }

  .demo-visual .shop-items i {
    width: 45px;
    height: 34px;
  }

  .demo-visual .fitness-layout {
    inset: 63px 23px 20px;
  }

  .law-layout,
  .food-layout {
    inset: 39px 22px 20px;
  }

  .law-layout > b,
  .food-layout > b {
    margin-bottom: 34px;
  }

  .cosmetics-layout > em {
    right: 19px;
    width: 100px;
    height: 145px;
  }

  .cosmetics-layout > div,
  .estate-layout > div {
    padding: 33px 0 0 20px;
  }

  .cosmetics-layout > div strong,
  .estate-layout > div strong {
    font-size: 18px;
  }

  .estate-layout > em {
    width: 150px;
    height: 135px;
  }

  .demo-meta {
    padding: 18px;
  }
}
