/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--spacing-section-padding);
  z-index: 1000;
  transition: background-color 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.header--hidden {
  transform: translateY(-100%);
}

.header.scrolled {
  background-color: rgba(5, 14, 42, 0.95);
  backdrop-filter: blur(10px);
}

.header__logo {
  height: 68px;
  width: 168px;
  display: flex;
  align-items: center;
}

.header__logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-2xl);
  align-items: center;
}

.header__nav-link {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-white);
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.header__nav-link.mobile-only {
  display: none;
}

.header__nav-link:hover {
  opacity: 0.5;
}

.header__nav-link.active {
  opacity: 1;
}

.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 10px 0 24px;
  border: 1px solid var(--color-white);
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: var(--font-size-small);
  font-weight: 500;
  font-family: var(--font-family-secondary);
  text-transform: capitalize;
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.header__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  border-radius: var(--radius-pill);
}

.header__cta:hover::before {
  left: 0;
}

.header__cta:hover {
  color: var(--color-primary);
  opacity: 1;
  transform: translateY(-2px);
}

.header__cta:active {
  transform: translateY(0);
}

.header__cta > span {
  position: relative;
  z-index: 1;
}

.header__cta .arrow-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.header__cta:hover .arrow-icon {
  transform: translateX(3px);
}

.header__cta .arrow-circle {
  fill: white;
  transition: fill 0.35s ease;
}

.header__cta .arrow-path {
  stroke: var(--color-primary);
  transition: stroke 0.35s ease;
}

.header__cta:hover .arrow-circle {
  fill: var(--color-primary);
}

.header__cta:hover .arrow-path {
  stroke: white;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-white);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  height: 1080px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 200px;
  background: #0a1628;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(3, 74, 173, 0.3) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(3, 74, 173, 0.2) 0%, transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding-left: var(--spacing-section-padding);
  max-width: calc(737px + var(--spacing-section-padding));
}

.hero__title {
  font-size: var(--font-size-h1);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.06;
  margin-bottom: 31px;
}

.hero__subtitle {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.4;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 168px var(--spacing-section-padding) 80px;
  position: relative;
  background: var(--color-white);
}

.about__intro {
  font-size: var(--font-size-h2);
  font-weight: 400;
  line-height: 1.31;
  max-width: 1246px;
  margin-bottom: 100px;
}

.about__intro .highlight {
  color: var(--color-primary);
}

.about__intro .faded {
  color: var(--color-text-light-gray);
}

/* Scroll text reveal word */
.scroll-word {
  will-change: color;
}

.about__logo-icon {
  display: inline-block;
  width: 85px;
  height: 74px;
  vertical-align: middle;
  margin: 0 8px;
  object-fit: contain;
}

.about__body {
  display: flex;
  align-items: flex-start;
}

.about__label {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-primary);
  white-space: nowrap;
  flex-shrink: 0;
  min-width: 644px;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 93px;
  max-width: 866px;
}

.about__description {
  font-size: var(--font-size-body-lg);
  font-weight: 300;
  line-height: 1.55;
  color: var(--color-black);
  opacity: 0.6;
}

/* Button Component */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 168px;
  height: 52px;
  padding: 0 10px 0 28px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-size: var(--font-size-small);
  font-weight: 500;
  font-family: var(--font-family-secondary);
  line-height: 1;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-outline > span {
  position: relative;
  z-index: 1;
}

.btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transition: left 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
  border-radius: var(--radius-pill);
}

.btn-outline:hover::before {
  left: 0;
}

.btn-outline:hover {
  color: var(--color-white);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-outline:active {
  transform: translateY(0);
}

.btn-outline .arrow-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline .arrow-circle {
  fill: var(--color-primary);
  transition: fill 0.35s ease;
}

.btn-outline .arrow-path {
  stroke: white;
  transition: stroke 0.35s ease;
}

.btn-outline:hover .arrow-icon {
  transform: translateX(3px);
}

.btn-outline:hover .arrow-circle {
  fill: white;
}

.btn-outline:hover .arrow-path {
  stroke: var(--color-primary);
}

/* About Images */
.about__images {
  display: flex;
  gap: 22px;
  margin-top: 104px;
  padding-left: 644px;
}

.about__image-wrap {
  width: 304px;
  height: 159px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
}

.about__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about__image-wrap:hover img {
  transform: scale(1.05);
}

/* ========================================
   FOCUS SECTION (Video Banner)
   ======================================== */
.focus-section {
  height: 1022px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0C0C0C;
  position: relative;
  overflow: hidden;
}

/* Antigravity particle background */
#antigravity-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

#antigravity-bg canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.focus-section__text {
  position: relative;
  z-index: 2;
  font-size: var(--font-size-h3);
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  max-width: 1260px;
  will-change: transform;
  padding: 0 var(--spacing-md);
  text-transform: capitalize;
  pointer-events: none;
}

.focus-section__text .faded {
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  padding: 162px 0;
  position: relative;
  background: linear-gradient(164.6deg, rgba(255, 255, 255, 0.3) 23.86%, rgba(151, 191, 240, 0.3) 86.02%),
              linear-gradient(90deg, #fff 0%, #fff 100%);
  overflow: visible !important;
}

.services__ellipse {
  display: none;
}

.services::after {
  content: '';
  position: absolute;
  top: -3px;
  right: -100px;
  width: 961px;
  height: 739px;
  pointer-events: none;
  opacity: 0.5;
  background: radial-ellipse at center;
  background: radial-gradient(ellipse at center, rgba(228, 239, 251, 0.48) 0%, transparent 70%);
  z-index: 0;
}

.services__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-section-padding);
  display: flex;
  gap: 194px;
  align-items: flex-start;
}

.services__left {
  position: sticky;
  top: 100px;
  width: 668px;
  flex-shrink: 0;
}

.services__title {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.06;
  margin-bottom: 71px;
}

.services__images {
  position: relative;
  height: 551px;
}

.services__images-img1 {
  position: absolute;
  left: 1px;
  top: 0;
  width: 401px;
  height: 471px;
  border-radius: var(--radius-md);
  object-fit: cover;
}

.services__images-img2 {
  position: absolute;
  left: 257px;
  top: 119px;
  width: 411px;
  height: 432px;
  border-radius: var(--radius-md);
  object-fit: cover;
}



.services__right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
  max-width: 618px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 348px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: default;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card:hover .service-card__icon {
  transform: scale(1.1);
}

.service-card:hover .service-card__name {
  color: var(--color-primary);
}

.service-card__header {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-bottom: 32px;
}

.service-card__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

/* SVG stroke drawing animation */
.service-card__icon circle,
.service-card__icon path {
  stroke-dasharray: var(--dash-length, 200);
  stroke-dashoffset: var(--dash-length, 200);
  transition: none;
}

.service-card.is-visible .service-card__icon circle,
.service-card.is-visible .service-card__icon path {
  animation: strokeDraw 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes strokeDraw {
  0% {
    stroke-dashoffset: var(--dash-length, 200);
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.service-card__name {
  font-size: var(--font-size-h4);
  font-weight: 500;
  color: var(--color-primary-dark);
  text-transform: capitalize;
  line-height: 1.17;
  transition: color 0.3s ease;
}

.service-card__desc {
  font-size: var(--font-size-body-sm);
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.6;
  line-height: 1.5;
}

/* ========================================
   NEWS SECTION
   ======================================== */
.news {
  padding: 109px var(--spacing-section-padding) 100px;
  position: relative;
  background: var(--color-white);
}

.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.news__title {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.06;
}

.news__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
}

.news-card {
  background: var(--color-white);
  border-bottom: 1px solid rgba(153, 153, 153, 0.5);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.3s ease;
  cursor: pointer;
}

.news-card:hover {
  border-bottom-color: var(--color-primary);
}

.news-card:hover .news-card__image {
  transform: scale(1.05);
}

.news-card:hover .news-card__title {
  color: var(--color-primary);
}

.news-card:hover .news-card__link {
  color: var(--color-primary);
}

.news-card:hover .news-card__divider {
  background-color: var(--color-primary);
}

.news-card__image {
  width: 100%;
  height: 222px;
  border-radius: 0;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card__body {
  padding: var(--spacing-md) 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  flex: 1;
}

.news-card__meta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  flex: 1;
}

.news-card__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  color: var(--color-text-gray);
  line-height: 1;
  width: fit-content;
}

.news-card__title {
  font-size: var(--font-size-body-sm);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  /* 固定两行高度，确保卡片底部对齐 */
  min-height: calc(var(--font-size-body-sm) * 1.3 * 2);
}

.news-card__footer {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  margin-top: auto;
}

.news-card__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.news-card__date {
  font-size: var(--font-size-small);
  color: var(--color-text-gray);
  line-height: 1.3;
}

.news-card__link {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-small);
  color: var(--color-text-gray);
  line-height: 1.3;
  transition: gap 0.3s ease, color 0.3s ease;
}

.news-card__link svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.news-card__divider {
  display: none;
}

/* ========================================
   DATA SECTION (Second Video Banner)
   ======================================== */
.data-section {
  height: 1022px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a1628;
  position: relative;
  overflow: hidden;
}

.data-section__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.data-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 14, 42, 0.9);
  pointer-events: none;
  z-index: 1;
}

.data-section__text {
  position: relative;
  z-index: 2;
  font-size: var(--font-size-h3);
  font-weight: 400;
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  max-width: 1409px;
  will-change: transform;
  padding: 0 var(--spacing-md);
  text-transform: capitalize;
}

.data-section__text .faded {
  color: rgba(255, 255, 255, 0.3);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
  min-height: 1090px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Top-left ellipse glow */
.contact__ellipse-tl {
  position: absolute;
  top: -337px;
  left: -239px;
  width: 530px;
  height: 530px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(228, 239, 251, 0.48) 0%, transparent 70%);
}

/* Top-right ellipse glow */
.contact__ellipse-tr {
  position: absolute;
  top: -337px;
  right: -95px;
  width: 530px;
  height: 530px;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(228, 239, 251, 0.48) 0%, transparent 70%);
}

/* Bottom dot patterns (shared) */
.contact__pattern-bl,
.contact__pattern-br {
  position: absolute;
  width: 480px;
  height: 480px;
  pointer-events: none;
  opacity: 0.15;
  filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(3207%) hue-rotate(211deg) brightness(91%) contrast(98%);
}

/* Bottom-left dot pattern */
.contact__pattern-bl {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

/* Bottom-right dot pattern */
.contact__pattern-br {
  bottom: 0;
  right: 0;
  transform: scaleY(-1);
}

.contact__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-section-padding);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact__info {
  width: 664px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3xl);
}

.contact__heading {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.contact__title {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--color-primary);
  text-transform: uppercase;
  line-height: 1.06;
}

.contact__desc {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.6;
  line-height: 1.4;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact__detail-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.contact__detail-item img {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.contact__detail-text {
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.6;
  line-height: 1.5;
  letter-spacing: -0.54px;
}

/* Contact Form */
.contact__form-wrapper {
  width: 790px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.contact__form-title {
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.form-row {
  display: flex;
  gap: var(--spacing-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
  flex: 1;
}

.form-group--full {
  width: 100%;
}

.form-label {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: var(--color-black);
  opacity: 0.6;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-small);
  color: var(--color-black);
  background: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(3, 74, 173, 0.1);
  background-color: rgba(3, 74, 173, 0.02);
}

.form-input:focus::placeholder,
.form-textarea:focus::placeholder {
  color: rgba(0, 0, 0, 0.15);
}

.form-input.error,
.form-textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-input.success,
.form-textarea.success {
  border-color: #27ae60;
}

.form-textarea {
  height: 173px;
  resize: vertical;
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 86px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: var(--font-size-body);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  border-radius: var(--radius-round);
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: var(--spacing-md);
}

.form-submit:hover {
  background-color: #050E2A;
}

.form-submit:active {
  opacity: 0.9;
}

.form-submit:disabled {
  background-color: #6b8fbe;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-bg-dark);
  padding: 40px var(--spacing-section-padding) 40px;
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  gap: 45px;
  align-items: center;
  padding-top: 0;
}

.footer__nav-link {
  font-size: var(--font-size-body-sm);
  font-weight: 400;
  color: var(--color-white);
  line-height: 1.5;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.footer__nav-link:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.footer__social-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}

.footer__social-label {
  font-size: var(--font-size-body-sm);
  font-weight: 400;
  color: var(--color-white);
  text-transform: uppercase;
  line-height: 1.5;
}

.footer__social-icons {
  display: flex;
  gap: 31px;
  align-items: center;
}

.footer__social-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.footer__social-icon:hover {
  transform: scale(1.15) translateY(-2px);
  opacity: 1;
  filter: brightness(1.2);
}

.footer__social-icon:active {
  transform: scale(1.05);
}

.footer__social-icon img.social-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.footer__social-icon img.social-icon-inner {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
}

.footer__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__links {
  display: flex;
  gap: var(--spacing-xl);
  align-items: center;
}

.footer__link {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.footer__link:hover {
  color: var(--color-white);
  opacity: 1;
}
