﻿:root {
  --bg: #030706;
  --bg-soft: #07100f;
  --panel: rgba(9, 18, 17, 0.82);
  --panel-strong: rgba(13, 25, 23, 0.94);
  --panel-light: rgba(23, 42, 38, 0.76);
  --text: #f4fff9;
  --muted: #a7b7b0;
  --muted-strong: #d4dfda;
  --green: #12f77f;
  --green-soft: #9fffc9;
  --green-deep: #09b463;
  --line: rgba(90, 255, 168, 0.22);
  --line-strong: rgba(90, 255, 168, 0.42);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
  --max: 1240px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  background:
    linear-gradient(90deg, rgba(18, 247, 127, 0.028) 1px, transparent 1px),
    linear-gradient(rgba(18, 247, 127, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 247, 127, 0.065), transparent 340px),
    var(--bg);
  background-size: 104px 104px, 104px 104px, auto, auto;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(18, 247, 127, 0.14) 45%, transparent 46% 100%),
    linear-gradient(25deg, transparent 0 62%, rgba(18, 247, 127, 0.1) 63%, transparent 64% 100%);
  background-size: 520px 520px, 620px 620px;
  opacity: 0.2;
  pointer-events: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

section {
  scroll-margin-top: 92px;
}

.container {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 48px, 820px);
  text-align: center;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: #00140b;
  background: var(--green);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 7, 6, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand strong {
  color: var(--green);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 650;
}

.nav-links a:not(.nav-cta) {
  transition: color 160ms ease;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta {
  color: var(--green);
  min-height: 42px;
}

.nav-cta:hover {
  border-color: var(--green);
  background: rgba(18, 247, 127, 0.08);
  box-shadow: 0 0 32px rgba(18, 247, 127, 0.16);
}

.nav-cta svg,
.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button .whatsapp-icon {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: min(620px, calc(100vh - 72px));
  padding: 48px 0 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 20%, rgba(18, 247, 127, 0.055) 20.5%, transparent 21% 100%),
    linear-gradient(70deg, transparent 0 63%, rgba(18, 247, 127, 0.06) 63.5%, transparent 64% 100%);
  opacity: 0.64;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(430px, 1.2fr);
  align-items: center;
  gap: 48px;
}

.hero-copy,
.hero-showcase {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 3.05vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 span,
h2 span {
  color: var(--green);
}

.hero-text {
  max-width: 500px;
  margin-bottom: 24px;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.button-primary {
  color: #00140b;
  background: linear-gradient(180deg, #34ff96, #11e572);
  border-color: rgba(180, 255, 211, 0.9);
  box-shadow: 0 20px 48px rgba(18, 247, 127, 0.22);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 58px rgba(18, 247, 127, 0.34);
}

.button-secondary {
  color: var(--text);
  background: rgba(3, 7, 6, 0.34);
}

.button-secondary:hover {
  transform: translateY(-2px);
  border-color: var(--green);
  background: rgba(18, 247, 127, 0.08);
}

.button-large {
  min-width: 260px;
  min-height: 58px;
  font-size: 1.02rem;
}

.hero-note {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 470px;
  isolation: isolate;
  transform: translateY(-8px);
}

.hero-showcase::before {
  position: absolute;
  inset: 7% -4% 4% 4%;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 58% 38%, rgba(18, 247, 127, 0.2), transparent 34%),
    radial-gradient(circle at 58% 80%, rgba(18, 247, 127, 0.18), transparent 36%);
  filter: blur(18px);
  opacity: 0.9;
  pointer-events: none;
}

.hero-reference-image {
  display: block;
  width: min(100%, 840px);
  max-height: min(540px, calc(100vh - 148px));
  object-fit: contain;
  object-position: center right;
  filter:
    drop-shadow(0 32px 90px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 42px rgba(18, 247, 127, 0.16));
}

.hero-copy .eyebrow {
  margin-bottom: 14px;
  color: rgba(18, 247, 127, 0.74);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}
.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
  margin-bottom: 56px;
}

.proof-card,
.service-card,
.portfolio-card,
.differential-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(160deg, var(--panel), rgba(5, 12, 11, 0.72));
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.22);
}

.proof-card {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 16px;
  padding: 20px;
}

.proof-card svg,
.service-card svg {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.proof-card strong {
  display: block;
  color: var(--green);
  font-size: 1.6rem;
  line-height: 1.1;
}

.proof-card:nth-child(2) strong,
.proof-card:nth-child(3) strong {
  color: var(--text);
  font-size: 1.08rem;
}

.proof-card span {
  color: var(--muted-strong);
}

.section {
  padding: 68px 0;
}

.authority {
  padding-top: 48px;
  padding-bottom: 62px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(18, 247, 127, 0.035), transparent);
}

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

.section-heading h2,
.authority h2,
.final-cta h2 {
  margin-bottom: 16px;
  font-size: 2.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.authority p,
.final-cta p {
  color: var(--muted-strong);
  font-size: 1.04rem;
}

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

.portfolio-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.portfolio-card:hover,
.service-card:hover,
.differential-card:hover,
.proof-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.34), 0 0 36px rgba(18, 247, 127, 0.12);
}

.portfolio-media {
  position: relative;
  display: grid;
  min-height: 318px;
  overflow: hidden;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(120deg, rgba(18, 247, 127, 0.12), transparent 44%),
    rgba(255, 255, 255, 0.03);
}

.portfolio-media::before {
  position: absolute;
  inset: auto -20% -48% -20%;
  height: 78%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(18, 247, 127, 0.16), transparent);
  filter: blur(28px);
  opacity: 0.72;
}

.portfolio-media > * {
  position: relative;
  z-index: 1;
}

.desktop-preview {
  width: 100%;
  height: 248px;
  overflow: hidden;
  border: 1px solid rgba(168, 255, 205, 0.22);
  border-radius: 8px;
  background: #050908;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(18, 247, 127, 0.1);
}

.desktop-preview .asset-image {
  object-fit: contain;
  object-position: center;
}

.asset-image {
  display: block;
  width: 100%;
  height: 100%;
}

.asset-fallback {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: none;
  place-items: center;
  min-height: 100%;
  padding: 18px;
  color: var(--muted-strong);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(18, 247, 127, 0.1), transparent),
    rgba(3, 7, 6, 0.92);
}

.asset-fallback strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.asset-missing .asset-fallback {
  display: grid;
}

.vincelo-media .desktop-preview {
  width: 92%;
  height: 224px;
  background:
    linear-gradient(145deg, rgba(10, 22, 20, 0.82), rgba(2, 6, 5, 0.94));
}

.vincelo-media .desktop-preview .asset-image {
  object-position: left center;
}

.floating-preview {
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 116px;
  overflow: visible;
  aspect-ratio: 600 / 1420;
  transform: rotate(2deg);
  box-shadow: none;
}

.floating-preview .asset-image,
.granapet-media .phone-image {
  object-fit: contain;
  object-position: center;
}

.floating-preview .asset-image {
  filter:
    drop-shadow(0 22px 28px rgba(0, 0, 0, 0.48))
    drop-shadow(0 0 18px rgba(18, 247, 127, 0.12));
}

.phone-stack {
  position: relative;
  width: min(100%, 380px);
  height: 282px;
  margin: 0 auto;
}

.mini-phone {
  position: absolute;
  top: 26px;
  aspect-ratio: 720 / 1600;
  width: 106px;
  min-height: 0;
  overflow: visible;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.38),
    0 0 24px rgba(18, 247, 127, 0.08);
}

.main-phone {
  top: 0;
  left: 50%;
  z-index: 3;
  width: 142px;
  transform: translateX(-50%);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.54),
    0 0 34px rgba(18, 247, 127, 0.15);
}

.side-phone {
  z-index: 1;
  opacity: 0.82;
}

.side-left {
  left: 8%;
  transform: rotate(-6deg);
}

.side-right {
  right: 8%;
  transform: rotate(6deg);
}

.driveflow-media .desktop-preview {
  height: 270px;
  background:
    linear-gradient(145deg, rgba(9, 18, 29, 0.88), rgba(2, 6, 10, 0.96));
}

.portfolio-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.project-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.project-title-row h3 {
  margin-bottom: 2px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.project-title-row p {
  margin: 0;
  color: var(--green);
  font-size: 0.94rem;
  font-weight: 700;
}

.project-mark {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: #ff7113;
}

.project-mark img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-mark .mark-fallback {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  color: #ffffff;
  background: transparent;
  font-size: 1.35rem;
  font-weight: 900;
}

.project-mark img + .mark-fallback {
  opacity: 0;
}

.project-mark.asset-missing img {
  display: none;
}

.project-mark.asset-missing .mark-fallback {
  opacity: 1;
}

.granapet-mark {
  color: #083424;
  border-color: rgba(255, 211, 104, 0.32);
  background:
    radial-gradient(circle at 48% 38%, rgba(255, 211, 104, 0.16), transparent 42%),
    linear-gradient(145deg, rgba(23, 18, 9, 0.98), rgba(5, 10, 8, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 10px 24px rgba(255, 184, 45, 0.1);
}

.granapet-mark .mark-fallback {
  color: #ffd368;
}

.granapet-mark img {
  inset: 4px;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  border-radius: 6px;
  object-fit: contain;
  object-position: center;
}

.driveflow-mark {
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #0ab2ff, #105dff);
}

.driveflow-mark .mark-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  line-height: 1;
  text-align: center;
}

.portfolio-body > p {
  color: var(--muted-strong);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.tag-list span {
  padding: 7px 10px;
  color: var(--green-soft);
  border: 1px solid rgba(90, 255, 168, 0.25);
  border-radius: 8px;
  background: rgba(18, 247, 127, 0.05);
  font-size: 0.84rem;
  font-weight: 750;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-card {
  min-height: 222px;
  padding: 24px;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.service-card svg {
  margin-bottom: 22px;
}

.service-card h3,
.differential-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.service-card p,
.differential-card p,
.process-list p {
  margin-bottom: 0;
  color: var(--muted-strong);
}

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

.process-list::before {
  position: absolute;
  top: 24px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.process-list li {
  position: relative;
  min-height: 172px;
  padding: 0 8px;
  text-align: center;
}

.process-list span {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  place-items: center;
  color: #00140b;
  background: var(--green);
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(18, 247, 127, 0.24);
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
}

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

.differential-card {
  min-height: 188px;
  padding: 24px;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.differential-card::before {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  content: "";
  background:
    radial-gradient(circle at 50% 30%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 30% 68%, var(--green) 0 5px, transparent 6px),
    radial-gradient(circle at 70% 68%, var(--green) 0 5px, transparent 6px),
    rgba(18, 247, 127, 0.04);
  box-shadow: 0 0 28px rgba(18, 247, 127, 0.16);
}

.final-cta {
  padding: 46px 0 58px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  overflow: hidden;
  padding: 42px;
  background:
    linear-gradient(100deg, rgba(18, 247, 127, 0.18), transparent 38%),
    linear-gradient(160deg, rgba(12, 28, 25, 0.96), rgba(3, 7, 6, 0.9));
}

.cta-panel::after {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 360px;
  height: 160px;
  content: "";
  border: 1px solid rgba(18, 247, 127, 0.18);
  transform: rotate(-12deg);
}

.cta-panel > * {
  position: relative;
  z-index: 2;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 5, 5, 0.92);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  color: var(--muted);
  text-align: center;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 1120px) {
  .hero {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: 46px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero-showcase {
    justify-content: center;
    min-height: auto;
    transform: none;
  }

  .hero-reference-image {
    width: min(100%, 920px);
    max-height: 480px;
    object-position: center;
  }

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

  .portfolio-card:last-child {
    grid-column: span 2;
  }

  .process-list,
  .differentials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 820px) {
  .container,
  .narrow {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(5, 13, 12, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero {
    min-height: auto;
    padding-top: 74px;
    padding-bottom: 38px;
  }

  h1 {
    max-width: 620px;
    font-size: 2.22rem;
    line-height: 1.1;
  }

  .section-heading h2,
  .authority h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .proof,
  .portfolio-grid,
  .services-grid,
  .differentials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-reference-image {
    max-height: 420px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 1.25rem;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 28px;
  }

  .hero-inner,
  .hero-copy {
    width: min(100%, 358px);
    max-width: 358px;
  }

  .hero-inner {
    margin-right: auto;
    margin-left: 16px;
  }

  h1 {
    font-size: 1.68rem;
    overflow-wrap: anywhere;
  }

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

  .hero-text {
    margin-bottom: 22px;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .hero-actions .button {
    width: 100%;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .hero-note {
    display: none;
  }

  .hero-showcase {
    min-height: auto;
    margin-top: 8px;
  }

  .hero-reference-image {
    width: 100%;
    max-height: 260px;
  }

  .proof {
    margin-top: 18px;
  }

  .portfolio-media {
    min-height: 270px;
    padding: 14px;
  }

  .desktop-preview {
    height: 196px;
  }

  .vincelo-media .desktop-preview {
    width: 90%;
    height: 188px;
  }

  .driveflow-media .desktop-preview {
    height: 204px;
  }

  .floating-preview {
    right: 14px;
    bottom: 16px;
    width: 86px;
  }

  .phone-stack {
    width: min(100%, 300px);
    height: 232px;
  }

  .mini-phone {
    top: 22px;
    width: 86px;
  }

  .main-phone {
    top: 0;
    width: 108px;
  }

  .side-left {
    left: 2%;
  }

  .side-right {
    right: 2%;
  }

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

  .process-list li {
    min-height: 0;
    padding: 0 18px 22px;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .button-large {
    width: 100%;
    min-width: 0;
  }
}

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