:root {
  --color-navy: #101936;
  --color-ink: #24304f;
  --color-muted: #6b748d;
  --color-soft: #f5f7ff;
  --color-line: #e7eaff;
  --color-white: #ffffff;
  --color-indigo: #6268f5;
  --color-purple: #8a62ff;
  --color-cyan: #5fd4ff;
  --color-mint: #70e0c5;
  --shadow-soft: 0 28px 80px rgba(48, 57, 133, 0.16);
  --shadow-card: 0 22px 60px rgba(44, 52, 112, 0.13);
  --radius-small: 8px;
  --radius-pill: 999px;
  --max-width: 1208px;
  --header-height: 96px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
}

.nav {
  min-height: var(--header-height);
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--color-navy);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #151f42, #6268f5 64%, #8a62ff);
  box-shadow: 0 14px 30px rgba(98, 104, 245, 0.26);
}

.brand-mark span {
  width: 18px;
  height: 18px;
  border: 3px solid var(--color-white);
  border-left-color: transparent;
  border-bottom-color: rgba(255, 255, 255, 0.62);
  transform: rotate(-45deg);
}

.brand-name {
  font-size: 1.24rem;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.nav-links a,
.email-link {
  color: #38425e;
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.email-link:hover,
.email-link:focus-visible {
  color: var(--color-indigo);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  color: var(--color-white);
  background: var(--color-navy);
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(16, 25, 54, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  background: #19264d;
  box-shadow: 0 20px 40px rgba(16, 25, 54, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--color-navy);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(4) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  width: min(calc(100% - 40px), var(--max-width));
  min-height: calc(100vh - var(--header-height));
  margin: 0 auto;
  padding: 48px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(470px, 1.06fr);
  align-items: center;
  gap: 42px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #6268f5;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow span {
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-indigo), var(--color-cyan));
  border-radius: var(--radius-pill);
}

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

h1 {
  margin-bottom: 24px;
  color: var(--color-navy);
  font-size: clamp(3.8rem, 6.05vw, 5.35rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(94deg, #858cff 0%, #656cf3 36%, #9a78ff 68%, #63cfff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 565px;
  margin-bottom: 38px;
  color: var(--color-muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

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

.button,
.watch-link {
  min-height: 58px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  color: var(--color-white);
  background: var(--color-navy);
  box-shadow: 0 20px 44px rgba(16, 25, 54, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-3px);
  background: #182449;
  box-shadow: 0 22px 48px rgba(16, 25, 54, 0.24);
}

.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--color-navy);
  font-weight: 800;
  line-height: 1.2;
}

.watch-link strong,
.watch-link small {
  display: block;
}

.watch-link small {
  margin-top: 3px;
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.play-icon {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--color-white);
  border: 2px solid #1a2444;
  box-shadow: 0 16px 38px rgba(66, 75, 154, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.play-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 52%;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid var(--color-navy);
  transform: translate(-50%, -50%);
}

.watch-link:hover .play-icon,
.watch-link:focus-visible .play-icon {
  transform: translateY(-3px);
  border-color: var(--color-indigo);
  box-shadow: 0 20px 42px rgba(66, 75, 154, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: grid;
  place-items: center;
}

.orb {
  position: absolute;
  width: min(44vw, 575px);
  height: min(44vw, 575px);
  min-width: 420px;
  min-height: 420px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.86) 0 7%, transparent 8%),
    radial-gradient(circle at 72% 72%, rgba(139, 98, 255, 0.2), transparent 38%),
    linear-gradient(150deg, #efedff 0%, #dfe9ff 45%, #b4c8ff 100%);
  box-shadow: inset -36px -40px 80px rgba(97, 104, 245, 0.16), 0 38px 95px rgba(97, 104, 245, 0.14);
  transform: translate(24px, -10px);
}

.phone {
  position: relative;
  z-index: 4;
  width: 338px;
  height: 676px;
  padding: 14px;
  border-radius: 48px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(145deg, #0b1024, #192547);
  box-shadow:
    0 42px 96px rgba(16, 25, 54, 0.31),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: rotate(-2deg) translateX(24px);
}

.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 41px;
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  top: 15px;
  left: 50%;
  z-index: 5;
  width: 96px;
  height: 20px;
  background: #111832;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  padding: 52px 20px 22px;
  border-radius: 35px;
  background:
    radial-gradient(circle at 78% 8%, rgba(95, 212, 255, 0.3), transparent 34%),
    radial-gradient(circle at 18% 16%, rgba(132, 140, 255, 0.23), transparent 30%),
    linear-gradient(180deg, #fbfcff 0%, #f0f3ff 100%);
  overflow: hidden;
}

.app-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.mini-label,
.progress-card span,
.metric-grid span,
.floating-card span {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.app-topbar strong {
  display: block;
  margin-top: 2px;
  color: var(--color-navy);
  font-size: 1.08rem;
  line-height: 1.18;
}

.status-dot {
  width: 13px;
  height: 13px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--color-mint);
  box-shadow: 0 0 0 6px rgba(112, 224, 197, 0.18);
}

.screen-card,
.metric-grid > div,
.stage-list,
.release-strip {
  border: 1px solid rgba(98, 104, 245, 0.11);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 42px rgba(87, 96, 170, 0.12);
  backdrop-filter: blur(14px);
}

.progress-card {
  padding: 18px;
  border-radius: 8px;
}

.screen-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.screen-card-head strong {
  display: block;
  max-width: 130px;
  color: var(--color-navy);
  font-size: 1.02rem;
  line-height: 1.18;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: var(--radius-pill);
  background: #e2e7ff;
}

.progress-track span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-indigo), var(--color-cyan));
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 11px;
}

.progress-meta span {
  color: #778098;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.stage-list {
  display: grid;
  gap: 10px;
  margin: 14px 0;
  padding: 14px;
  border-radius: 8px;
}

.stage-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
}

.stage-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(98, 104, 245, 0.16), rgba(95, 212, 255, 0.22));
}

.stage-row:nth-child(2) .stage-icon {
  background: linear-gradient(135deg, rgba(98, 104, 245, 0.95), rgba(95, 212, 255, 0.92));
}

.stage-row:nth-child(3) .stage-icon {
  background: linear-gradient(135deg, rgba(112, 224, 197, 0.25), rgba(138, 98, 255, 0.14));
}

.stage-row strong,
.release-strip strong {
  display: block;
  color: var(--color-navy);
  font-size: 0.88rem;
  line-height: 1.15;
}

.stage-row p,
.release-strip p {
  margin: 3px 0 0;
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.25;
}

.stage-row em {
  color: #6d75ff;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 14px;
}

.metric-grid > div {
  min-height: 84px;
  padding: 15px 14px;
  border-radius: 8px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--color-navy);
  font-size: 1.05rem;
}

.release-strip {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 8px;
}

.release-strip > span {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    linear-gradient(var(--color-white), var(--color-white)) center / 11px 11px no-repeat,
    conic-gradient(var(--color-indigo) 0 78%, #dfe5ff 0);
}

.floating-card {
  position: absolute;
  z-index: 6;
  min-width: 176px;
  padding: 17px 19px;
  border: 1px solid rgba(98, 104, 245, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(16px);
}

.floating-card strong {
  display: block;
  margin-top: 4px;
  color: var(--color-navy);
  font-size: 0.98rem;
}

.floating-card-left {
  left: -2%;
  top: 31%;
}

.floating-card-right {
  right: -7%;
  bottom: 21%;
}

.sparkle,
.sparkle::before,
.sparkle::after {
  position: absolute;
  display: block;
  background: var(--color-indigo);
  border-radius: var(--radius-pill);
}

.sparkle {
  z-index: 3;
  width: 24px;
  height: 4px;
}

.sparkle::before,
.sparkle::after {
  content: "";
  inset: 0;
}

.sparkle::before {
  transform: rotate(60deg);
}

.sparkle::after {
  transform: rotate(-60deg);
}

.sparkle-one {
  top: 15%;
  right: 11%;
}

.sparkle-two {
  left: 5%;
  bottom: 19%;
  width: 18px;
  height: 3px;
  background: var(--color-cyan);
}

.sparkle-three {
  top: 20%;
  right: 2%;
  width: 15px;
  height: 3px;
  background: var(--color-mint);
}

.wave {
  position: absolute;
  z-index: 2;
  width: 82px;
  height: 26px;
  border-top: 4px solid rgba(98, 104, 245, 0.38);
  border-radius: 50%;
}

.wave::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: 26px;
  border-top: 4px solid rgba(95, 212, 255, 0.35);
  border-radius: 50%;
}

.wave-one {
  left: -1%;
  top: 59%;
  transform: rotate(4deg);
}

.wave-two {
  right: 3%;
  top: 34%;
  transform: rotate(20deg);
}

.services {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 26px 0 82px;
}

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

.section-heading h2 {
  margin-bottom: 0;
  color: var(--color-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0;
}

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

.service-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  background: var(--color-white);
  box-shadow: 0 18px 48px rgba(46, 57, 120, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(98, 104, 245, 0.24);
  box-shadow: 0 26px 58px rgba(46, 57, 120, 0.12);
}

.card-icon {
  position: relative;
  display: block;
  width: 52px;
  height: 52px;
  margin-bottom: 24px;
  border-radius: 8px;
  background: var(--color-soft);
}

.strategy-icon::before,
.apps-icon::before,
.launch-icon::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 8px;
}

.strategy-icon::before {
  border: 3px solid var(--color-indigo);
  border-right-color: var(--color-cyan);
}

.apps-icon::before {
  background:
    linear-gradient(var(--color-indigo), var(--color-indigo)) 0 0 / 10px 10px no-repeat,
    linear-gradient(var(--color-cyan), var(--color-cyan)) 100% 0 / 10px 10px no-repeat,
    linear-gradient(var(--color-purple), var(--color-purple)) 0 100% / 10px 10px no-repeat,
    linear-gradient(var(--color-mint), var(--color-mint)) 100% 100% / 10px 10px no-repeat;
}

.launch-icon::before {
  width: 0;
  height: 0;
  inset: auto;
  top: 13px;
  left: 17px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 26px solid var(--color-indigo);
  border-radius: 3px;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--color-navy);
  font-size: 1.24rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--color-muted);
}

.footer {
  width: min(calc(100% - 40px), var(--max-width));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--color-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
  color: var(--color-navy);
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--color-indigo);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 2px;
}

:focus-visible {
  outline: 3px solid rgba(95, 212, 255, 0.7);
  outline-offset: 4px;
}

@media (max-width: 1060px) {
  .email-link {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(0, 0.98fr) minmax(350px, 0.9fr);
    gap: 30px;
  }

  .hero-visual {
    min-height: 600px;
  }

  .phone {
    width: 292px;
    height: 590px;
    transform: rotate(-2deg) translateX(8px);
  }

  .floating-card-left {
    left: -5%;
  }

  .floating-card-right {
    right: -8%;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: sticky;
    top: 0;
    box-shadow: 0 10px 30px rgba(42, 51, 110, 0.06);
  }

  .nav {
    min-height: 76px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 22px;
    padding: 24px;
    border: 1px solid var(--color-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-links,
  .nav-actions {
    width: 100%;
    display: grid;
    justify-items: start;
    gap: 16px;
  }

  .email-link {
    display: inline;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 64px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    min-height: 650px;
  }

  .orb {
    width: min(78vw, 500px);
    height: min(78vw, 500px);
    min-width: 330px;
    min-height: 330px;
    transform: translate(0, -6px);
  }

  .phone {
    width: 318px;
    height: 636px;
    transform: rotate(-1deg);
  }

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

  .service-card {
    min-height: auto;
  }

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

@media (max-width: 560px) {
  :root {
    --header-height: 76px;
  }

  .nav,
  .hero,
  .services,
  .footer {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .brand-name {
    font-size: 1.08rem;
  }

  h1 {
    font-size: clamp(2.65rem, 13.5vw, 4.1rem);
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .button,
  .watch-link {
    min-height: 54px;
  }

  .button {
    width: 100%;
  }

  .play-icon {
    width: 54px;
    height: 54px;
  }

  .hero-visual {
    min-height: 535px;
    overflow: visible;
  }

  .phone {
    width: 238px;
    height: 486px;
    padding: 13px;
    border-radius: 36px;
    transform: rotate(-2deg);
  }

  .orb {
    min-width: 292px;
    min-height: 292px;
  }

  .phone-screen {
    padding: 38px 13px 14px;
    border-radius: 26px;
  }

  .app-topbar strong,
  .screen-card-head strong,
  .metric-grid strong {
    font-size: 0.92rem;
  }

  .app-topbar {
    margin-bottom: 12px;
  }

  .progress-card {
    padding: 13px;
  }

  .screen-card-head {
    margin-bottom: 10px;
  }

  .progress-track {
    height: 8px;
  }

  .progress-meta {
    margin-top: 8px;
  }

  .stage-list {
    gap: 7px;
    margin: 10px 0;
    padding: 10px;
  }

  .stage-row {
    grid-template-columns: 25px 1fr auto;
    gap: 7px;
  }

  .stage-icon {
    width: 23px;
    height: 23px;
    border-radius: 7px;
  }

  .stage-row strong,
  .release-strip strong {
    font-size: 0.76rem;
  }

  .stage-row p,
  .release-strip p {
    font-size: 0.64rem;
  }

  .stage-row em {
    font-size: 0.57rem;
  }

  .metric-grid {
    gap: 9px;
  }

  .metric-grid > div {
    min-height: 68px;
    padding: 11px 10px;
  }

  .release-strip {
    grid-template-columns: 30px 1fr;
    gap: 9px;
    padding: 10px;
  }

  .release-strip > span {
    width: 30px;
    height: 30px;
  }

  .floating-card {
    min-width: 132px;
    padding: 12px 13px;
  }

  .floating-card strong {
    font-size: 0.82rem;
  }

  .floating-card span,
  .mini-label,
  .progress-card span,
  .metric-grid span {
    font-size: 0.62rem;
  }

  .floating-card-left {
    left: -1px;
    top: 24%;
  }

  .floating-card-right {
    right: -1px;
    bottom: 13%;
  }

  .wave-one {
    left: -8%;
  }

  .wave-two {
    right: -10%;
  }

  .services {
    padding-bottom: 58px;
  }

  .service-card {
    padding: 24px;
  }
}

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