* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  margin: 0;
  min-height: 100vh;
  background: #8d2d52;
}

.page {
  min-height: 100vh;
  padding-bottom: 80px;
  background:
    linear-gradient(
      to bottom,
      rgba(170, 60, 95, 0.18),
      rgba(120, 30, 60, 0.34)
    ),
    url("img/bg-desktop.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #8d2d52;  
}

.page::before {
  content: "";

  position: fixed;
  inset: 0;

  pointer-events: none;

  z-index: 0;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 170, 210, 0.10),
      transparent 28%
    ),

    radial-gradient(
      circle at 80% 20%,
      rgba(255, 210, 235, 0.08),
      transparent 26%
    ),

    radial-gradient(
      circle at 75% 70%,
      rgba(255, 120, 180, 0.10),
      transparent 30%
    );

  animation: softGlow 12s ease-in-out infinite;
}

/* PARTICLES */

.particles {
  position: fixed;
  inset: 0;

  pointer-events: none;
  z-index: 1;

  background-image:
    radial-gradient(circle, rgba(255,255,255,0.65) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,170,215,0.55) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255,255,255,0.45) 0 1px, transparent 2px);

  background-size:
    180px 180px,
    260px 260px,
    340px 340px;

  background-position:
    20px 40px,
    120px 90px,
    60px 180px;

  opacity: 0.45;

  animation: particlesFloat 28s linear infinite;
}

.hearts-layer {
  position: fixed;
  inset: 0;

  pointer-events: none;

  z-index: 3;
}

.heart {
  position: absolute;

  opacity: 0.16;

  filter:
    brightness(0)
    saturate(100%)
    invert(90%)
    sepia(12%)
    saturate(1400%)
    hue-rotate(292deg)

    blur(1.3px)

    drop-shadow(0 0 22px rgba(255, 170, 220, 1))
    drop-shadow(0 0 48px rgba(255, 120, 190, 0.95))
    drop-shadow(0 0 90px rgba(255, 120, 190, 0.62));

  animation: heartPulse 7s ease-in-out infinite;
}

.heart-1 {
  width: 44px;

  top: 110px;
  left: 48px;

  animation-delay: 0s;
}

.heart-2 {
  width: 48px;

  right: 250px;
  bottom: 130px;

  animation-delay: 2s;
}

.heart-3 {
  width: 36px;

  top: 380px;
  left: 790px;

  animation-delay: 4s;
}

.heart-4 {
  width: 78px;

  top: 180px;
  right: 55px;

  animation-delay: 1s;
}

@keyframes heartPulse {

  0% {
    opacity: 0.10;

    transform:
      translateY(0px)
      scale(0.96);

    filter:
      brightness(0)
      saturate(100%)
      invert(88%)
      sepia(18%)
      saturate(1180%)
      hue-rotate(290deg)
      brightness(108%)

      blur(1.3px)

      drop-shadow(0 0 8px rgba(255, 180, 220, 0.35))
      drop-shadow(0 0 18px rgba(255, 120, 190, 0.22));
  }

  50% {
    opacity: 1;

    transform:
      translateY(-6px)
      scale(1.08);

    filter:
      brightness(0)
      saturate(100%)
      invert(92%)
      sepia(14%)
      saturate(1600%)
      hue-rotate(292deg)
      brightness(118%)

      blur(1.3px)

      drop-shadow(0 0 28px rgba(255, 210, 235, 1))
      drop-shadow(0 0 64px rgba(255, 140, 210, 1))
      drop-shadow(0 0 120px rgba(255, 120, 190, 0.85));
  }

  100% {
    opacity: 0.10;

    transform:
      translateY(0px)
      scale(0.96);

    filter:
      brightness(0)
      saturate(100%)
      invert(88%)
      sepia(18%)
      saturate(1180%)
      hue-rotate(290deg)
      brightness(108%)

      blur(1.3px)

      drop-shadow(0 0 8px rgba(255, 180, 220, 0.35))
      drop-shadow(0 0 18px rgba(255, 120, 190, 0.22));
  }
}

@keyframes particlesFloat {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-180px);
  }
}

@keyframes glassShimmer {
  0% {
    transform: translateX(-160%) rotate(12deg);
  }

  100% {
    transform: translateX(260%) rotate(12deg);
  }
}

@keyframes softGlow {
  0% {
    opacity: 0.72;
    filter: brightness(1);
  }

  50% {
    opacity: 1;
    filter: brightness(1.12);
  }

  100% {
    opacity: 0.72;
    filter: brightness(1);
  }
}

.topbar,
.hero,
.benefits,
.final,
.info-section {
  position: relative;
  z-index: 4;
}

/* TOPBAR */

.topbar {
  width: calc(100% - 140px);
  max-width: 1260px;
  height: 104px;

  margin: 0 auto;
  transform: translateY(34px);

  display: grid;
  grid-template-columns: 190px 1px 1fr 1px 250px;
  align-items: center;
  gap: 34px;

  padding: 0 38px;

  border-radius: 30px;

  background:
    linear-gradient(
      90deg,
      rgba(120, 35, 70, 0.48) 0%,
      rgba(165, 55, 95, 0.40) 35%,
      rgba(125, 35, 70, 0.36) 70%,
      rgba(85, 18, 45, 0.52) 100%
    );

  border: 1px solid rgba(255, 235, 245, 0.45);


  box-shadow:
    0 0 42px rgba(255, 110, 175, 0.34),
    0 18px 50px rgba(80, 10, 35, 0.28)
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -22px 42px rgba(90, 15, 45, 0.22);

  position: relative;
  z-index: 10;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  pointer-events: none;

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.22),
    rgba(255, 255, 255, 0.03)
  );
}

/* LOGO */

.topbar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar-logo img {
  height: 80px;
  max-width: 150px;
  object-fit: contain;

  filter:
    drop-shadow(0 0 7px rgba(255, 190, 225, 0.65))
    drop-shadow(0 0 18px rgba(255, 120, 180, 0.45))
    drop-shadow(0 0 34px rgba(255, 120, 180, 0.25));

  transition: 0.3s;
}

.topbar-logo img:hover {
  filter:
    drop-shadow(0 0 11px rgba(255, 210, 235, 0.8))
    drop-shadow(0 0 28px rgba(255, 120, 180, 0.62))
    drop-shadow(0 0 48px rgba(255, 120, 180, 0.38));
}

/* DIVIDERS */

.topbar-divider {
  width: 1px;
  height: 48px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );

  box-shadow: 0 0 14px rgba(255, 185, 220, 0.45);
}

/* NAVIGATION */

.topbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-evenly;

  width: 100%;
}

.topbar-nav a {
  color: white;
  text-decoration: none;

  font-size: 22px;
  font-weight: 600;

  opacity: 0.94;

  transition: 0.25s;

  text-shadow: 0 2px 12px rgba(95, 20, 50, 0.25);
}

.topbar-nav a:hover {
  opacity: 1;

  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.7),
    0 0 24px rgba(255, 130, 185, 0.45);
}

/* TOPBAR BUTTON */

.topbar-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  height: 60px;
  width: 100%;

  border-radius: 20px;

  text-decoration: none;
  color: white;

  font-size: 19px;
  font-weight: 800;

  position: relative;
  z-index: 2;

  background:
    linear-gradient(
      135deg,
      rgba(255, 145, 185, 0.95),
      rgba(255, 95, 150, 0.88)
    );

  border: 1px solid rgba(255, 255, 255, 0.55);

  box-shadow:
    0 0 26px rgba(255, 110, 170, 0.62),
    0 8px 24px rgba(90, 15, 40, 0.28),
    inset 0 0 18px rgba(255, 255, 255, 0.18);

  transition: 0.25s;
}

.topbar-btn:hover {
  transform: translateY(-1px);

  box-shadow:
    0 0 32px rgba(255, 110, 170, 0.62),
    inset 0 0 20px rgba(255, 255, 255, 0.24);
}

.tg-icon {
  width: 28px;
  height: 28px;

  object-fit: contain;

  flex-shrink: 0;

  margin-right: 4px;

  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 8px rgba(255,255,255,0.45));
}

/* HERO */

.hero {
  min-height: 680px;
  
  display: flex;
  align-items: center;
  
  padding: 200px 8% 80px;
}

.hero-content {
  max-width: 560px;
}

h1 {
  font-size: 58px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 1px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

.subtitle {
  margin-top: 28px;
  font-size: 26px;
  line-height: 1.4;
}

.note {
  margin-top: 24px;
  font-size: 19px;
}

/* BUTTON */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  min-width: 300px;
  height: 78px;
  padding: 0 36px;
  border-radius: 28px;
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff8cac, #ff5f91);
  border: 2px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 0 25px rgba(255, 120, 170, 0.9),
    inset 0 0 18px rgba(255, 255, 255, 0.25);
}

/* BENEFITS */

.benefits {
  padding: 40px 6% 60px;
  text-align: center;
}

.benefits h2,
.final h2 {
  font-size: 34px;
  margin-bottom: 34px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  position: relative;
  overflow: hidden;

  min-height: 250px;
  padding: 38px 24px;

  border-radius: 18px;

  background:
    linear-gradient(
      90deg,
      rgba(120, 35, 70, 0.42) 0%,
      rgba(165, 55, 95, 0.34) 45%,
      rgba(85, 18, 45, 0.48) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 18px 45px rgba(90, 15, 45, 0.28),
    0 0 34px rgba(255, 120, 180, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -22px 36px rgba(120, 25, 60, 0.18);

  transition: 0.28s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 17px;
  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.22),
      rgba(255, 255, 255, 0.04) 35%,
      rgba(255, 255, 255, 0) 70%
    );
}

.card::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;

  width: 80%;
  height: 45%;

  background: rgba(255, 255, 255, 0.18);
  filter: blur(26px);
  transform: rotate(-18deg);

  pointer-events: none;
}

.card:hover {
  transform: translateY(-5px);

  border-color: rgba(255, 255, 255, 0.48);

  box-shadow:
    0 24px 60px rgba(90, 15, 45, 0.34),
    0 0 46px rgba(255, 120, 180, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -22px 36px rgba(120, 25, 60, 0.22);
}

.card .icon,
.card h3,
.card p {
  position: relative;
  z-index: 2;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 72px;
  margin-bottom: 22px;
}

.benefit-icon {
  width: 72px;
  height: 72px;

  display: block;

  object-fit: contain;

  filter:
    brightness(0) invert(1)
    drop-shadow(0 0 12px rgba(255,255,255,0.45))
    drop-shadow(0 0 24px rgba(255,150,210,0.3));
}

.card h3 {
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 20px;
}

.card p {
  font-size: 18px;
  line-height: 1.4;
}

/* FINAL */

.final {
  padding: 0 6% 90px;
}

.final-box {
  position: relative;
  overflow: hidden;

  max-width: 900px;

  margin: 0 auto;

  padding: 62px 48px;

  text-align: center;

  border-radius: 24px;

  background:
    linear-gradient(
      90deg,
      rgba(120, 35, 70, 0.42) 0%,
      rgba(165, 55, 95, 0.34) 40%,
      rgba(125, 35, 70, 0.26) 70%,
      rgba(70, 12, 38, 0.50) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 24px 64px rgba(90, 15, 45, 0.30),
    0 0 42px rgba(255, 120, 180, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    inset 0 -24px 42px rgba(120, 25, 60, 0.18);
}

.final-box::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 23px;

  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.20),
      rgba(255,255,255,0.05) 32%,
      rgba(255,255,255,0) 70%
    );
}

.final-box::after {
  content: "";

  position: absolute;

  top: -35%;
  left: -20%;

  width: 60%;
  height: 45%;

  background: rgba(255,255,255,0.14);

  filter: blur(34px);

  transform: rotate(-14deg);

  pointer-events: none;
}

.final-box h2,
.final-box p,
.final-box .btn {
  position: relative;
  z-index: 2;
}

.final-box p {
  font-size: 20px;
}

/* MOBILE */

@media (max-width: 768px) {

  .page {
    background:
      linear-gradient(
        to bottom,
        rgba(170, 60, 95, 0.18),
        rgba(120, 30, 60, 0.34)
      ),
      url("img/bg-mobile.png");

    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding-bottom: 60px;
  }

  /* TOPBAR */

  .topbar {
    width: calc(100% - 28px);
    height: auto;

    margin: 0 auto;
    transform: translateY(18px);

    grid-template-columns: 1fr;
    gap: 18px;

    padding: 22px 20px;

    border-radius: 26px;
  }

  .topbar-logo img {
    height: 74px;
    max-width: 110px;
  }

  .topbar-divider {
    display: none;
  }

  .topbar-nav {
    width: 100%;

    display: grid;
    grid-template-columns: 1fr 1fr 1fr;

    align-items: center;
  }

  .topbar-nav a {
    text-align: center;
    font-size: 18px;
    padding: 0;
  }

  .topbar-nav a {
    font-size: 17px;
    padding: 0 6px;
  }

  .topbar-btn {
    width: 100%;
    max-width: 280px;
    height: 54px;

    margin: 0 auto;

    font-size: 17px;
  }

  .tg-icon {
    width: 26px;
    height: 26px;
  }

  /* HERO */

  .hero {
    min-height: 680px;

    padding:
      150px
      24px
      70px;

    align-items: flex-start;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: 42px;
    line-height: 1.15;
  }

  .subtitle {
    margin-top: 24px;

    font-size: 21px;
    line-height: 1.45;
  }

  .note {
    margin-top: 22px;

    font-size: 16px;
    line-height: 1.45;
  }

  .btn {
    min-width: 260px;
    height: 66px;

    font-size: 20px;

    border-radius: 24px;
  }

  .hero .btn {
    display: flex;

    margin: 34px auto 0;

    justify-content: center;
    align-items: center;
  }

  /* BENEFITS */

  .benefits {
    padding: 35px 20px 55px;
  }

  .benefits h2,
  .final h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .card {
    min-height: auto;
    padding: 34px 24px;
  }

  .benefit-icon {
    width: 72px;
    height: 72px;
  }

  .card h3 {
    font-size: 21px;
  }

  .card p {
    font-size: 18px;
  }

  /* FINAL CTA */

  .final {
    padding: 0 20px 65px;
  }

  .final-box {
    max-width: 100%;

    padding: 44px 24px;

    border-radius: 24px;
  }

  .final-box h2 {
    font-size: 29px;
  }

  .final-box p {
    font-size: 18px;
    line-height: 1.5;
  }

  /* INFO SECTIONS */

  .info-section {
    max-width: calc(100% - 32px);

    margin: 0 auto 60px;

    padding: 42px 24px;

    border-radius: 24px;
  }

  .info-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .info-section p {
    font-size: 18px;
    line-height: 1.6;
  }

  /* FAQ */

  .faq-item {
    margin-top: 28px;

    padding: 24px 20px;

    border-radius: 20px;
  }

  .faq-question,
  .faq-answer {
    gap: 0px !important;
  }

  .faq-answer {
    margin-top: 20px;
  }

  .faq-label {
    width: 36px;
    height: 36px;
    min-width: 36px;

    border-radius: 12px;

    font-size: 16px;
  }

  .faq-question,
  .faq-answer {
    flex-direction: column;

    align-items: center;

    text-align: center;
  }

  .faq-question h3,
  .faq-answer p {
    width: 100%;
    margin-top: 0;
    margin: 10px 0 0 !important;
    text-align: center;
  }

  .faq-label {
    margin-bottom: 0 !important;
  }

  .faq-question h3 {
    font-size: 20px;
    line-height: 1.35;
  }

  .faq-answer p {
    font-size: 17px;
    line-height: 1.6;
  }

  /* CONTACTS */

  .contacts-grid {
    width: 100%;
    max-width: 100%;
  }

  .contact-card {
    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    min-height: auto !important;

    padding: 34px 24px !important;

    gap: 18px !important;

    text-align: center !important;
  }

  .contact-icon {
    width: 120px !important;
    height: 120px !important;
    min-width: 120px !important;
  }

  .contact-icon img {
    width: 120px !important;
    height: 120px !important;
  }

  .contact-info {
    width: 100% !important;
    text-align: center !important;
    flex: unset !important;
  }

  .contact-info h3 {
    font-size: 28px !important;
    margin: 0 !important;
  }

  /* HEARTS */

  .heart-1 {
    width: 34px;

    top: 115px;
    left: 18px;
  }

  .heart-2 {
    width: 42px;

    right: 34px;
    bottom: 110px;
  }

  .heart-3 {
    width: 30px;

    top: 420px;
    left: 52%;
  }

  .heart-4 {
    width: 58px;

    top: 190px;
    right: 18px;
  }
}

/* ABOUT SECTION */

.info-section {
  position: relative;
  overflow: hidden;

  max-width: 980px;

  margin: 0 auto 80px;

  padding: 60px 56px;

  border-radius: 28px;

  text-align: center;

  background:
    linear-gradient(
      90deg,
      rgba(120, 35, 70, 0.42) 0%,
      rgba(165, 55, 95, 0.34) 38%,
      rgba(125, 35, 70, 0.26) 70%,
      rgba(70, 12, 38, 0.48) 100%
    );

  border: 1px solid rgba(255, 255, 255, 0.42);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 24px 64px rgba(90, 15, 45, 0.28),
    0 0 42px rgba(255, 120, 180, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 -24px 42px rgba(120, 25, 60, 0.18);
}

.info-section::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 27px;

  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.20),
      rgba(255, 255, 255, 0.04) 36%,
      rgba(255, 255, 255, 0) 72%
    );
}

.info-section::after {
  content: "";

  position: absolute;

  top: -34%;
  left: -20%;

  width: 58%;
  height: 42%;

  background: rgba(255, 255, 255, 0.14);

  filter: blur(34px);

  transform: rotate(-14deg);

  pointer-events: none;
}

.info-section h2,
.info-section p {
  position: relative;
  z-index: 2;
}

.info-section h2 {
  margin-bottom: 28px;

  font-size: 42px;
  font-weight: 800;

  letter-spacing: 0.5px;

  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.22),
    0 4px 18px rgba(80, 10, 35, 0.22);
}

.info-section p {
  max-width: 820px;

  margin: 0 auto 18px;

  font-size: 21px;
  line-height: 1.65;

  color: rgba(255, 255, 255, 0.92);

  text-shadow:
    0 2px 12px rgba(80, 10, 35, 0.22);
}

.info-section p:last-child {
  margin-bottom: 0;
}

/* FAQ */

.faq-item {
  position: relative;
  z-index: 2;

  margin-top: 42px;

  text-align: left;

  padding: 30px 34px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.10),
      rgba(255,255,255,0.035)
    );

  border: 1px solid rgba(255,255,255,0.18);

  box-shadow:
    0 12px 34px rgba(90, 15, 45, 0.14),
    inset 0 1px 0 rgba(255,255,255,0.14);
}

.faq-question,
.faq-answer {
  display: flex;
  
  align-items: flex-start;

  justify-content: flex-start;

  gap: 18px;

  text-align: left;
}

.faq-answer {
  margin-top: 22px;
}

/* Q / A LABEL */

.faq-label {
  width: 42px;
  height: 42px;

  min-width: 42px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 900;

  color: white;

  background:
    linear-gradient(
      135deg,
      rgba(255, 145, 190, 0.95),
      rgba(255, 95, 150, 0.82)
    );

  border: 1px solid rgba(255,255,255,0.28);

  box-shadow:
    0 0 18px rgba(255, 110, 170, 0.58),
    0 0 34px rgba(255, 110, 170, 0.24),
    inset 0 0 12px rgba(255,255,255,0.18);

  text-shadow:
    0 0 12px rgba(255,255,255,0.55);
}

/* ANSWER LABEL */

.answer-label {
  background:
    linear-gradient(
      135deg,
      rgba(255, 175, 210, 0.92),
      rgba(255, 120, 170, 0.82)
    );

  box-shadow:
    0 0 18px rgba(255, 150, 200, 0.55),
    0 0 34px rgba(255, 120, 180, 0.22),
    inset 0 0 12px rgba(255,255,255,0.18);
}

/* FAQ TEXT */

.faq-question h3 {
  padding-top: 6px;

  font-size: 25px;
  font-weight: 700;

  line-height: 1.4;

  color: white;

  text-shadow:
    0 2px 12px rgba(80, 10, 35, 0.24);
}

.faq-answer p {
  padding-top: 4px;

  font-size: 20px;
  line-height: 1.7;

  color: rgba(255,255,255,0.9);

  text-shadow:
    0 2px 12px rgba(80, 10, 35, 0.18);
}

.faq-question h3,
.faq-answer p {
  width: 100%;

  text-align: left;

  margin: 0;
}

/* CONTACTS */

.contacts-text {
  position: relative;
  z-index: 2;

  margin-bottom: 42px !important;
}

.contacts-grid {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  gap: 24px;

  max-width: 760px;

  margin: 0 auto;
}

.contact-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: 170px 1fr 170px;
  align-items: center;

  min-height: 140px;
  padding: 20px 34px;

  border-radius: 24px;
  text-decoration: none;

  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.14),
      rgba(255,255,255,0.045)
    );

  border: 1px solid rgba(255,255,255,0.22);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 14px 42px rgba(90, 15, 45, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.16);

  transition: 0.28s;
}

.contact-card::before {
  content: "";

  position: absolute;
  inset: 1px;

  border-radius: 23px;

  pointer-events: none;

  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0.16),
      rgba(255,255,255,0.03) 36%,
      rgba(255,255,255,0) 72%
    );
}

.contact-card:hover {
  border-color: rgba(255,255,255,0.36);

  box-shadow:
    0 20px 54px rgba(90, 15, 45, 0.22),
    0 0 34px rgba(255, 120, 180, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ICON */

.contact-icon {
  position: relative;
  z-index: 2;

  width: 120px;
  height: 120px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 140px;
  height: 140px;

  object-fit: contain;

  filter:
    drop-shadow(0 0 18px rgba(255,255,255,0.14))
    drop-shadow(0 0 28px rgba(255,120,180,0.16));
}

/* INFO */

.contact-info {
  position: relative;
  z-index: 2;

  text-align: center;
}

.contact-info h3 {
  font-size: 28px;
  font-weight: 800;

  color: white;

  margin-bottom: 8px;

  text-shadow:
    0 2px 14px rgba(80, 10, 35, 0.24);
}

.contact-info p {
  font-size: 20px;

  color: rgba(255,255,255,0.84);

  text-shadow:
    0 2px 10px rgba(80, 10, 35, 0.16);
}

.info-section:last-child {
  margin-bottom: 0;
}

