:root {
  --primary: #8b5cf6;
  --brand-pink: #ec4899;
  --bg-light: #f6f5f8;
  --bg-dark: #0a0812;
  --charcoal: #0a0812;
  --text-light: #f1f5f9;
  --text-muted: rgba(255, 255, 255, 0.6);
  --white: #ffffff;
  --font-display: "Geom", sans-serif;
  --font-body: "Figtree", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-style: normal !important;
}

html {
  scroll-behavior: smooth;
}

body.page {
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

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

.header__container,
.hero__container,
.overview__container,
.process__container,
.vision__container,
.value__container,
.platform__container,
.contact__container,
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 48px;
  line-height: 1;
}

.section-title--sm {
  font-size: 2.25rem;
  margin-bottom: 24px;
}
.section-title--lg {
  font-size: 3rem;
}
.section-title--xl {
  font-size: 3.5rem;
  margin-bottom: 32px;
}
.section-title--xxl {
  font-size: 3rem;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .section-title--sm {
    font-size: 4.5rem;
    margin-bottom: 32px;
  }
  .section-title--lg {
    font-size: 6rem;
  }
  .section-title--xl {
    font-size: 10rem;
    margin-bottom: 40px;
  }
  .section-title--xxl {
    font-size: 9rem;
    margin-bottom: 48px;
  }
}

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 32px;
}

.section-tag--primary {
  color: var(--primary);
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px) saturate(150%);
  -webkit-backdrop-filter: blur(15px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

.box-item {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.box-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  padding: 16px 32px;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

@media (min-width: 768px) {
  .btn {
    padding: 20px 48px;
  }
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  color: var(--white);
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
}

.btn--primary:not(:disabled):hover {
  box-shadow: 0 20px 40px -10px rgba(139, 92, 246, 0.7);
  transform: translateY(-2px);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--icon {
  gap: 24px;
  font-size: 18px;
  letter-spacing: 0.3em;
  font-family: var(--font-display);
}

.btn--icon .btn__icon {
  font-size: 30px;
  transition: transform 0.3s;
}

.btn--icon:hover .btn__icon {
  transform: translateX(8px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo__link {
  display: block;
}

.logo__img {
  height: 48px;
  width: auto;
  display: block;
}

.logo__img--sm {
  height: 32px;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

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

.nav {
  display: none;
  align-items: center;
  gap: 40px;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav__link {
  font-size: 14px;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--brand-pink));
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 0 60px;
  background-image: url("images/GoQube.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-dark);
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, var(--bg-dark));
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero {
    padding: 120px 0 80px;
  }
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero__bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  opacity: 0.5;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-40px) rotate(5deg);
  }
}

.hero__container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1152px;
}

.hero__content {
  padding: 40px;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__content {
    padding: 96px;
  }
}

.hero__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  max-width: 768px;
  margin: 0 auto 64px;
  line-height: 1.6;
  font-weight: 300;
}

@media (min-width: 768px) {
  .hero__desc {
    font-size: 1.5rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.overview {
  position: relative;
  padding: 100px 0;
  background-image: url("images/goqube-parallax.png");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .overview {
    padding: 192px 0;
  }
}

.overview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-dark);
  opacity: 0.6;
  pointer-events: none;
}

.overview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(37, 24, 67, 0.15) 15%,
    rgba(49, 31, 92, 0.05) 50%,
    rgba(41, 27, 74, 0.15) 85%,
    var(--bg-dark) 100%
  );
  pointer-events: none;
}

.overview__container {
  position: relative;
  z-index: 10;
  max-width: 1152px;
}

.overview__content {
  padding: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .overview__content {
    padding: 96px;
  }
}

.overview__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 896px;
  margin: 0 auto;
}

.overview__text p {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .overview__text {
    font-size: 1.5rem;
  }
}

.process {
  padding: 80px 0;
  background-color: var(--charcoal);
}

@media (min-width: 768px) {
  .process {
    padding: 128px 0;
  }
}

.process__header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .process__header {
    margin-bottom: 96px;
  }
}

.process__grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .process__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1280px) {
  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-card {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: border-color 0.3s ease;
  border-color: rgba(255, 255, 255, 0.1);
  height: 100%;
}

@media (min-width: 1280px) {
  .process-card {
    padding: 24px;
  }
}

.process-card:hover {
  border-color: rgba(139, 92, 246, 0.5);
}

.process-card:hover .process-card__number {
  color: var(--primary);
}

.process-card__number {
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.process-card__title {
  font-family: var(--font-display);
  font-size: 30px;
  text-transform: uppercase;
  background: linear-gradient(to right, var(--primary), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.process-card__desc {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  font-weight: 300;
  font-size: 1rem;
}

.vision {
  position: relative;
  padding: 100px 0;
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2000");
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 768px) {
  .vision {
    padding: 192px 0;
  }
}

.vision::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-dark);
  opacity: 0.6;
  pointer-events: none;
}

.vision::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(139, 92, 246, 0.15) 15%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(139, 92, 246, 0.15) 85%,
    var(--bg-dark) 100%
  );
  pointer-events: none;
}

.vision__container {
  position: relative;
  z-index: 10;
  max-width: 1152px;
}

.vision__content {
  padding: 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .vision__content {
    padding: 96px;
  }
}

.vision__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4;
  max-width: 896px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .vision__desc {
    font-size: 2.25rem;
  }
}

.value {
  padding: 80px 0;
  position: relative;
}

.value::before {
    content: "";
background-image: linear-gradient(rgb(139, 92, 246) 1px, transparent 1px), linear-gradient(90deg, rgb(139, 92, 246) 1px, transparent 1px);
background-size: 50px 50px;
position: absolute;
inset: 0;
opacity: 5%;
}

@media (min-width: 768px) {
  .value {
    padding: 128px 0;
  }
}

.value__header {
  margin-bottom: 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .value__header {
    margin-bottom: 96px;
  }
}

.value__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.5rem;
  font-weight: 300;
  max-width: 768px;
  margin: 0 auto;
}

.value__grid {
  display: grid;
  gap: 24px 48px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .value__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  backdrop-filter: blur(5px) saturate(150%);
  -webkit-backdrop-filter: blur(5px) saturate(150%);
}

@media (min-width: 768px) {
  .value-item {
    gap: 32px;
    padding: 32px;
  }
}

.value-item__icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
}

.value-item__icon {
  font-size: 24px;
}

.value-item__text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  font-weight: 300;
}

.platform {
  padding: 80px 0;
  background-color: var(--charcoal);
  overflow: hidden;
}

@media (min-width: 768px) {
  .platform {
    padding: 128px 0;
  }
}

.platform__header {
  text-align: center;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .platform__header {
    margin-bottom: 80px;
  }
}

.platform__carousel-wrapper {
  margin-bottom: 120px;
  position: relative;
  padding-bottom: 80px;
}

@media (min-width: 768px) {
  .platform__carousel-wrapper {
    margin-bottom: 80px;
    padding-bottom: 0;
  }
}

.platform__carousel {
  padding: 0;
}
@media (min-width: 768px) {
  .platform__carousel {
    padding: 0 80px;
  }
}

.platform__carousel .slick-list {
  overflow: hidden;
}

.platform__carousel .slick-slide {
  padding: 0 15px;
  transition: opacity 0.3s ease;
}

.platform__carousel .slick-track {
  display: flex;
}

.slick-arrow.platform__arrow {
  position: absolute;
  top: auto;
  bottom: -90px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s;
  cursor: pointer;
  padding: 0;
  outline: none;
  transform: none;
}

@media (min-width: 768px) {
  .slick-arrow.platform__arrow {
    width: 56px;
    height: 56px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}

.slick-arrow.platform__arrow::before {
  display: none;
}

.slick-arrow.platform__arrow:hover {
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  border-color: transparent;
}

.slick-arrow.platform__arrow-prev {
  left: 0;
}
@media (min-width: 768px) {
  .slick-arrow.platform__arrow-prev {
    left: 8px;
  }
}
.slick-arrow.platform__arrow-prev:hover {
  padding-right: 8px;
}

.slick-arrow.platform__arrow-next {
  left: auto;
  right: 0;
}
@media (min-width: 768px) {
  .slick-arrow.platform__arrow-next {
    right: 8px;
  }
}
.slick-arrow.platform__arrow-next:hover {
  padding-left: 8px;
}

.platform__carousel .slick-dots {
  bottom: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  text-align: center;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  flex-wrap: wrap;
  max-width: 100%;
}

@media (min-width: 768px) {
  .platform__carousel .slick-dots {
    bottom: -55px;
    left: 50%;
    transform: translateX(-50%);
    flex-wrap: nowrap;
    max-width: none;
  }
}

.platform__carousel .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.platform__carousel .slick-dots li button {
  width: 12px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0;
  transition: all 0.3s ease;
}

.platform__carousel .slick-dots li button::before {
  content: none;
}

.platform__carousel .slick-dots li.slick-active button {
  width: 64px;
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
}

.platform__features {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
}

@media (min-width: 768px) {
  .platform__features {
    margin-top: 100px;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .platform__features {
    grid-template-columns: repeat(6, 1fr);
  }
}

.platform-slide__inner {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}

@media (min-width: 768px) {
  .platform-slide__inner {
    min-height: 700px;
  }
}

.platform-slide__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.platform-slide__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  mix-blend-mode: luminosity;
}

.platform-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    var(--bg-dark),
    rgba(10, 8, 18, 0.1),
    transparent
  );
}

.platform-slide__content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 24px;
}

@media (min-width: 768px) {
  .platform-slide__content {
    width: 60%;
    padding: 40px;
  }
}

.platform-slide__icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 40px;
}

.platform-slide__icon {
  font-size: 48px;
}

.platform-slide__title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 24px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .platform-slide__title {
    font-size: 2.5rem;
    margin-bottom: 32px;
  }
}

.platform-slide__desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

@media (min-width: 768px) {
  .platform-slide__desc {
    font-size: 1.2rem;
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .feature-card {
    padding: 32px;
  }
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.05);
}

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

.feature-card__icon {
  color: var(--primary);
  font-size: 30px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.3s ease;
}

.feature-card__text {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.8);
}

.contact {
  padding: 80px 0;
  position: relative;
  background-image: url("images/goqube-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--bg-dark);
  opacity: 0.9;
  pointer-events: none;
}

.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    to bottom,
    var(--bg-dark) 0%,
    rgba(139, 92, 246, 0.1) 15%,
    rgba(139, 92, 246, 0.05) 50%,
    rgba(139, 92, 246, 0.1) 85%,
    var(--bg-dark) 100%
  );
  pointer-events: none;
}

@media (min-width: 768px) {
  .contact {
    padding: 160px 0;
  }
}

.contact__container {
  position: relative;
  z-index: 10;
  max-width: 1024px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.contact__title {
  background: linear-gradient(to right, var(--primary), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 48px;
}

.contact__form-wrapper {
  padding: 24px;
  max-width: 896px;
  margin: 0 auto;
  border-color: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .contact__form-wrapper {
    padding: 64px;
  }
}

.contact__subtitle {
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 40px;
}

.contact__input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 24px;
  font-size: 16px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  outline: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .contact__input {
    padding: 32px 40px;
    font-size: 20px;
  }
}

.contact__input::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.contact__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.contact .btn {
  flex-shrink: 0;
}

.contact__success {
  padding: 40px 0;
  animation: fadeIn 0.5s ease;
}

.success-icon {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 16px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.success-desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
  }
}

.footer__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer__left {
    flex-direction: row;
  }
}

.footer__copyright {
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

@media (min-width: 768px) {
  .footer__links {
    gap: 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 32px;
  }
}

.footer__link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.15em;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer__link:hover {
  background: linear-gradient(to right, var(--primary), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}

.social {
  display: flex;
  align-items: center;
  gap: 32px;
}

.social__icon {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: color 0.3s ease, background 0.3s ease;
}

.social__icon:hover {
  background: linear-gradient(135deg, var(--primary), var(--brand-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: var(--primary);
}
