/* ======================== */
/* Contents 目录页样式       */
/* ======================== */
/* --- Banner --- */
.toc-banner {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.toc-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.toc-banner__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.toc-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  padding-top: var(--header-h);
}
.toc-banner__title {
  font-weight: 700;
  font-size: 86px;
  line-height: 0.77em;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 30px;
}
.toc-banner__desc {
  font-size: 14px;
  line-height: 2.28em;
  color: var(--color-white);
  max-width: 650px;
  letter-spacing: 0.05em;
}
/* --- 波浪形过渡装饰 --- */
.toc-wave-divider {
  position: relative;
  z-index: 3;
  margin-top: -120px;
  line-height: 0;
  pointer-events: none;
}
.toc-wave-divider img {
  width: 100%;
  height: auto;
  display: block;
}
/* --- 通用 Section --- */
.toc-section {
  padding: 40px 0;
}
.toc-company {
  padding-top: 80px;
  padding-bottom: 0;
  position: relative;
  background-color: #ffffff;
}
.toc-company::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(1500px + 40px);
  height: 180px;
  background-color: #edf0f4;
  border-radius: 20px 20px 0 0;
}
.toc-company-reverse {
  padding-top: 0;
  padding-bottom: 20px;
  position: relative;
  background-color: #ffffff;
}
.toc-company-reverse.toc-company-blue {
  background-color: #2978fe;
}
.toc-company-reverse::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(1500px + 40px);
  height: calc(100% + 20px);
  background-color: #edf0f4;
  border-radius: 0 0 20px 20px;
}
.toc-products {
  position: relative;
  background-color: #ffffff;
}
/* --- 标题卡片（Company / Products / Projects 头部） --- */
.toc-heading-card {
  position: relative;
  width: 100%;
  height: 160px;
  display: flex;
  align-items: center;
}
.toc-heading-card__line {
  width: calc(100% + 40px);
  height: calc(100% + 20px);
  background-color: #2978fe;
  position: absolute;
  left: -20px;
  bottom: -20px;
  z-index: 1;
  border-radius: 0 0 20px 20px;
}
.toc-heading-card__bg {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.toc-heading-card__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
/* 公司卡片渐变覆盖层 */
.toc-heading-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.toc-heading-card__overlay--products {
  background: linear-gradient(90deg, rgba(17, 37, 71, 0.95) 25%, rgba(17, 37, 71, 0.2) 100%);
}
.toc-heading-card__content {
  position: relative;
  z-index: 2;
  padding: 0 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
}
.toc-heading-card__title {
  font-weight: 700;
  font-size: 36px;
  color: #fff;
  text-transform: uppercase;
  white-space: nowrap;
}
.toc-heading-card__title b {
  color: var(--color-primary);
}
.toc-heading-card__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
}
.toc-heading-card__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}
.toc-heading-card__arrow img,
.toc-heading-card__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}
.toc-heading-card__arrow:hover {
  transform: translateX(3px);
}
/* Products/Projects 卡片箭头带圆形背景 */
.toc-heading-card--products .toc-heading-card__arrow,
.toc-heading-card--projects .toc-heading-card__arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}
.toc-heading-card--products .toc-heading-card__arrow:hover,
.toc-heading-card--projects .toc-heading-card__arrow:hover {
  background: rgba(255, 255, 255, 0.3);
}
/* --- 企业简介区域 --- */
.toc-profile {
  padding: 50px 0;
  background-color: #edf0f4;
}
.toc-profile__company-name {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.55em;
  color: #112547;
  text-transform: uppercase;
  margin-bottom: 20px;
}
/* 公司介绍全宽文字 */
.toc-profile__intro {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9em;
  color: #112547;
  text-align: justify;
  margin-bottom: 40px;
}
.toc-profile__intro p {
  margin-bottom: 0;
}
/* 三张工厂图片画廊 */
.toc-profile__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.toc-profile__gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.toc-profile__gallery-label-box {
  position: absolute;
  left: 0;
  top: 0;
  border: 10px solid #edf0f4;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 20px;
  background-color: #edf0f4;
}
.toc-profile__gallery-label {
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: #c6cbd4;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 350;
  letter-spacing: 0.05em;
  color: #292f48;
  border: 1px solid rgba(17, 37, 71, 0.18);
  border-top: none;
  border-left: none;
  z-index: 1;
}
.toc-profile__gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
/* 技术描述段落 */
.toc-profile__tech {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.9em;
  color: #112547;
  margin-bottom: 30px;
}
.toc-profile__tech p {
  margin-bottom: 0;
}
/* 统计数据卡片 */
.toc-profile__stats-card {
  display: flex;
  align-items: center;
  height: 160px;
  border: 1px solid #aab4c6;
  border-radius: 30px;
  background: #fff;
  padding: 0 50px;
}
.toc-profile__stat {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
}
.toc-profile__stat-number {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.16em;
  color: #112547;
  text-transform: uppercase;
}
.toc-profile__stat-label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.44em;
  color: #666666;
}
.toc-profile__stat-divider {
  width: 1px;
  height: 60px;
  background: #999999;
  margin: 0 20px;
  flex-shrink: 0;
}
/* --- 产品网格 --- */
.toc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.toc-product-card {
  display: flex;
  flex-direction: column;
  background: #edf0f4;
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
  text-decoration: none;
}
.toc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.toc-product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 20px;
}
.toc-product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.toc-product-card:hover .toc-product-card__img img {
  transform: scale(1.05);
}
.toc-product-card__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4em;
  color: #112547;
  padding: 16px 16px 8px;
}
.toc-product-card__desc {
  font-size: 12px;
  line-height: 1.8em;
  color: #112547;
  padding: 0 16px 20px;
  opacity: 0.7;
}
.toc-projects {
  padding: 20px 0;
  background-color: #edf0f4;
}
/* --- 项目列表 --- */
.toc-projects-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.toc-project-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 50px 30px;
  background: #fff;
  border-radius: 20px;
  text-decoration: none;
  gap: 30px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.toc-project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.toc-project-card__img {
  width: 220px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
.toc-project-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.toc-project-card:hover .toc-project-card__img img {
  transform: scale(1.05);
}
.toc-project-card__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.toc-project-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.toc-project-card__title {
  font-family: 'Source Han Sans CN', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 2em;
  color: #333333;
  margin: 0;
}
.toc-project-card__date {
  font-family: 'Source Han Sans CN', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.42em;
  color: #999999;
}
.toc-project-card__desc {
  font-family: 'Source Han Sans CN', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875em;
  color: #666666;
  margin: 0;
}
/* --- 展会区域 --- */
.toc-exhibition {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background-color: #2978fe;
}
.toc-exhibition__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.toc-exhibition__bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  filter: brightness(0.4);
}
.toc-exhibition__content {
  position: relative;
  z-index: 2;
}
.toc-exhibition-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}
.toc-exhibition-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  border-radius: 20px;
  overflow: hidden;
  transition: transform var(--transition-base);
  text-decoration: none;
}
.toc-exhibition-card:hover {
  transform: translateY(-6px);
}
.toc-exhibition-card__img {
  width: 360px;
  height: 200px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #ffffff;
  overflow: hidden;
}
.toc-exhibition-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.toc-exhibition-card:hover .toc-exhibition-card__img img {
  transform: scale(1.05);
}
.toc-exhibition-card__info {
  flex: 1;
  padding: 30px 0 0 30px;
  display: flex;
  flex-direction: column;
}
.toc-exhibition-card__title {
  font-family: 'Source Han Sans CN', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75em;
  color: #ffffff;
  margin-bottom: 13px;
}
.toc-exhibition-card__desc {
  font-family: 'Source Han Sans CN', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}
/* --- 联系区域 --- */
.toc-contact {
  padding: 0 0 100px;
  background: url(../assets/img/contents_contact.png) no-repeat center center;
  background-size: cover;
}
.toc-contact .toc-heading-card__title {
  color: var(--color-accent);
}
.toc-contact .toc-heading-card__desc {
  color: var(--color-primary);
}
.toc-contact .toc-heading-card__arrow {
  color: var(--color-primary);
}
/* Figma 2:5077：顶部 CONTACT US 标题条 */
.toc-contact-head {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 160px;
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base);
}
.toc-contact-head:hover {
  box-shadow: 0 8px 32px rgba(41, 120, 254, 0.25);
}
.toc-contact-head__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #2978fe;
}
.toc-contact-head__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #e1e8f4 0%, rgba(255, 255, 255, 0.92) 21%, rgba(41, 120, 254, 0.35) 78%, rgba(41, 120, 254, 0.05) 100%);
}
.toc-contact-head__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
  padding: 0 50px;
  min-height: 160px;
}
.toc-contact-head__title {
  margin: 0;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.55em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.toc-contact-head__contact {
  color: #112547;
}
.toc-contact-head__us {
  color: #2978fe;
}
.toc-contact-head__desc {
  flex: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.5em;
  color: #112547;
  text-transform: uppercase;
  opacity: 0.85;
}
.toc-contact-head__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  transition: transform var(--transition-base);
}
.toc-contact-head:hover .toc-contact-head__arrow {
  transform: translate(3px, -3px);
}
.toc-contact__panel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #1a3a6e;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  margin-top: 130px;
}
.toc-contact__panel-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.toc-contact__panel-bg img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.toc-contact__panel-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(41, 120, 254, 0.72) 0%, rgba(0, 26, 61, 0.78) 100%);
  backdrop-filter: saturate(1.1);
}
.toc-contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 50px 50px;
  background: rgba(0, 26, 61, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.toc-contact__title {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.83em;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.toc-contact__desc {
  font-size: 16px;
  line-height: 1.75em;
  color: #fff;
  max-width: 1200px;
  margin: 0 auto 40px;
}
.toc-contact__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.toc-contact__email-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: 26px;
  height: 52px;
  padding: 0 24px 0 0;
  transition: box-shadow var(--transition-base);
}
.toc-contact__email-badge:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.toc-contact__email-icon {
  width: 52px;
  height: 52px;
  border-radius: 26px 0 0 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toc-contact__email-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(46%) saturate(2089%) hue-rotate(196deg) brightness(96%) contrast(104%);
}
.toc-contact__email-badge span {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  white-space: nowrap;
}
.toc-contact__socials {
  display: flex;
  align-items: center;
  gap: 30px;
}
.toc-contact__social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.toc-contact__social:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.toc-contact__social img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(12%) sepia(46%) saturate(2089%) hue-rotate(196deg) brightness(96%) contrast(104%);
}
.toc-contact__tips-bar {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  padding: 45px 200px;
}
.toc-contact__tips {
  font-size: 12px;
  line-height: 20px;
  color: var(--color-primary);
  text-align: center;
}
/* --- 响应式 Tablet --- */
@media (max-width: 1199px) {
  .toc-banner {
    height: 420px;
  }
  .toc-banner__title {
    font-size: 56px;
  }
  .toc-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .toc-project-card {
    padding: 30px 20px;
    gap: 20px;
  }
  .toc-project-card__img {
    width: 200px;
    height: 145px;
  }
  .toc-project-card__header {
    margin-bottom: 20px;
  }
  .toc-exhibition-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .toc-exhibition-card {
    max-width: 800px;
    margin: 0 auto;
  }
  .toc-exhibition-card__img {
    width: 360px;
    height: 200px;
  }
  .toc-heading-card {
    height: 140px;
  }
  .toc-heading-card__title {
    font-size: 28px;
  }
  .toc-heading-card__content {
    padding: 0 30px;
  }
  .toc-profile__company-name {
    font-size: 28px;
  }
  .toc-profile__intro,
  .toc-profile__tech {
    font-size: 16px;
  }
  .toc-profile__gallery {
    gap: 20px;
  }
  .toc-profile__stats-card {
    padding: 0 30px;
  }
  .toc-profile__stat-number {
    font-size: 36px;
  }
  .toc-profile__stat-label {
    font-size: 14px;
  }
  .toc-contact-head {
    min-height: 140px;
    border-radius: 24px;
  }
  .toc-contact-head__inner {
    min-height: 140px;
    padding: 0 30px;
    gap: 24px;
  }
  .toc-contact-head__title {
    font-size: 28px;
  }
  .toc-contact-head__desc {
    font-size: 13px;
  }
  .toc-contact__inner {
    padding: 50px 40px 40px;
  }
  .toc-contact__title {
    font-size: 28px;
  }
  .toc-contact__desc {
    font-size: 14px;
  }
  .toc-contact__email-badge span {
    font-size: 18px;
  }
  .toc-contact__email-badge {
    height: 46px;
    padding: 0 20px 0 0;
  }
  .toc-contact__email-icon {
    width: 46px;
    height: 46px;
  }
  .toc-contact__email-icon img {
    width: 26px;
    height: 26px;
  }
  .toc-contact__social {
    width: 46px;
    height: 46px;
  }
  .toc-contact__social img {
    width: 28px;
    height: 28px;
  }
  .toc-contact__actions {
    gap: 20px;
  }
  .toc-contact__socials {
    gap: 20px;
  }
  .toc-contact__tips-bar {
    padding: 24px 40px;
  }
}
/* --- 响应式 Mobile --- */
@media (max-width: 767px) {
  .toc-banner {
    height: 360px;
  }
  .toc-banner__title {
    font-size: 36px;
  }
  .toc-banner__desc {
    font-size: 12px;
    line-height: 2em;
  }
  .toc-section {
    padding: 24px 0;
  }
  .toc-heading-card {
    height: auto;
    min-height: 100px;
    border-radius: 16px;
    padding: 20px 0;
  }
  .toc-heading-card__title {
    font-size: 20px;
    width: 100%;
    margin-bottom: 8px;
    padding-right: 40px;
  }
  .toc-heading-card__desc {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
    padding-right: 40px;
    color: rgba(255, 255, 255, 0.8);
  }
  .toc-heading-card__content {
    padding: 0 20px;
    flex-wrap: wrap;
  }
  .toc-heading-card__arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
  }
  .toc-heading-card__arrow img,
  .toc-heading-card__arrow svg {
    width: 100%;
    height: 100%;
  }
  .toc-profile {
    padding: 30px 0;
  }
  .toc-profile__company-name {
    font-size: 22px;
  }
  .toc-profile__intro,
  .toc-profile__tech {
    font-size: 14px;
    line-height: 1.8em;
    margin-bottom: 24px;
  }
  .toc-profile__gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }
  .toc-profile__gallery-item img {
    height: 200px;
  }
  .toc-profile__gallery-label {
    font-size: 14px;
    padding: 6px 14px;
  }
  .toc-profile__stats-card {
    height: auto;
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    gap: 20px;
  }
  .toc-profile__stat {
    width: 100%;
  }
  .toc-profile__stat-number {
    font-size: 28px;
  }
  .toc-profile__stat-label {
    font-size: 14px;
  }
  .toc-profile__stat-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .toc-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 16px;
  }
  .toc-product-card__title {
    font-size: 14px;
    padding: 10px 10px 4px;
  }
  .toc-product-card__desc {
    font-size: 11px;
    padding: 0 10px 12px;
  }
  .toc-projects-list {
    gap: 16px;
    margin-top: 24px;
  }
  .toc-project-card {
    flex-direction: column;
    padding: 24px;
    border-radius: 16px;
    gap: 16px;
  }
  .toc-project-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .toc-project-card__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }
  .toc-project-card__title {
    font-size: 16px;
    line-height: 1.5em;
  }
  .toc-project-card__desc {
    font-size: 14px;
    line-height: 1.6em;
  }
  .toc-exhibition {
    padding: 40px 0;
  }
  .toc-exhibition-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .toc-exhibition-card {
    flex-direction: column;
  }
  .toc-exhibition-card__img {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }
  .toc-exhibition-card__info {
    padding: 20px 0 0 0;
  }
  .toc-exhibition-card__title {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .toc-exhibition-card__desc {
    font-size: 14px;
  }
  .toc-contact {
    padding: 30px 0;
  }
  .toc-contact-head {
    min-height: auto;
    margin-bottom: 16px;
    border-radius: 16px;
  }
  .toc-contact-head__inner {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 18px 52px 18px 20px;
    gap: 0;
  }
  .toc-contact-head__title {
    font-size: 20px;
  }
  .toc-contact-head__desc {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
  }
  .toc-contact-head__arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
  .toc-contact-head__arrow svg {
    width: 28px;
    height: 28px;
  }
  .toc-contact-head:hover .toc-contact-head__arrow {
    transform: translateY(-50%) translate(2px, -2px);
  }
  .toc-contact__panel {
    border-radius: 16px;
  }
  .toc-contact__inner {
    padding: 36px 20px 30px;
  }
  .toc-contact__title {
    font-size: 20px;
    line-height: 1.5em;
  }
  .toc-contact__desc {
    font-size: 13px;
    line-height: 1.7em;
    margin-bottom: 24px;
  }
  .toc-contact__actions {
    flex-direction: column;
    gap: 16px;
  }
  .toc-contact__email-badge {
    height: 42px;
    padding: 0 16px 0 0;
  }
  .toc-contact__email-icon {
    width: 42px;
    height: 42px;
  }
  .toc-contact__email-icon img {
    width: 22px;
    height: 22px;
  }
  .toc-contact__email-badge span {
    font-size: 15px;
  }
  .toc-contact__socials {
    gap: 16px;
  }
  .toc-contact__social {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .toc-contact__social img {
    width: 24px;
    height: 24px;
  }
  .toc-contact__tips-bar {
    padding: 20px;
  }
  .toc-contact__tips {
    font-size: 11px;
  }
}
