:root {
  --xh-green: #18c782;
  --xh-green-dark: #13b875;
  --xh-text: #2f3338;
  --xh-muted: #7f8b99;
  --xh-soft: #eef8f9;
  --xh-line: #edf1f4;
  --xh-footer: #303236;
  --xh-shadow: 0 12px 34px rgba(38, 67, 83, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  color: var(--xh-text);
  background: #fff;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 88px;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #edf0f3;
  backdrop-filter: blur(10px);
}

.site-inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.site-nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
}

.site-logo img {
  width: 170px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 8px;
  background: #f3faf8;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--xh-green);
  border-radius: 2px;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 30px 0;
  font-size: 17px;
  font-weight: 600;
  color: #333940;
  transition: color .2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--xh-green);
}

.product-menu {
  position: absolute;
  left: 50%;
  top: 78px;
  display: grid;
  width: 430px;
  transform: translate(-50%, 12px);
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 16px;
  border: 1px solid #edf3f1;
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--xh-shadow);
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
}

.nav-item:hover .product-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-menu a {
  display: block;
  padding: 14px 10px;
  border-radius: 8px;
  text-align: center;
  color: #4a545e;
  background: #f8fbfb;
  transition: all .2s ease;
}

.product-menu a:hover {
  color: #fff;
  background: var(--xh-green);
}

.page-main {
  padding-top: 88px;
}

.hero {
  position: relative;
  min-height: 560px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.image-hero,
.app-download-hero {
  min-height: 0;
  overflow: hidden;
}

.image-hero img,
.app-download-hero img {
  width: 100%;
}

.home-hero img {
  object-position: center center;
}

.download-hotspot {
  position: absolute;
  top: 68.75%;
  height: 10.16%;
  border-radius: 999px;
  font-size: 0;
  color: transparent;
  background: transparent;
}

.download-hotspot-ios {
  left: 18.59%;
  width: 11.25%;
}

.download-hotspot-android {
  left: 31.25%;
  width: 11.30%;
}

.download-hotspot:focus-visible {
  outline: 2px solid rgba(24, 199, 130, .55);
  outline-offset: 3px;
}

.section {
  padding: 78px 0;
}

.section-soft {
  background: linear-gradient(180deg, #f2fbfd 0%, #eef9f7 100%);
}

.why-section {
  background: linear-gradient(180deg, #f8fcfb 0%, #e8f8f2 48%, #d5f1e9 100%);
}

.section-green {
  background: var(--xh-green);
  color: #fff;
}

.section-title {
  margin: 0 0 50px;
  text-align: center;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 800;
}

.section-desc {
  margin: 0 auto 48px;
  max-width: 760px;
  text-align: center;
  color: #a1abb4;
  font-size: 15px;
}

.section-green .section-desc {
  color: rgba(255, 255, 255, .82);
}

.grid {
  display: grid;
  gap: 26px;
}

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

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

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

.card {
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--xh-shadow);
  transition: transform .22s ease, box-shadow .22s ease;
}

.hover-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 42px rgba(24, 199, 130, .18);
}

.feature-card {
  min-height: 156px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.feature-card img,
.icon-card img {
  width: 64px;
  flex: 0 0 auto;
}

.feature-card h3,
.icon-card h3,
.step-card h3,
.plain-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.35;
}

.feature-card p,
.icon-card p,
.step-card p,
.plain-card p {
  margin: 0;
  color: var(--xh-muted);
  font-size: 14px;
}

.ecoach-features .feature-card {
  position: relative;
  min-height: 138px;
  align-items: center;
  padding: 28px 26px;
}

.ecoach-features .feature-card h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  color: #222831;
  font-weight: 800;
}

.ecoach-features .feature-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 42px;
  height: 4px;
  border-radius: 2px;
  background: var(--xh-green);
}

.ecoach-features .feature-card p {
  color: #7f8b99;
}

.ecoach-architecture {
  background: #eef9fb;
}

.ecoach-architecture .section-title,
.ecoach-schools .section-title {
  margin-bottom: 14px;
}

.ecoach-architecture .section-desc,
.ecoach-schools .section-desc {
  margin-bottom: 70px;
}

.ecoach-arch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
}

.ecoach-arch-card {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
}

.ecoach-arch-card h3 {
  margin: 0;
  padding: 22px 20px;
  background: #18b986;
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 800;
}

.ecoach-arch-card ul {
  min-height: 170px;
  margin: 0;
  padding: 34px 30px;
  list-style: none;
  width: max-content;
  max-width: calc(100% - 60px);
  margin-left: auto;
  margin-right: auto;
}

.ecoach-arch-card li {
  position: relative;
  margin: 0 0 14px;
  color: #4d5964;
  font-size: 16px;
}

.ecoach-arch-card li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--xh-green);
}

.ecoach-school-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
}

.ecoach-school-item {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 24px 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fff;
  color: #3d4650;
  font-size: 16px;
  box-shadow: 0 10px 26px rgba(40, 72, 80, .12);
  transition: all .22s ease;
}

.ecoach-school-item img {
  width: 42px;
  height: 42px;
  padding: 10px;
  margin-right: 14px;
  border-radius: 50%;
  background: var(--xh-green);
  object-fit: contain;
}

.ecoach-school-item span {
  position: relative;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-top: 2px solid var(--xh-green);
  border-right: 2px solid var(--xh-green);
  transform: rotate(45deg);
}

.ecoach-school-item:hover,
.ecoach-school-item.active {
  border-color: var(--xh-green);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(24, 199, 130, .16);
}

.icon-card {
  min-height: 260px;
  padding: 38px 24px;
  text-align: center;
}

.icon-card img {
  margin: 0 auto 22px;
}

.step-card {
  position: relative;
  min-height: 280px;
  padding: 36px 24px 30px;
  text-align: center;
}

.step-num {
  position: absolute;
  left: 24px;
  top: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e3fbf3;
  color: var(--xh-green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.step-card img {
  height: 92px;
  width: auto;
  margin: 32px auto 22px;
}

.banner-panel {
  border-radius: 10px;
  background: linear-gradient(135deg, #1bc888, #35d09c);
  color: #fff;
  overflow: hidden;
}

.banner-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 52px 0;
}

.banner-panel-head h2 {
  margin: 0 0 6px;
  font-size: 28px;
}

.process-panel {
  max-width: 1200px;
  margin: 30px auto 0;
  border-radius: 18px;
  background: linear-gradient(180deg, #27c984 0%, #27c984 20%, #a6efd2 58%, #ffffff 100%);
  box-shadow: none;
}

.process-panel-head {
  padding: 46px 72px 0;
}

.process-panel-head h2 {
  color: #fff;
  font-size: 30px;
  letter-spacing: 1px;
}

.process-panel-head p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
}

.process-service {
  display: flex;
  align-items: center;
  gap: 0;
  height: 52px;
  padding: 7px;
  border-radius: 9px;
  background: #fff;
  color: #20bd7c;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .06);
}

.process-service span {
  position: relative;
  padding: 0 22px 0 38px;
  font-size: 14px;
  white-space: nowrap;
}

.process-service span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 2px solid #20bd7c;
}

.process-service a {
  height: 38px;
  min-width: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #19bd76;
  color: #fff;
  font-size: 14px;
}

.process-steps {
  gap: 22px;
  padding: 48px 44px 38px;
}

.process-step-card {
  min-height: 278px;
  padding: 34px 22px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(34, 88, 76, .22);
}

.process-step-card .step-num {
  left: 22px;
  top: 24px;
  width: 42px;
  height: 42px;
  font-size: 16px;
}

.process-step-card img {
  height: 92px;
  margin: 48px auto 22px;
}

.process-step-card h3 {
  color: #2f6654;
  font-size: 22px;
  margin-bottom: 12px;
}

.process-step-card p {
  max-width: 170px;
  margin: 0 auto;
  color: #92a49e;
  line-height: 1.8;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--xh-green);
  background: var(--xh-green);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(24, 199, 130, .24);
}

.btn-outline {
  background: #fff;
  color: var(--xh-green);
}

.download-actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 28px;
}

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

.news-card {
  overflow: hidden;
}

.news-card img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
}

.news-card-body {
  padding: 22px;
}

.news-card h3 {
  min-height: 54px;
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.5;
}

.news-card p {
  margin: 0;
  color: var(--xh-muted);
  font-size: 14px;
}

.news-list {
  display: grid;
  gap: 24px;
}

.news-row {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  min-height: 210px;
  background: #f3f9fb;
  transition: transform .22s ease, box-shadow .22s ease;
}

.news-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--xh-shadow);
}

.news-row img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.news-row-body {
  padding: 42px 46px 30px;
}

.news-row h2 {
  margin: 0 0 14px;
  font-size: 21px;
}

.news-row p {
  margin: 0 0 26px;
  color: var(--xh-muted);
}

.news-meta {
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  color: #a9b1ba;
  font-size: 13px;
}

.pagination-wrap,
.btn-toolbar {
  width: 100% !important;
  display: flex !important;
  justify-content: center;
  margin: 58px 0 0 !important;
}

.xiha-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}

.xiha-page .btn {
  min-width: 42px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 4px;
  background: #eee;
  color: #737b82;
  box-shadow: none;
  font-size: 14px;
}

.xiha-page .btn-raised {
  background: var(--xh-green);
  color: #fff;
}

.faq-tabs {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.faq-tabs button {
  padding: 6px 20px;
  border: 1px solid var(--xh-green);
  background: #fff;
  color: var(--xh-green);
  font-weight: 700;
  cursor: pointer;
}

.faq-tabs button:first-child {
  border-radius: 6px 0 0 6px;
}

.faq-tabs button:last-child {
  border-radius: 0 6px 6px 0;
}

.faq-tabs button.active {
  background: var(--xh-green);
  color: #fff;
}

.faq-panel {
  display: none !important;
}

.faq-panel.active {
  display: grid !important;
}

.faq-list {
  display: grid;
  gap: 20px;
}

.faq-item {
  padding: 18px 34px 26px;
  background: #f3f9fb;
}

.faq-item h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  font-size: 18px;
}

.faq-item h3::before {
  content: "Q";
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 4px;
  background: var(--xh-green);
  color: #fff;
  font-size: 16px;
}

.faq-item p,
.faq-item li {
  color: var(--xh-muted);
  font-size: 15px;
}

.contact-card {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
}

.contact-left {
  min-height: 520px;
  padding: 84px 52px;
  background: url("../../images_new/联系我们_slices/1.png") center/cover no-repeat;
  color: #fff;
}

.contact-left h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.contact-list {
  padding: 38px 54px;
}

.contact-line {
  display: grid;
  grid-template-columns: 54px 130px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px dashed #e2e8ea;
}

.contact-line:last-child {
  border-bottom: 0;
}

.contact-line img {
  width: 44px;
}

.contact-line strong {
  color: #2f3a45;
}

.contact-line p {
  margin: 0;
  color: #596879;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 48px;
}

.article-main {
  padding: 8px 0 40px;
}

.article-main h1 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 30px;
}

.article-info {
  margin-bottom: 34px;
  text-align: center;
  color: #9aa4ad;
}

.article-content {
  color: #3d4650;
  font-size: 16px;
  line-height: 2;
}

.article-content img {
  max-width: 100% !important;
  height: auto !important;
}

.side-news {
  position: sticky;
  top: 110px;
}

.side-news h3 {
  margin: 0;
  padding: 14px 18px;
  background: var(--xh-green);
  color: #fff;
}

.side-news-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--xh-line);
}

.side-news-item img {
  width: 96px;
  height: 68px;
  object-fit: cover;
}

.side-news-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.brand-layout {
  align-items: stretch;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-capabilities {
  background: #eef9fb;
}

.about-capability-grid {
  max-width: 880px;
  margin: 0 auto;
  gap: 24px;
}

.about-capability-card {
  min-height: 300px;
  padding: 42px 28px 28px;
  text-align: center;
  border-radius: 12px;
  box-shadow: none;
}

.about-capability-card h3 {
  margin: 0 0 12px;
  color: #30343a;
  font-size: 20px;
  font-weight: 800;
}

.about-capability-card p {
  min-height: 52px;
  margin: 0 0 26px;
  color: #7d8996;
  line-height: 1.7;
  font-size: 14px;
}

.about-capability-card img {
  height: 120px;
  width: auto;
  margin: 0 auto;
}

.about-easy {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: linear-gradient(135deg, #17b979 0%, #28cd87 100%);
}

.about-easy::before,
.about-easy::after {
  content: "";
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  pointer-events: none;
}

.about-easy::before {
  left: -260px;
  top: -380px;
}

.about-easy::after {
  right: -280px;
  bottom: -470px;
}

.about-easy .site-inner {
  position: relative;
  z-index: 1;
}

.about-easy .section-title {
  margin-bottom: 78px;
  color: #fff;
}

.about-easy-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
  max-width: 1020px;
  margin: 0 auto;
}

.about-easy-item {
  display: grid;
  grid-template-columns: 120px minmax(150px, 1fr);
  gap: 18px;
  align-items: center;
  color: #fff;
}

.about-easy-item img {
  width: 120px;
}

.about-easy-item span {
  display: none;
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--xh-green);
  font-size: 18px;
  font-weight: 800;
}

.about-easy-item h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.about-easy-item p {
  margin: 0;
  color: rgba(255, 255, 255, .85);
  line-height: 1.7;
  white-space: nowrap;
}

.site-footer {
  border-top: 4px solid var(--xh-green);
  background: var(--xh-footer);
  color: #8f949a;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  padding: 58px 0 40px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(6, minmax(80px, 1fr));
  gap: 24px;
}

.footer-links h4,
.footer-contact strong {
  margin: 0 0 16px;
  color: #c4c7cb;
  font-size: 16px;
}

.footer-links a {
  display: block;
  margin: 0 0 12px;
  color: #8f949a;
  font-size: 14px;
}

.footer-contact {
  text-align: center;
}

.footer-logo {
  width: 157px;
  margin: 0 auto 22px;
  filter: grayscale(1) brightness(1.8);
  opacity: .58;
}

.footer-qr {
  width: 98px;
  margin: 14px auto 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 0 30px;
  font-size: 13px;
}

.footer-bottom p {
  margin: 8px 0;
}

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

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

  .news-grid,
  .article-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .ecoach-arch-grid,
  .ecoach-school-grid,
  .about-easy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-left {
    min-height: 300px;
  }

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

@media (max-width: 768px) {
  .site-header,
  .site-nav {
    height: 68px;
  }

  .page-main {
    padding-top: 68px;
  }

  .site-inner {
    width: min(100% - 28px, 1200px);
  }

  .site-logo img {
    width: 148px;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    position: fixed;
    left: 0;
    right: 0;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 20px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
  }

  .site-header.nav-open .nav-links {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
  }

  .product-menu {
    position: static;
    width: 100%;
    grid-template-columns: 1fr;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    display: none;
    margin-bottom: 12px;
  }

  .nav-item:hover .product-menu,
  .nav-item:focus-within .product-menu {
    display: grid;
    transform: none;
  }

  .hero {
    min-height: 280px;
    background-size: cover;
  }

  .image-hero,
  .app-download-hero {
    height: 200px;
    min-height: 200px;
  }

  .image-hero img,
  .app-download-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .news-grid,
  .news-row {
    grid-template-columns: 1fr;
  }

  .ecoach-arch-grid,
  .ecoach-school-grid,
  .about-easy-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .about-capability-card {
    min-height: 0;
  }

  .about-easy {
    min-height: 0;
  }

  .about-easy .section-title {
    margin-bottom: 42px;
  }

  .about-easy-item {
    grid-template-columns: 100px minmax(0, 1fr);
    max-width: 320px;
    margin: 0 auto;
  }

  .about-easy-item img {
    width: 100px;
  }

  .about-easy-item p {
    white-space: normal;
  }

  .ecoach-architecture .section-desc,
  .ecoach-schools .section-desc {
    margin-bottom: 34px;
  }

  .ecoach-arch-card h3 {
    font-size: 22px;
  }

  .ecoach-arch-card ul {
    min-height: 0;
    padding: 28px 58px;
  }

  .feature-card {
    align-items: flex-start;
    padding: 24px;
  }

  .news-row img {
    min-height: 190px;
  }

  .news-row-body {
    padding: 24px;
  }

  .news-meta {
    justify-content: flex-start;
  }

  .banner-panel-head,
  .contact-list,
  .contact-left {
    padding: 28px;
  }

  .banner-panel-head {
    display: block;
  }

  .process-panel {
    border-radius: 12px;
  }

  .process-panel-head {
    padding: 28px 24px 0;
  }

  .process-panel-head h2 {
    font-size: 24px;
  }

  .process-service {
    margin-top: 18px;
    justify-content: space-between;
  }

  .process-service span {
    padding-left: 30px;
    font-size: 12px;
  }

  .process-service span::before {
    left: 10px;
  }

  .process-steps {
    padding: 26px 20px 28px;
  }

  .contact-line {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .contact-line strong {
    grid-column: 2;
  }

  .contact-line p {
    grid-column: 2;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .app-download-hero .download-hotspot {
    top: 135px;
    height: 32px;
  }

  .app-download-hero .download-hotspot-ios {
    left: calc(111.54px - (600px - 100%) / 2);
    width: 67.5px;
  }

  .app-download-hero .download-hotspot-android {
    left: calc(187.5px - (600px - 100%) / 2);
    width: 67.8px;
  }

  .download-actions {
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .icon-card,
  .step-card {
    min-height: 0;
  }
}
