:root {
  --text: #141824;
  --muted: #8b8f99;
  --muted-strong: #6f7480;
  --primary: #1A75FF;
  --line: #e8edf5;
  --container: 1280px;
  --header-height: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: "Source Han Sans CN", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

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

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

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

.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;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  background: transparent;
}

.site-header-static {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background-color 0.24s ease,
    box-shadow 0.24s ease,
    backdrop-filter 0.24s ease,
    -webkit-backdrop-filter 0.24s ease;
}

.site-header-static .header-inner {
  min-height: 64px;
}

.site-header-static.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(19, 34, 68, 0.06);
}

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

.brand {
  flex: none;
}

.brand img {
  width: 108px;
  height: auto;
}

.site-nav {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 40px;
  margin-left: 40px;
  color: #1A1A1A;
  font-size: 14px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
}

.nav-home-link {
    display: block;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible,
.site-nav a.is-active {
  color: var(--primary);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: translateX(-50%);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  border: none;
  background: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.is-active {
  color: var(--primary);
}

.nav-dropdown-arrow {
  transition: transform 0.24s ease;
}

.nav-dropdown-content {
  position: fixed;
  top: var(--nav-dropdown-top, var(--header-height));
  left: 0;
  right: 0;
  display: none;
  flex-direction: column;
  width: 100vw;
  padding: 2px 0 24px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(232, 237, 245, 0.96);
  box-shadow: 0 20px 48px rgba(19, 34, 68, 0.12);
  z-index: 100;
}

.nav-dropdown-content::before {
  display: none;
}

.nav-dropdown-content.is-open {
  display: flex;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-group {
  display: grid;
  grid-template-columns: 160px repeat(2, minmax(280px, 360px));
  justify-content: start;
  column-gap: 36px;
  row-gap: 22px;
  align-items: center;
  width: min(var(--container), calc(100vw - 64px));
  margin: 0 auto;
  padding: 30px 0;
  border-bottom: 1px solid #e8edf5;
}

.nav-dropdown-group:last-child {
  border-bottom: none;
  padding-bottom: 6px;
}

.nav-dropdown-group h4 {
  grid-column: 1;
  grid-row: 1 / span var(--dropdown-rows, 2);
  align-self: stretch;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 40px 0 0;
  border-right: 1px solid #e8edf5;
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.nav-dropdown-group a {
  display: flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(37, 133, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--primary);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.button-open-contact-modal{
  font-size: 16px;
  font-weight: 500;
}

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

.button::after {
  content: "";
  display: block;
  flex: none;
  align-self: center;
  width: 16px;
  height: 16px;
  margin-left: 2px;
  line-height: 0;
  background: center / contain no-repeat url("/assets/images/common/right-icon.svg");
}

.button-primary {
  min-width: 150px;
  color: #fff;
  background: linear-gradient(100deg, #1786ff 0%, #8a43ff 100%);
  box-shadow: 0 18px 34px rgba(58, 119, 255, 0.22);
}

.button-secondary {
  min-width: 128px;
  color: #222630;
  font-weight: 500;
  border: 1px solid rgba(39, 44, 58, 0.28);
  background: rgba(255, 255, 255, 0.66);
}

.button-secondary::after {
  background-image: url("/assets/images/common/right-icon-wihte.svg");
}

.button-light {
  min-width: 150px;
  color: var(--primary);
  background: #fff;
  border: 0;
  cursor: pointer;
}

.button-light::after {
  background-image: url("/assets/images/common/right-icon-blue.svg");
}

.nav-cta {
  margin-left: auto;
  min-width: 134px;
  min-height: 48px;
  padding-inline: 22px;
  color: #fff;
}

.button-contact {
  border-radius: 6px;
  padding-left: 28px;
  min-width: 100px;
  width: 100px;
  height: 36px;
  min-height: 36px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: #1a75ff;
  box-shadow: 0 18px 34px rgba(58, 119, 255, 0.22);
}

.site-footer {
  background: #f2f4f8;
  overflow-x: clip;
}

.footer-grid {
  display: grid;
  grid-template-columns: 295px minmax(0, 1fr);
  column-gap: 144px;
  row-gap: 32px;
  align-items: start;
  padding: 70px 0 64px;
}

.footer-brand {
  width: 295px;
  max-width: 100%;
  text-align: left;
}

.footer-brand > img {
  width: 108px;
  height: auto;
}

.footer-brand p {
  margin: 24px 0 0;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1.85;
}

.footer-phone {
  margin-top: 52px !important;
}

.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.footer-social img {
  width: 30px;
  height: 30px;
  transition: transform 0.24s ease;
}

.footer-social a:hover img,
.footer-social a:focus-visible img {
  transform: translateY(-1px);
}

.footer-nav-list {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  justify-content: end;
  align-items: flex-start;
  column-gap: 96px;
  width: 100%;
  min-width: 0;
  justify-self: stretch;
}

.footer-nav {
  min-width: max-content;
}

.footer-nav h3,
.footer-nav a {
  white-space: nowrap;
}

.footer-nav h3 {
  color: #252932;
  font-size: 15px;
  font-weight: 700;
  padding-bottom: 12px;
}

.footer-nav a {
  display: block;
  margin-top: 12px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 20px;
  border-top: 1px solid #e0e4eb;
}

.footer-bottom p {
  margin: 0;
  color: rgba(0, 0, 0, 0.3);
  font-size: 12px;
}


.icp {
  color: rgb(0,0,0,0.3);
  font-size: 12px;
  cursor: pointer;
  transition:
    color 0.24s ease,
    transform 0.24s ease;
}

.icp:hover,
.icp:focus-visible {
  color: #1A75FF;
  transform: translateY(-1px);
}

body.modal-open {
  overflow: hidden;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(10px);
}

.contact-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 238px);
  padding: 12px 12px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.985);
  box-shadow: 0 18px 44px rgba(30, 47, 93, 0.14);
  text-align: center;
}

.contact-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.contact-modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #272d39;
}

.contact-modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-modal-mark {
  width: 0;
  height: 0;
  background: transparent;
}

.contact-modal-avatar {
  width: 68px;
  height: 68px;
  margin: 2px auto 9px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 14px rgba(24, 38, 77, 0.08);
}

.contact-modal-name {
  margin: 0;
  color: #111319;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.15;
}

.contact-modal-role {
  position: relative;
  margin: 8px 0 0;
  padding-top: 9px;
  color: #a5abb7;
  font-size: 9px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.6px;
}

.contact-modal-role::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #a070ff;
  transform: translateX(-50%);
}

.contact-modal-divider {
  position: relative;
  height: 1px;
  margin: 11px 0 13px;
  background: #eceef2;
}

.contact-modal-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.5px;
  height: 5.5px;
  border-radius: 50%;
  background: #a070ff;
  transform: translate(-50%, -50%);
}

.contact-modal-qrcode-frame {
  width: fit-content;
  margin: 0 auto 11px;
  padding: 6px;
  border-radius: 13px;
  background: #fafafa;
  box-shadow: 0 8px 18px rgba(26, 39, 76, 0.05);
}

.contact-modal-qrcode {
  width: min(100%, 150px);
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
}

.contact-modal-info {
  display: grid;
  justify-content: center;
  gap: 7px;
}

.contact-modal-info p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #727887;
  font-size: 9px;
  justify-content: flex-start;
}

.contact-modal-info span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 37px;
  height: 20px;
  padding: 0 6px;
  border: 1px solid #d8dde6;
  background: #fafbfc;
  color: #b0b6c1;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.contact-modal-info a {
  color: #727887;
  font-size: 9px;
  line-height: 1.4;
  transition: color 0.24s ease;
}

.contact-modal-info a:hover,
.contact-modal-info a:focus-visible {
  color: #215eff;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #1a75ff;
  box-shadow: none;
  cursor: pointer;
  transition:
    box-shadow 0.26s ease,
    background-color 0.26s ease;
}

.floating-contact:hover,
.floating-contact:focus-visible {
  background: #116bff;
  box-shadow: none;
}

.floating-contact img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    column-gap: 32px;
    row-gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .footer-nav-list {
    display: contents;
  }

  .footer-nav {
    justify-self: start;
    min-width: 0;
  }
}

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

  .site-header,
  .site-header-static {
    position: fixed;
    min-height: 52px;
  }

  .header-inner,
  .site-header .header-inner,
  .site-header-static .header-inner {
    justify-content: space-between;
    min-height: 52px;
    gap: 16px;
  }

  .brand img {
    width: 106px;
    height: auto;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: none;
  }

  .nav-toggle span {
    margin: 0;
  }

  .nav-toggle span + span {
    margin-top: 5px;
  }

  .site-nav {
    position: fixed;
    top: 52px;
    right: 0;
    left: 0;
    display: none;
    flex: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0;
    background: #ffffff;
    box-shadow: 0 8px 32px rgba(25, 49, 112, 0.08);
    max-height: calc(100dvh - 52px);
    overflow: auto;
    transform: translateY(-12px);
    opacity: 0;
    transition: transform 0.24s ease, opacity 0.24s ease;
    z-index: 100;
  }

  .site-nav.is-open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
  }

  .site-nav a {
    padding: 24px;
    border-bottom: 1px solid #f0f2f7;
    font-size: 16px;
    line-height: 1.6;
    color: #20242d;
  }

  .site-nav > a:not(.button-contact),
  .site-nav > .nav-dropdown > .nav-dropdown-toggle {
    padding: 18px 24px 18px 58px;
    background-repeat: no-repeat;
    background-position: 24px center;
    background-size: 18px 18px;
  }

  .site-nav > a.nav-home-link {
    --nav-item-icon: url("/assets/images/common/nav-home-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-home-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > .nav-dropdown > .nav-dropdown-toggle {
    --nav-item-icon: url("/assets/images/common/nav-services-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-services-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > a[href="/cases/"] {
    --nav-item-icon: url("/assets/images/common/nav-cases-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-cases-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > a[href="/blogs/"] {
    --nav-item-icon: url("/assets/images/common/nav-blogs-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-blogs-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > a[href="/about.html"] {
    --nav-item-icon: url("/assets/images/common/nav-about-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-about-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > a[href="/contact.html"] {
    --nav-item-icon: url("/assets/images/common/nav-contact-icon.svg");
    --nav-item-icon-active: url("/assets/images/common/nav-contact-icon-hover.svg");
    background-image: var(--nav-item-icon);
  }

  .site-nav > a:not(.button-contact):hover,
  .site-nav > a:not(.button-contact):focus-visible,
  .site-nav > a.is-active,
  .site-nav > .nav-dropdown > .nav-dropdown-toggle:hover,
  .site-nav > .nav-dropdown > .nav-dropdown-toggle:focus-visible,
  .site-nav > .nav-dropdown > .nav-dropdown-toggle.is-active {
    background-image: var(--nav-item-icon-active, var(--nav-item-icon));
  }

  .nav-home-link {
    display: block;
  }

  .site-nav a.button-contact {
    display: none;
    width: 90%;
    margin: 20px auto 24px;
    padding: 20px;
    border-bottom: none;
    color: #fff;
    background: #3f82ff;
    border-radius: 24px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
    box-shadow: 0 8px 24px rgba(63, 130, 255, 0.35);
  }

  .site-nav a.button-contact:hover,
  .site-nav a.button-contact:focus-visible {
    background: #2a6bef;
    color: #fff;
  }

  .site-nav a.is-active::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
  }

  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 24px 24px 60px;
    border-bottom: 1px solid #f0f2f7;
    font-size: 16px;
    line-height: 1.6;
    color: #20242d;
  }

  .nav-dropdown-content {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    min-width: auto;
    padding: 0;
    background: #f7fafc;
    border-radius: 0;
    box-shadow: none;
    border-top: 1px solid #f3f5f8;
  }

  .nav-dropdown-content.is-open {
    display: block;
  }

  .nav-dropdown-group {
    display: block;
    width: auto;
    margin: 0;
    background: transparent;
    padding: 0;
    border-bottom: none;
  }

  .nav-dropdown-group + .nav-dropdown-group {
    margin: 0;
  }

  .nav-dropdown-group h4 {
    grid-column: auto;
    grid-row: auto;
    display: block;
    position: relative;
    margin: 0 0 0 50px;
    padding: 0 24px 0 16px;
    border-right: none;
    border-bottom: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    height: 54px;
    line-height: 54px;
  }

  .nav-dropdown-group h4::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #1A75FF;
    transform: translateY(-50%);
  }

  .nav-dropdown-group a {
    display: block;
    padding: 16px 20px 16px 90px;
    border-bottom: 0;
    font-size: 14px;
    color: #20242d;
    background: #f7fafc;
    line-height: 1.5;
  }

  .nav-dropdown-group a:last-child {
    border-bottom: none;
  }

  .nav-dropdown-group a:hover,
  .nav-dropdown-group a:focus-visible {
    color: #1A75FF;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 48px 0 36px;
  }

  .footer-brand {
    width: auto;
  }

  .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-columns: auto;
    gap: 28px 24px;
    margin-left: 0;
    width: 100%;
    justify-content: stretch;
  }

  .footer-nav {
    justify-self: start;
    min-width: 0;
    width: 100%;
  }

  .footer-nav h3,
  .footer-nav a {
    white-space: normal;
    word-break: break-word;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-bottom: calc(20px + env(safe-area-inset-bottom));
  }

  .contact-modal-card {
    width: min(100%, 238px);
  }

  .floating-contact {
    right: calc(14px + env(safe-area-inset-right));
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 64px;
    height: 64px;
  }

  .floating-contact img {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 560px) {
  .button {
    min-height: 48px;
  }

  .footer-nav-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-phone {
    margin-top: 28px !important;
  }

  .contact-modal {
    padding: 16px;
  }

  .contact-modal-card {
    width: min(100%, 227px);
    padding: 12px 12px 14px;
    border-radius: 15px;
  }

  .contact-modal-mark {
    width: 0;
    height: 0;
  }

  .contact-modal-avatar {
    width: 64px;
    height: 64px;
    margin-top: 2px;
  }

  .contact-modal-name {
    font-size: 15px;
  }

  .contact-modal-role {
    font-size: 9px;
    letter-spacing: 0.4px;
  }

  .contact-modal-qrcode-frame {
    margin-bottom: 11px;
    padding: 6px;
    border-radius: 13px;
  }

  .contact-modal-qrcode {
    width: min(100%, 114px);
  }

  .contact-modal-info p {
    gap: 6px;
  }

  .contact-modal-info span {
    min-width: 35px;
    height: 20px;
  }

  .contact-modal-info a {
    font-size: 9px;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }
}

/* ========================================
   全局 CTA 模块（所有页面共享）
   ======================================== */
.common-cta {
  min-height: 380px;
  margin-top: 64px;
  padding: 78px 0;
  color: #fff;
  background: url("../images/index/footer-background.png") center / cover no-repeat;
  text-align: center;
}

.common-cta-inner {
  display: grid;
  justify-items: center;
}

.common-cta-inner h2 {
  margin: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.common-cta-inner p {
  margin: 22px 0 36px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
}

.common-cta-inner .button {
  margin-top: 24px;
}

@media (max-width: 760px) {
  .common-cta {
    min-height: 320px;
    margin-top: 48px;
    padding: 60px 0;
  }

  .common-cta-inner h2 {
    font-size: 34px;
  }

  .common-cta-inner p {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .common-cta {
    min-height: auto;
    margin-top: 48px;
    padding: 56px 0;
  }

  .common-cta-inner h2 {
    font-size: 28px;
  }

  .common-cta-inner p {
    margin: 18px 0 28px;
    font-size: 16px;
  }
}
