:root {
  --page: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #eef1ff;
  --ink: #171d36;
  --muted: #68708a;
  --line: #e1e5f0;
  --primary: #525ee7;
  --primary-dark: #293cad;
  --cyan: #28b8d3;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(53, 66, 152, 0.14);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

svg {
  display: block;
}

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--primary-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(225, 229, 240, 0.8);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(140deg, var(--primary), var(--cyan));
  border-radius: 50%;
  font-size: 19px;
  font-weight: 700;
  box-shadow: 0 9px 24px rgba(82, 94, 231, 0.25);
}

.brand-name {
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.15;
}

.brand-name small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 31px;
  color: #4d5367;
  font-size: 14px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 28px;
  transition: color 0.2s ease;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav > a:hover,
.main-nav > a:focus-visible {
  color: var(--primary);
}

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

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding-inline: 20px;
  color: var(--white);
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(82, 94, 231, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(82, 94, 231, 0.28);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 90px;
  background: var(--surface);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(82, 94, 231, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(82, 94, 231, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 8%, black 65%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  width: 500px;
  height: 500px;
  right: -140px;
  top: -160px;
  background: rgba(82, 94, 231, 0.12);
}

.hero-glow-two {
  width: 260px;
  height: 260px;
  right: 35%;
  bottom: -180px;
  background: rgba(40, 184, 211, 0.1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.hero h1 {
  max-width: 680px;
  margin: 20px 0 23px;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.hero h1 span {
  display: block;
  color: var(--primary);
}

.hero-lead {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 33px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 28px rgba(82, 94, 231, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 17px 34px rgba(82, 94, 231, 0.32);
}

.button-secondary {
  background: var(--surface);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--primary);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin: 42px 0 0;
}

.hero-stats div {
  min-width: 90px;
}

.hero-stats dt {
  color: var(--primary-dark);
  font-size: 24px;
  font-weight: 700;
}

.hero-stats dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.growth-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  overflow: visible;
}

.visual-ring {
  position: absolute;
  border: 1px solid rgba(82, 94, 231, 0.14);
  border-radius: 50%;
}

.visual-ring-one {
  width: 465px;
  height: 465px;
}

.visual-ring-two {
  width: 340px;
  height: 340px;
  border-style: dashed;
}

.dashboard {
  position: relative;
  z-index: 2;
  width: min(440px, 88%);
  padding: 27px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(82, 94, 231, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.live-dot i {
  width: 7px;
  height: 7px;
  background: #24bf82;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(36, 191, 130, 0.12);
}

.bar-chart {
  height: 210px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  margin: 24px 0 20px;
  padding: 10px 8px 17px;
  border-bottom: 1px solid var(--line);
}

.bar-chart i {
  height: var(--bar-height);
  flex: 1;
  background: linear-gradient(180deg, var(--cyan), var(--primary));
  border-radius: 10px 10px 3px 3px;
}

.bar-chart i:nth-child(1) { opacity: 0.48; }
.bar-chart i:nth-child(2) { opacity: 0.58; }
.bar-chart i:nth-child(3) { opacity: 0.68; }
.bar-chart i:nth-child(4) { opacity: 0.78; }
.bar-chart i:nth-child(5) { opacity: 0.88; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.dashboard-stats div {
  padding: 13px;
  background: var(--surface-soft);
  border-radius: 13px;
}

.dashboard-stats strong,
.dashboard-stats span {
  display: block;
}

.dashboard-stats strong {
  font-size: 18px;
}

.dashboard-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.dashboard-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.floating-label {
  position: absolute;
  z-index: 3;
  min-width: 128px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid rgba(82, 94, 231, 0.12);
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(53, 66, 152, 0.15);
}

.floating-label span,
.floating-label strong {
  display: block;
}

.floating-label span {
  color: var(--muted);
  font-size: 10px;
}

.floating-label strong {
  margin-top: 3px;
  color: var(--primary);
  font-size: 19px;
}

.label-top {
  top: 150px;
  right: 20px;
}

.label-bottom {
  bottom: -16px;
  left: -32px;
}

.audience-strip {
  background: var(--primary-dark);
  color: var(--white);
}

.audience-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.audience-inner > span {
  flex: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.72;
}

.audience-inner ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 17px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
}

.audience-inner li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 10px;
  vertical-align: 3px;
  background: #8ce4f0;
  border-radius: 50%;
}

.section {
  padding: 100px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 46px;
  margin-bottom: 42px;
}

.section-heading h2,
.loop-copy h2,
.cta-box h2 {
  margin: 13px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.section-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

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

.service-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 29px 25px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.service-card:focus-visible {
  border-color: rgba(82, 94, 231, 0.35);
  box-shadow: 0 20px 48px rgba(53, 66, 152, 0.12);
  transform: translateY(-5px);
}

.service-index {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-top: 25px;
  color: var(--primary);
  background: var(--surface-soft);
  border-radius: 14px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 24px 0 12px;
  font-size: 21px;
}

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

.card-link {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.card-link b {
  transition: transform 0.2s ease;
}

.service-card:hover .card-link b,
.service-card:focus-visible .card-link b {
  transform: translateX(4px);
}

.loop-section {
  overflow: hidden;
  color: var(--white);
  background: var(--primary-dark);
}

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

.loop-copy .eyebrow {
  color: #a9e8f3;
}

.loop-copy > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 28px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.loop-copy .text-link {
  color: var(--white);
}

.text-link span {
  transition: transform 0.2s ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.loop-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.loop-steps li {
  min-height: 150px;
  display: flex;
  align-items: flex-start;
  gap: 17px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
}

.loop-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: none;
  color: var(--primary-dark);
  background: #a9e8f3;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.loop-steps strong,
.loop-steps small {
  display: block;
}

.loop-steps strong {
  margin-top: 3px;
  font-size: 18px;
}

.loop-steps small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.6;
}

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

.content-section .section-heading .text-link {
  margin: 0 0 4px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.875fr 0.875fr;
  gap: 16px;
}

.content-card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--surface-soft);
  border: 1px solid transparent;
  border-radius: 24px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.content-card:hover,
.content-card:focus-visible {
  border-color: rgba(82, 94, 231, 0.25);
  transform: translateY(-5px);
}

.content-card > span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.content-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  line-height: 1.48;
}

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

.content-card b {
  display: block;
  margin-top: 24px;
  color: var(--primary);
  font-size: 13px;
}

.content-card-featured {
  color: var(--white);
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
}

.content-card-featured > span,
.content-card-featured b {
  color: #bceef5;
}

.content-card-featured p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-section {
  padding: 90px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 58px 64px;
  color: var(--white);
  background: linear-gradient(135deg, #273bad, #5965eb);
  border-radius: 30px;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -115px;
  top: -140px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.eyebrow-light {
  color: #bceef5;
}

.cta-box h2 {
  max-width: 650px;
}

.cta-box > div:first-child > p:last-child {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
}

.cta-actions {
  justify-content: flex-end;
}

.button-light {
  color: var(--primary-dark);
  background: var(--white);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #151a2f;
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 58px;
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-brand p {
  margin: 20px 0 0;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 14px;
}

.footer-links a {
  font-size: 12px;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1060px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .content-card-featured {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .growth-visual {
    width: min(640px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 70px;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 21;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 24px 28px;
    overflow-y: auto;
    background: var(--surface);
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(30, 38, 88, 0.12);
  }

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

  .main-nav > a:not(.nav-cta) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 18px;
  }

  .hero {
    padding-top: 75px;
  }

  .growth-visual {
    min-height: 450px;
  }

  .audience-inner {
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-block: 16px;
    gap: 16px;
  }

  .audience-inner::-webkit-scrollbar {
    display: none;
  }

  .audience-inner ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
  }

  .audience-inner > span {
    flex: none;
    white-space: nowrap;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .loop-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 50px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 30px, var(--container));
  }

  .brand-mark {
    width: 35px;
    height: 35px;
  }

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

  .hero {
    padding: 60px 0 48px;
  }

  .hero h1 {
    font-size: clamp(39px, 13vw, 54px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.85;
  }

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

  .hero-stats {
    justify-content: space-between;
    gap: 18px 10px;
  }

  .hero-stats div {
    min-width: 0;
  }

  .hero-stats dt {
    font-size: 21px;
  }

  .growth-visual {
    min-height: 365px;
  }

  .visual-ring-one {
    width: 340px;
    height: 340px;
  }

  .visual-ring-two {
    width: 260px;
    height: 260px;
  }

  .dashboard {
    width: 94%;
    padding: 18px;
  }

  .bar-chart {
    height: 150px;
    gap: 8px;
  }

  .dashboard-stats div {
    padding: 10px 8px;
  }

  .dashboard-stats strong {
    font-size: 15px;
  }

  .floating-label {
    display: none;
  }

  .audience-inner ul {
    gap: 13px 19px;
    font-size: 13px;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .loop-copy h2,
  .cta-box h2 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .service-grid,
  .loop-steps,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  .loop-steps li {
    min-height: 125px;
  }

  .content-card-featured {
    grid-column: auto;
  }

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

  .cta-section {
    padding: 65px 0;
  }

  .cta-box {
    min-height: 0;
    padding: 38px 24px;
    border-radius: 23px;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-main {
    padding-top: 36px;
    padding-bottom: 28px;
    gap: 28px;
  }

  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 10px;
  }

  .footer-links > div {
    gap: 8px;
  }

  .footer-links strong {
    font-size: 12px;
    margin-bottom: 2px;
  }

  .footer-links a {
    font-size: 11px;
    line-height: 1.5;
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .footer-brand p {
    margin: 10px 0 0;
    font-size: 12px;
  }

  .footer-brand .text-link {
    margin-top: 12px;
    display: inline-block;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 20px;
  }

  .footer-bottom div {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  .footer-bottom a {
    font-size: 10px;
  }
}

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