:root {
  --ink: #121a32;
  --text: #26324d;
  --muted: #68758f;
  --line: #e9eef7;
  --blue: #62bef6;
  --blue-deep: #337ff0;
  --pink: #ff5f91;
  --pink-deep: #ec4077;
  --soft: #f6faff;
  --card: #ffffff;
  --shadow: 0 24px 68px rgba(43, 86, 143, .13);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-reveal: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
  background: #fff;
}

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

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

.page-shell {
  overflow: clip;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--blue-deep);
  outline-offset: 5px;
}

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

:where(h1, h2, h3, p) {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 0 clamp(22px, 6vw, 86px);
  border-bottom: 1px solid rgba(232, 238, 247, .8);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(18px);
  transition: box-shadow .4s var(--ease-out), background .4s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(26, 45, 70, .06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 12px);
  grid-template-rows: repeat(2, 12px);
  gap: 4px;
}

.brand-mark i {
  display: block;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: 0 8px 18px rgba(98, 190, 246, .22);
}

.brand-mark i:first-child,
.brand-mark i:last-child {
  background: var(--pink);
  box-shadow: 0 8px 18px rgba(255, 95, 145, .24);
}

.brand-name {
  color: var(--pink);
  font-size: 22px;
  line-height: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 46px);
  color: #2b354d;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  position: relative;
  padding: 27px 0 24px;
  transition: color .24s ease;
}

.nav a::after {
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 0;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: var(--pink);
  transform: translateX(-50%);
  transition: width .24s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--pink);
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.header-cta,
.primary-btn,
.video-btn,
.learn-more,
.back-top,
.menu-toggle {
  font: inherit;
}

.header-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--pink), #ff7fa8);
  box-shadow: 0 16px 32px rgba(255, 95, 145, .27);
  cursor: pointer;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.header-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(255, 95, 145, .32);
  filter: saturate(1.06);
}

.primary-btn.small {
  min-height: 44px;
  padding: 0 20px;
  font-size: 14px;
}

.video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 23px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #26324d;
  font-weight: 800;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 14px 34px rgba(31, 74, 128, .08);
  transition: transform .24s ease, border-color .24s ease;
}

.video-btn i {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: #fff;
  font-style: normal;
  font-size: 12px;
  background: var(--blue);
}

.video-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(98, 190, 246, .55);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f2f7ff;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  content: "";
  border-radius: 999px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(700px, calc(100svh - 180px));
  padding: 56px clamp(22px, 6vw, 86px) 64px;
}

.hero-inner,
.section,
.client-inner,
.metric-band,
.footer-inner,
.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  align-items: center;
  gap: 36px;
}

.hero-copy h1 {
  margin: 0;
  color: #15213b;
  font-size: 52px;
  line-height: 1.32;
  font-weight: 900;
}

.hero-copy h1 .accent {
  color: var(--pink);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line > span {
  display: block;
}

.lead {
  margin: 28px 0 0;
  max-width: 620px;
  color: #53627c;
  font-size: 19px;
  line-height: 1.85;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  perspective: 1000px;
  translate: 0 var(--scroll-y, 0px);
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .7s var(--ease-out);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  min-width: 142px;
  border: 1px solid rgba(255, 255, 255, .85);
  border-radius: 8px;
  color: #26324d;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 48px rgba(36, 83, 138, .13);
  backdrop-filter: blur(12px);
  transition: transform .5s var(--ease-out), box-shadow .5s ease;
}

.floating-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 42px rgba(36, 83, 138, .18);
}

.floating-card strong {
  flex: 1;
  font-size: 13px;
  font-weight: 900;
}

.floating-card b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #fff;
  background: var(--blue);
}

.card-design {
  top: 0;
  left: 2%;
}

.card-video {
  top: auto;
  bottom: 0;
  right: 0;
}

.card-video b {
  background: var(--pink);
}

.card-develop {
  left: 9%;
  bottom: 0;
}

.client-strip {
  padding: 28px clamp(22px, 6vw, 86px) 12px;
}

.client-inner {
  padding: 28px 0;
  border-block: 1px solid var(--line);
}

.client-inner p {
  margin: 0 0 20px;
  color: #8a96aa;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
}

.logos {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.logos img {
  width: 100%;
  height: 52px;
  padding: 11px 14px;
  border: 0;
  background: #fff;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .65;
  transition: transform .24s ease, box-shadow .24s ease, filter .24s ease;
}

.logos img:hover {
  transform: translateY(-4px);
  filter: saturate(1.1);
  opacity: 1;
}

.section {
  width: min(1180px, calc(100% - 80px));
  padding: clamp(74px, 9vw, 112px) 0;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 14px;
  font-weight: 900;
}

.section-title h2,
.section-head h2,
.cta-panel h2 {
  margin: 0;
  color: #17233d;
  font-size: 40px;
  line-height: 1.25;
  font-weight: 900;
}

.section-title > p:last-child,
.section-head p,
.cta-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.service-card,
.case-card,
.about-copy,
.about-list,
.cta-panel {
  border: 1px solid rgba(232, 238, 247, .9);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 310px;
  padding: 34px 30px;
  border-radius: 8px;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform .65s var(--ease-out), box-shadow .4s ease, border-color .4s ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0;
  border-top: 3px solid var(--blue);
  transition: opacity .25s ease;
}

.service-card:hover {
  border-color: rgba(98, 190, 246, .35);
  box-shadow: 0 30px 76px rgba(43, 86, 143, .18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  border-radius: 20px;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), #87d4ff);
  box-shadow: 0 16px 32px rgba(98, 190, 246, .28);
}

.service-icon.icon-pink {
  background: linear-gradient(135deg, var(--pink), #ff91b5);
  box-shadow: 0 16px 32px rgba(255, 95, 145, .28);
}

.service-card h3,
.case-card h3,
.about-list h3 {
  margin: 0 0 14px;
  color: #17233d;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 900;
}

.service-card p,
.case-card p,
.about-copy p,
.about-list p,
.footer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  margin-top: 22px;
  color: var(--blue-deep);
  font-weight: 900;
}

.learn-more.pink,
.case-card:nth-child(2) .learn-more {
  color: var(--pink);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 48px clamp(24px, 5vw, 62px);
  width: 100%;
  border-radius: 0;
  color: #fff;
  background: linear-gradient(120deg, #55c4f5 0%, #7c9dff 48%, #ff69a0 100%);
  box-shadow: 0 28px 70px rgba(98, 132, 235, .25);
}

.metric-band div {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.metric-band i {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  font-style: normal;
  background: rgba(255, 255, 255, .18);
}

.metric-band strong {
  font-size: 46px;
  line-height: 1;
  font-weight: 900;
}

.metric-band span {
  font-weight: 800;
  opacity: .92;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

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

.case-card {
  overflow: hidden;
  border-radius: 8px;
  transform-style: preserve-3d;
  transition: transform .25s ease, box-shadow .25s ease;
}

.case-card:hover {
  box-shadow: 0 30px 78px rgba(43, 86, 143, .18);
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #eef5ff;
  height: auto;
  transition: transform .9s var(--ease-out);
}

.case-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.case-media:hover img,
.case-media:focus-visible img {
  transform: scale(1.045);
}

.case-open {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  font-size: 24px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px #0002;
  transition: transform .45s var(--ease-out), background .3s ease;
}

.case-media:hover .case-open,
.case-media:focus-visible .case-open {
  transform: rotate(45deg);
  background: #e2f4ff;
}

.case-body {
  padding: 24px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tags span {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 95, 145, .1);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.about-copy,
.about-list {
  padding: 12px 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.about-copy p + p {
  margin-top: 18px;
}

.about-list {
  display: grid;
  gap: 18px;
}

.about-list div {
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.about-list h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cta-section {
  padding-top: 32px;
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(260px, 390px);
  align-items: center;
  gap: 32px;
  padding: clamp(34px, 6vw, 60px);
  overflow: hidden;
  border-radius: 0;
  border: 0;
  border-top: 1px solid var(--line);
  padding-inline: 0;
  box-shadow: none;
  background: none;
}

.cta-panel .primary-btn {
  margin-top: 28px;
}

.cta-panel img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(0 22px 34px rgba(35, 68, 112, .2));
}

.footer {
  margin-top: 40px;
  padding: 58px clamp(22px, 6vw, 86px) 24px;
  color: rgba(255, 255, 255, .78);
  background: #10182b;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.6fr) repeat(3, 1fr);
  gap: 36px;
}

.footer .brand-name,
.footer h3 {
  color: #fff;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.footer p {
  color: rgba(255, 255, 255, .68);
}

.footer a:not(.brand) {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, .68);
  transition: color .2s ease;
}

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

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

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

.socials a {
  display: grid !important;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .52);
  font-size: 14px;
}

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), var(--pink));
  box-shadow: 0 18px 36px rgba(66, 115, 180, .25);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .24s ease, transform .24s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
}

.motion-ready .reveal:not(.hero-copy):not(.hero-visual) {
  opacity: 0;
  translate: 0 20px;
  transition: opacity .85s var(--ease-reveal) var(--reveal-delay, 0ms), translate .85s var(--ease-reveal) var(--reveal-delay, 0ms), scale .85s var(--ease-reveal) var(--reveal-delay, 0ms), transform .65s var(--ease-out), box-shadow .4s ease;
}

.motion-ready :is(.service-card, .case-card).reveal {
  scale: .95;
}

.motion-ready .reveal.is-visible:not(.hero-copy):not(.hero-visual) {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.motion-ready .hero-line > span {
  animation: enter-up 1s var(--ease-out) both;
}

.motion-ready .hero-line:nth-child(2) > span {
  animation-delay: .08s;
}

.motion-ready .hero-copy .lead {
  animation: enter-up 1s var(--ease-out) .5s both;
}

.motion-ready .hero-actions {
  animation: enter-up 1s var(--ease-out) .7s both;
}

.motion-ready .hero-image-wrap {
  animation: media-in 1.1s var(--ease-out) .15s both;
}

.motion-ready .floating-card {
  animation: enter-up .85s var(--ease-reveal) .5s both;
}

.motion-ready .card-video { animation-delay: .65s; }
.motion-ready .card-develop { animation-delay: .8s; }

.primary-btn > span, .header-cta > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
  transition: transform .45s var(--ease-out), background .3s ease;
}

:is(.primary-btn, .header-cta):hover > span {
  transform: translateX(3px) scale(1.1);
  background: rgba(255, 255, 255, .35);
}

@keyframes enter-up {
  from { opacity: 0; translate: 0 20px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes media-in {
  from { opacity: 0; scale: .95; }
  to { opacity: 1; scale: 1; }
}

@media (max-width: 1280px) {
  .hero-copy h1 { font-size: 44px; }
  .hero-visual { min-height: 350px; }
}

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

  .nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: calc(100% + 8px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - 104px);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    translate: 0 -8px;
    pointer-events: none;
    transition: opacity .3s ease, translate .4s var(--ease-out), visibility .3s;
  }

  .nav.is-open {
    visibility: visible;
    opacity: 1;
    translate: 0 0;
    pointer-events: auto;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav a::after {
    display: none;
  }

  .nav a:hover,
  .nav a.active {
    background: #fff5f9;
  }

  .menu-toggle {
    display: block;
    position: relative;
    grid-column: -2;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    position: absolute;
    left: 12px;
    top: 20px;
    margin: 0;
    transition: transform .3s var(--ease-out), opacity .2s ease;
  }

  .menu-toggle::before { transform: translateY(-6px); }
  .menu-toggle::after { transform: translateY(6px); }
  .menu-toggle[aria-expanded="true"] span { opacity: 0; }
  .menu-toggle[aria-expanded="true"]::before { transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"]::after { transform: rotate(-45deg); }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }

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

  .hero-visual {
    min-height: 330px;
    width: min(600px, 100%);
    margin-inline: auto;
    translate: none;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .lead {
    margin-inline: auto;
  }

  .logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-grid,
  .case-grid,
  .about-layout,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
    padding: 0 16px;
    gap: 12px;
  }

  .brand-name {
    font-size: 19px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 32px 18px 24px;
  }

  .hero-inner {
    gap: 20px;
  }

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

  .section-title h2, .section-head h2, .cta-panel h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
    margin-top: 18px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
  }

  .hero-actions a {
    padding-inline: 10px;
    gap: 8px;
    font-size: 14px;
  }

  .primary-btn,
  .video-btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-image-wrap {
    width: 100%;
  }

  .floating-card {
    display: none;
    min-width: 106px;
    padding: 8px 10px;
    gap: 8px;
    border-radius: 8px;
  }

  .floating-card strong {
    font-size: 12px;
  }

  .floating-card b {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    font-size: 12px;
  }

  .card-design {
    top: 0;
    left: 0;
  }

  .card-video {
    right: 0;
  }

  .card-develop {
    left: 2%;
    bottom: 0;
  }

  .client-strip {
    padding: 22px 18px 0;
  }

  .client-inner {
    padding: 22px 0;
  }

  .logos {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }

  .logos img {
    padding: 6px 2px;
    height: 40px;
  }

  .section {
    width: calc(100% - 36px);
    padding: 68px 0;
  }

  .service-grid,
  .case-grid,
  .about-layout,
  .metric-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .metric-band {
    width: 100%;
    padding: 34px 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .section-head {
    display: block;
  }

  .section-head .primary-btn {
    margin-top: 22px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }

  .cta-panel img {
    max-height: 220px;
  }

  .footer {
    padding: 48px 18px 22px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 { font-size: 30px; }
  .service-card { padding: 28px 22px; }
}

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

  .reveal, .motion-ready .reveal, .hero-visual, .hero-line > span, .floating-card {
    opacity: 1 !important;
    translate: none !important;
    scale: 1 !important;
    transform: none !important;
  }
}
