*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 82, 255, 0.08);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  height: 72px;
}

.site-header__logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.site-header__logo-brand {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  letter-spacing: -0.02em;
}

.site-header__logo-geo {
  font-size: 22px;
  font-weight: 700;
  color: #0052FF;
  letter-spacing: -0.02em;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.site-nav__link {
  font-size: 15px;
  font-weight: 500;
  color: #1A1A1A;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link--active {
  color: #0052FF;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-header__toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #1A1A1A;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F5FF 50%, #E8F0FE 100%);
}

.hero__bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__bg-orb--1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 82, 255, 0.08);
  top: 10%;
  right: 5%;
}

.hero__bg-orb--2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 82, 255, 0.06);
  top: 30%;
  right: 20%;
}

.hero__bg-dots {
  position: absolute;
  top: 40px;
  right: 80px;
  width: 120px;
  height: 120px;
  background-image: url('images/background/bg-dots.svg');
  background-size: 120px 120px;
  background-repeat: no-repeat;
  opacity: 0.6;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 88px 48px 0;
}

.hero__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: 560px;
}

.hero__left {
  flex: 0 0 540px;
  max-width: 540px;
}

.hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.hero__title-brand {
  color: #1A1A1A;
}

.hero__title-geo {
  color: #0052FF;
}

.hero__subtitle {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  margin-bottom: 28px;
}

.hero__highlight {
  color: #0052FF;
}

.hero__desc {
  font-size: 16px;
  line-height: 1.75;
  color: #666666;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__features {
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.hero__feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 82, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0052FF;
  background: rgba(0, 82, 255, 0.04);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.hero__feature-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.hero__feature-label {
  font-size: 13px;
  color: #1A1A1A;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
}

.hero__actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}

.hero__btn--primary {
  background: #0052FF;
  color: #FFFFFF;
  border: 1.5px solid #0052FF;
}

.hero__btn--primary:hover {
  background: #0046DB;
  border-color: #0046DB;
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.3);
}

.hero__btn--secondary {
  background: #FFFFFF;
  color: #0052FF;
  border: 1.5px solid #0052FF;
}

.hero__btn--secondary:hover {
  background: rgba(0, 82, 255, 0.04);
  box-shadow: 0 4px 16px rgba(0, 82, 255, 0.1);
}

.hero__btn-arrow {
  flex-shrink: 0;
}

.hero__tagline {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__tagline-icon {
  flex-shrink: 0;
  display: block;
}

.hero__tagline-text {
  font-size: 14px;
  color: #0052FF;
  font-weight: 500;
  white-space: nowrap;
}

.hero__tagline-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 82, 255, 0.4) 0%, rgba(0, 82, 255, 0) 100%);
  max-width: 200px;
}

.hero__right {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.hero__visual {
  position: relative;
  width: 560px;
  height: 440px;
  perspective: 1200px;
}

.hero__laptop {
  position: absolute;
  top: 52%;
  left: 48%;
  transform: translate(-50%, -50%) rotateX(6deg) rotateY(-18deg);
  width: 400px;
  z-index: 2;
  transform-style: preserve-3d;
}

.hero__laptop-screen {
  background: #FFFFFF;
  border-radius: 10px 10px 0 0;
  border: 2px solid #C8CDD4;
  border-bottom: none;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14), 0 8px 24px rgba(0, 82, 255, 0.08);
}

.hero__laptop-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #F3F4F6;
  border-bottom: 1px solid #E5E7EB;
}

.hero__laptop-header-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero__laptop-header-dot--red {
  background: #FF5F57;
}

.hero__laptop-header-dot--yellow {
  background: #FFBD2E;
}

.hero__laptop-header-dot--green {
  background: #28CA41;
}

.hero__laptop-content {
  padding: 16px 20px 24px;
  background: #FFFFFF;
}

.hero__laptop-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #F3F4F6;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 12px;
  color: #999999;
}

.hero__laptop-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(0, 82, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 12px;
  color: #0052FF;
  font-weight: 500;
}

.hero__laptop-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.hero__laptop-line {
  height: 8px;
  border-radius: 4px;
  background: #E8F0FE;
}

.hero__laptop-line--full {
  width: 100%;
  background: linear-gradient(90deg, #0052FF 0%, #E8F0FE 100%);
}

.hero__laptop-line--90 {
  width: 90%;
}

.hero__laptop-line--75 {
  width: 75%;
}

.hero__laptop-line--60 {
  width: 60%;
}

.hero__laptop-sources-title {
  font-size: 11px;
  color: #999999;
  margin-bottom: 10px;
  display: block;
}

.hero__laptop-sources-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero__laptop-source {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__laptop-source-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0052FF, #6699FF);
  flex-shrink: 0;
}

.hero__laptop-source-avatar--2 {
  background: linear-gradient(135deg, #7B3FF2, #B794F6);
}

.hero__laptop-source-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__laptop-source-line {
  height: 6px;
  border-radius: 3px;
  background: #E8F0FE;
  width: 100%;
}

.hero__laptop-source-line--short {
  width: 60%;
}

.hero__laptop-base {
  height: 16px;
  background: linear-gradient(180deg, #D8D8D8 0%, #B0B0B0 40%, #909090 100%);
  border-radius: 0 0 6px 6px;
  position: relative;
  transform: rotateX(-60deg);
  transform-origin: top center;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero__laptop-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 5px;
  background: #888888;
  border-radius: 0 0 4px 4px;
}

.hero__float {
  position: absolute;
  z-index: 3;
}

.hero__float--chart {
  top: 72px;
  left: -8px;
  width: 100px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 12px;
}

.hero__float-chart {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-bottom: 4px;
}

.hero__float-chart-bar {
  width: 12px;
  border-radius: 3px 3px 0 0;
  background: #E8F0FE;
}

.hero__float-chart-bar--1 {
  height: 30%;
}

.hero__float-chart-bar--2 {
  height: 50%;
  background: rgba(0, 82, 255, 0.3);
}

.hero__float-chart-bar--3 {
  height: 70%;
  background: #0052FF;
}

.hero__float--search img {
  display: block;
}

.hero__float-recommend-stars img {
  display: block;
}

.hero__float-chart-arrow {
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
}

.hero__laptop-search img,
.hero__laptop-ai-badge img {
  display: block;
  flex-shrink: 0;
}

.hero__float--search {
  top: 48px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: #0052FF;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.3);
}

.hero__float--recommend {
  bottom: 72px;
  right: 4px;
  width: 160px;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 14px 16px;
}

.hero__float-recommend {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__float-recommend-label {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
}

.hero__float-recommend-stars {
  display: flex;
  gap: 2px;
}

.hero__float-recommend-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__float-recommend-line {
  height: 6px;
  border-radius: 3px;
  background: #E8F0FE;
  width: 100%;
}

.hero__float-recommend-line--short {
  width: 70%;
}

.hero__platforms {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #FFFFFF;
  border-radius: 16px;
  padding: 22px 36px;
  margin-top: 32px;
  margin-bottom: 48px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.04);
}

.hero__platforms-label {
  font-size: 14px;
  color: #666666;
  white-space: nowrap;
  font-weight: 500;
}

.hero__platforms-divider {
  width: 1px;
  height: 32px;
  background: #E5E7EB;
  flex-shrink: 0;
}

.hero__platforms-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: space-between;
}

.hero__platform {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
}

.hero__platform-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__platform-icon img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.hero__platform span {
  font-size: 14px;
  color: #1A1A1A;
  font-weight: 500;
  white-space: nowrap;
}

.section-btn--primary img {
  filter: brightness(0) invert(1);
}

.hero__platform-divider {
  width: 1px;
  height: 24px;
  background: #E5E7EB;
  flex-shrink: 0;
}

.section {
  position: relative;
  overflow: hidden;
}

.section__container {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 48px;
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(0, 82, 255, 0.08);
  color: #0052FF;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 20px;
}

.section__badge--icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #1A1A1A;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.section__title-highlight {
  color: #0052FF;
}

.section__desc {
  font-size: 16px;
  line-height: 1.75;
  color: #666666;
  max-width: 640px;
  margin: 0 auto;
}

.section__desc--decor {
  font-size: 15px;
}

.section__desc--lines {
  position: relative;
  display: inline-block;
  padding: 0 24px;
}

.section__desc--lines::before,
.section__desc--lines::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 82, 255, 0.3));
}

.section__desc--lines::before {
  right: 100%;
  margin-right: 12px;
  background: linear-gradient(90deg, rgba(0, 82, 255, 0.3), transparent);
}

.section__desc--lines::after {
  left: 100%;
  margin-left: 12px;
}

.section__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.section-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}

.section-btn--primary {
  background: #0052FF;
  color: #FFFFFF;
  border: 1.5px solid #0052FF;
}

.section-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.04);
}

.section-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 82, 255, 0.06);
  border: 1.5px solid rgba(0, 82, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.section-card__icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.section-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 12px;
}

.section-card__line {
  display: block;
  width: 24px;
  height: 3px;
  background: #0052FF;
  border-radius: 2px;
  margin: 0 auto 16px;
}

.section-card__line--bottom {
  margin-top: 20px;
  margin-bottom: 0;
}

.section-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: #666666;
  text-align: center;
}

.value {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
}

.value__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.value__bg-dots {
  position: absolute;
  bottom: 40px;
  left: 48px;
  width: 100px;
  height: 100px;
  background-image: url('images/background/bg-dots.svg');
  background-size: 100px 100px;
  opacity: 0.5;
}

.value__bg-wave {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 320px;
  height: 200px;
  background: radial-gradient(ellipse at bottom right, rgba(0, 82, 255, 0.08) 0%, transparent 70%);
}

.value__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value__card {
  padding: 32px 24px 28px;
}

.process {
  background: linear-gradient(180deg, #F0F5FF 0%, #FFFFFF 50%, #F8FAFF 100%);
}

.process__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.process__bg-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url('images/background/bg-dots.svg');
  background-size: 100px 100px;
  opacity: 0.45;
}

.process__bg-dots--tl {
  top: 40px;
  left: 48px;
}

.process__bg-dots--br {
  bottom: 40px;
  right: 48px;
}

.process__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 8px;
}

.process__step {
  flex: 1;
  max-width: 220px;
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #0052FF;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.process__icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.process__title {
  font-size: 16px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 12px;
}

.process__text {
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
}

.process__arrow {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-top: 80px;
}

.process__arrow img {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 0.6;
}

.process__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 14px;
  color: #666666;
}

.process__trust img {
  width: 16px;
  height: 16px;
  display: block;
}

.process__trust-dot {
  color: #0052FF;
}

.industries {
  background: linear-gradient(180deg, #F8FAFF 0%, #F0F5FF 50%, #FFFFFF 100%);
}

.industries__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.industries__bg-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  background: rgba(0, 82, 255, 0.06);
}

.industries__bg-glow--tl {
  top: -100px;
  left: -100px;
}

.industries__bg-glow--br {
  bottom: -100px;
  right: -100px;
}

.industries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.industries__card {
  padding: 28px 20px 24px;
}

.industries__tags {
  font-size: 12px;
  color: #999999;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.6;
}

.industries__banner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  background: rgba(0, 82, 255, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(0, 82, 255, 0.08);
}

.industries__banner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.industries__banner-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.industries__banner-text {
  flex: 1;
}

.industries__banner-desc {
  font-size: 14px;
  color: #666666;
  margin-bottom: 6px;
}

.industries__banner-title {
  font-size: 16px;
  font-weight: 700;
  color: #0052FF;
}

.industries__banner .section-btn {
  flex-shrink: 0;
}

.contact {
  background: linear-gradient(180deg, #FFFFFF 0%, #F0F5FF 100%);
  padding-bottom: 40px;
}

.contact__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact__bg-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: url('images/background/bg-dots.svg');
  background-size: 100px 100px;
  opacity: 0.45;
}

.contact__bg-dots--tr {
  top: 40px;
  right: 48px;
}

.contact__bg-dots--bl {
  bottom: 40px;
  left: 48px;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.contact__card {
  padding: 36px 24px 32px;
  text-align: center;
}

.contact__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0052FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact__icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.contact__info {
  font-size: 20px;
  font-weight: 700;
  color: #0052FF;
  margin-bottom: 8px;
}

.contact__caption {
  font-size: 13px;
  color: #999999;
}

.contact__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 32px;
  margin-bottom: 32px;
}

.contact__benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact__benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__benefit-icon img {
  width: 24px;
  height: 24px;
  display: block;
}

.contact__benefit-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact__benefit-text strong {
  font-size: 14px;
  font-weight: 700;
  color: #1A1A1A;
}

.contact__benefit-text span {
  font-size: 12px;
  color: #999999;
  line-height: 1.5;
}

.contact__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: #999999;
}

.contact__privacy img {
  width: 14px;
  height: 14px;
  display: block;
  opacity: 0.7;
}

.page-main {
  padding-top: 72px;
}
