#hero {
  .hero-section {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
      135deg,
      var(--accent-light) 0%,
      var(--accent-dark) 50%,
      var(--info-color) 100%
    );
    overflow: hidden;
    padding: 4rem 1.5rem;
  }
  .hero-glass {
    position: relative;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 1.5rem 3rem 1.5rem 3rem;
    box-shadow: 0 12px 40px 0 rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 3.5rem 3rem;
    max-width: 650px;
    width: 100%;
    z-index: 2;
    animation: slideUpHero-8ASkjdhbaksjdaksdlasid 1s
      cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .hero-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    flex: 1;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
  }
  .hero-btn {
    font-size: 1.05rem;
    padding: 0.9rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    width: 100%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: all 0.25s ease;
    border: none;
  }
  .hero-btn:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }
  .hero-icon {
    font-size: 3.5rem;
    color: var(--accent);
    filter: drop-shadow(0 4px 16px rgba(176, 74, 150, 0.3));
    animation: rotateInHero-8ASkjdhbaksjdaksdlasid 0.9s
      cubic-bezier(0.68, -0.55, 0.265, 1.55);
    flex-shrink: 0;
  }
  .hero-img-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 380px;
    max-width: 50vw;
    opacity: 0.7;
    z-index: 1;
    filter: blur(1px) grayscale(0.2) brightness(1.1);
    border-radius: 0 0 100px 0;
    animation: fadeInLeftHero-8ASkjdhbaksjdaksdlasid 1.1s
      cubic-bezier(0.23, 1, 0.32, 1);
  }
  .hero-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .hero-decor .shape {
    position: absolute;
    background: var(--info-light);
    opacity: 0.18;
    filter: blur(3px);
    animation: shapeRotateHero-8ASkjdhbaksjdaksdlasid 6s infinite alternate
      ease-in-out;
  }
  .hero-decor .shape1 {
    width: 100px;
    height: 100px;
    right: 8vw;
    top: 15%;
    background: var(--accent-bg);
    transform: rotate(25deg);
    animation-delay: 0.3s;
  }
  .hero-decor .shape2 {
    width: 60px;
    height: 60px;
    left: 12vw;
    bottom: 20%;
    background: var(--info-color);
    transform: rotate(-15deg);
    animation-delay: 1s;
  }
  .hero-decor .shape3 {
    width: 35px;
    height: 35px;
    right: 45vw;
    bottom: 10%;
    background: var(--accent-light);
    transform: rotate(45deg);
    animation-delay: 1.8s;
  }
  @media (max-width: 900px) {
    .hero-section {
      min-height: 420px;
      padding: 2.5rem 1rem;
    }
    .hero-glass {
      padding: 2.5rem 1.5rem;
    }
    .hero-img-bg {
      width: 200px;
    }
    .hero-header {
      flex-direction: column;
      gap: 1rem;
    }
    .hero-title {
      text-align: center;
    }
  }
  @media (max-width: 600px) {
    .hero-title {
      font-size: 1.75rem;
    }
    .hero-icon {
      font-size: 2.5rem;
    }
    .hero-img-bg {
      display: none;
    }
  }
}
@keyframes slideUpHero-8ASkjdhbaksjdaksdlasid {
  from {
    opacity: 0;
    transform: translateY(60px) rotate(-2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
  }
}
@keyframes fadeInLeftHero-8ASkjdhbaksjdaksdlasid {
  from {
    opacity: 0;
    transform: translateX(-80px) scale(0.9);
  }
  to {
    opacity: 0.7;
    transform: translateX(0) scale(1);
  }
}
@keyframes rotateInHero-8ASkjdhbaksjdaksdlasid {
  from {
    opacity: 0;
    transform: rotate(-180deg) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) scale(1);
  }
}
@keyframes shapeRotateHero-8ASkjdhbaksjdaksdlasid {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(180deg) scale(1.3);
  }
}
#content {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--background-primary),
    var(--primary-bg),
    var(--info-bg)
  );
  position: relative;
  overflow: hidden;
  .side-card {
    position: sticky;
    top: 2rem;
    background: var(--background-tertiary);
    border-radius: 1.25rem;
    padding: 2.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--background-secondary);
  }
  .side-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-bg);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-weight: 600;
  }
  .content-panel {
    background: var(--background-tertiary);
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  }
  .panel-title {
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
  }
  .img-card {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    &:hover img {
      transform: scale(1.04);
    }
  }
  .mini-list {
    display: grid;
    gap: 0.75rem;
    margin-top: 1.25rem;
    .mini-item {
      background: var(--neutral-50);
      border-radius: 0.9rem;
      padding: 0.9rem 1rem;
      display: flex;
      gap: 0.75rem;
      align-items: center;
      transition:
        transform 0.3s ease,
        background 0.3s ease;
      i {
        color: var(--primary);
        font-size: 1.2rem;
      }
      &:hover {
        background: var(--primary-bg);
        transform: translateX(6px);
      }
    }
  }
  .cta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    background: var(--background-tertiary);
    border-radius: 1.25rem;
    padding: 1.75rem 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 6px solid var(--primary);
  }
  .custom-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(var(--bs-primary-rgb), 0.25);
    }
  }
  @media (max-width: 991.98px) {
    .side-card {
      position: static;
    }
  }
}
#cta {
  background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary) 50%,
    var(--accent) 100%
  );
  color: var(--text-light);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#cta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
  opacity: 0.15;
  border-radius: 50%;
  animation: floatASDkadgakjsdlajksdas 20s ease-in-out infinite;
}
#cta::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-light) 0%, transparent 70%);
  opacity: 0.12;
  border-radius: 50%;
  animation: floatASDkadgakjsdlajksdas 25s ease-in-out infinite reverse;
}
@keyframes floatASDkadgakjsdlajksdas {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}
#cta .cta-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  top: 10%;
  right: 5%;
  transform: rotate(45deg);
  animation: rotate 30s linear infinite;
}
@keyframes rotate {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(405deg);
  }
}
#cta .cta-container {
  background: var(--background-tertiary);
  border-radius: 30px;
  padding: 4rem 3rem;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.2),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 2;
}
#cta .cta-container::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--secondary),
    var(--accent),
    var(--primary)
  );
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#cta .cta-container:hover::before {
  opacity: 0.3;
}
#cta .cta-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--text-primary);
  box-shadow: 0 10px 30px rgba(234, 199, 0, 0.3);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}
#cta .cta-container:hover .cta-icon {
  transform: rotate(5deg) scale(1.1);
}
#cta .cta-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#cta .cta-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#cta .cta-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
#cta .cta-btn {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--text-primary);
  padding: 18px 50px;
  font-size: 1.25rem;
  font-weight: 700;
  border: none;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(234, 199, 0, 0.25);
}
#cta .cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--secondary-dark), var(--secondary));
  transition: left 0.5s ease;
  z-index: -1;
}
#cta .cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    width 0.6s ease,
    height 0.6s ease;
  z-index: -1;
}
#cta .cta-btn:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(234, 199, 0, 0.4);
}
#cta .cta-btn:hover::before {
  left: 0;
}
#cta .cta-btn:hover::after {
  width: 300px;
  height: 300px;
}
#cta .cta-btn-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
#cta .cta-btn:hover .cta-btn-icon {
  transform: translateX(5px);
}
#cta .cta-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
#cta .cta-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}
#cta .cta-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #cta {
    padding: 80px 0;
  }
  #cta .cta-container {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
  }
  #cta .cta-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  #cta .cta-title {
    font-size: 2.5rem;
  }
  #cta .cta-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  #cta .cta-btn {
    padding: 15px 35px;
    font-size: 1.1rem;
  }
  #cta .cta-features {
    gap: 1.5rem;
    margin-top: 2rem;
  }
  #cta .cta-decorative {
    display: none;
  }
}
#team {
  padding: 110px 0;
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--neutral-150) 55%,
    var(--background-tertiary) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        circle at 18% 25%,
        rgba(var(--bs-primary-rgb), 0.1) 0%,
        transparent 55%
      ),
      radial-gradient(
        circle at 82% 80%,
        rgba(var(--bs-primary-rgb), 0.06) 0%,
        transparent 58%
      );
    pointer-events: none;
  }
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--primary) 0%,
      var(--accent) 50%,
      var(--secondary) 100%
    );
  }
  .container {
    position: relative;
    z-index: 2;
  }
  .section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    .title-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--background-tertiary);
      border: 1px solid var(--neutral-150);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
      margin-bottom: 16px;
      .badge-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--secondary);
        box-shadow: 0 0 0 6px var(--secondary-bg);
      }
      span {
        color: var(--text-secondary);
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.6px;
      }
    }
    h2 {
      color: var(--text-primary);
      font-size: 3rem;
      font-weight: 900;
      margin-bottom: 14px;
      position: relative;
      &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -14px;
        transform: translateX(-50%);
        width: 90px;
        height: 4px;
        border-radius: 4px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
      }
    }
    p {
      color: var(--text-secondary);
      font-size: 1.15rem;
      max-width: 740px;
      margin: 0 auto;
      line-height: 1.8;
    }
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .team-card {
    grid-column: span 6;
    background: var(--background-tertiary);
    border-radius: 26px;
    border: 1px solid var(--neutral-150);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease,
      border-color 0.35s ease;
    &:hover {
      transform: translateY(-12px);
      border-color: var(--primary);
      box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
      .team-media img {
        transform: scale(1.08);
      }
    }
    &.featured {
      grid-column: span 12;
      background: linear-gradient(
        135deg,
        var(--primary-bg) 0%,
        var(--accent-bg) 65%,
        var(--background-tertiary) 100%
      );
      border: 2px solid var(--primary);
      .team-flag {
        background: linear-gradient(90deg, var(--primary), var(--accent));
        color: var(--text-light);
        border-color: transparent;
      }
    }
    &.compact {
      background: linear-gradient(
        135deg,
        var(--secondary-bg) 0%,
        var(--warning-bg) 100%
      );
    }
    &.minimal {
      background: linear-gradient(
        135deg,
        var(--info-bg) 0%,
        var(--success-bg) 100%
      );
    }
  }
  .team-media {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    &::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        transparent 30%,
        rgba(0, 0, 0, 0.2) 100%
      );
      pointer-events: none;
    }
    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.35s ease;
    }
  }
  .team-body {
    padding: 22px 22px 26px;
    position: relative;
    .team-flag {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid var(--neutral-150);
      background: var(--neutral-50);
      color: var(--text-secondary);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.6px;
      margin-bottom: 12px;
      &::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--primary);
      }
    }
    h3 {
      color: var(--text-primary);
      font-size: 1.65rem;
      font-weight: 900;
      margin-bottom: 10px;
      transition: color 0.3s ease;
    }
    .position {
      color: var(--text-secondary);
      font-size: 1.05rem;
      font-weight: 800;
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.6px;
    }
    p {
      margin: 0;
      color: var(--text-secondary);
      font-size: 1.02rem;
      line-height: 1.85;
    }
  }
  .team-actions {
    margin-top: 34px;
    text-align: center;
    a {
      display: inline-block;
      text-decoration: none;
      font-weight: 900;
      padding: 14px 26px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      color: var(--text-light);
      box-shadow: 0 18px 34px rgba(0, 0, 0, 0.12);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
      &:hover {
        transform: translateY(-3px);
        box-shadow: 0 26px 46px rgba(0, 0, 0, 0.16);
      }
    }
  }
  @media (max-width: 992px) {
    padding: 80px 0;
    .section-title h2 {
      font-size: 2.4rem;
    }
    .team-card {
      grid-column: span 12;
    }
  }
  @media (max-width: 576px) {
    padding: 60px 0;
    .section-title {
      margin-bottom: 50px;
    }
    .team-media {
      height: 210px;
    }
    .team-body {
      padding: 18px 18px 22px;
    }
  }
}
#features {
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--info-bg) 40%,
    var(--background-tertiary) 100%
  );
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}
#features::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 10% 0%, var(--primary-bg) 0%, transparent 55%),
    radial-gradient(circle at 90% 100%, var(--accent-bg) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, var(--secondary-bg) 0%, transparent 60%);
  opacity: 0.65;
  z-index: 0;
  animation: featuresBgDrift 18s ease-in-out infinite alternate;
}
#features .container {
  position: relative;
  z-index: 1;
}
#features .header-wrapper {
  margin-bottom: 3.5rem;
}
#features .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.25rem;
  background: rgba(var(--bs-primary-rgb), 0.12);
  color: var(--primary-dark);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-light);
}
#features .section-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(176, 74, 150, 0.6);
  animation: badgeDotPulse 3s ease-out infinite;
}
#features .section-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
  background: linear-gradient(
    120deg,
    var(--text-primary),
    var(--primary-dark),
    var(--accent-dark)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
#features .section-description {
  font-size: 1.02rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto;
}
#features .section-underline {
  width: 110px;
  height: 3px;
  border-radius: 999px;
  margin: 1.25rem auto 0;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent),
    var(--info-color)
  );
  background-size: 250% 100%;
  animation: underlineSweep 8s linear infinite;
}
#features .row.g-4 > [class*="col-"] {
  display: flex;
}
#features .feature-card {
  position: relative;
  border-radius: 1.4rem;
  padding: 2.2rem 1.9rem 2rem;
  background: linear-gradient(
    145deg,
    var(--background-tertiary),
    var(--background-secondary)
  );
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--text-primary);
  overflow: hidden;
  z-index: 0;
}
#features .feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    var(--primary),
    var(--accent),
    var(--secondary),
    var(--info-color)
  );
  background-size: 260% 260%;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  animation: borderFlow 12s linear infinite;
  z-index: -1;
}
#features .feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    150deg,
    var(--background-tertiary),
    var(--background-primary)
  );
  opacity: 0.85;
  z-index: -1;
}
#features .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(var(--bs-primary-rgb), 0.28);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
#features .feature-card:hover::before {
  opacity: 1;
}
#features .icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--text-light);
  box-shadow: 0 12px 26px rgba(var(--bs-primary-rgb), 0.4);
  transform-origin: center;
  animation: iconFloat 3s ease-in-out infinite alternate;
}
#features .icon-wrapper i {
  font-size: 1.7rem;
}
#features .col-sm-6.col-xl-3:nth-child(1) .icon-wrapper {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
#features .col-sm-6.col-xl-3:nth-child(2) .icon-wrapper {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
}
#features .col-sm-6.col-xl-3:nth-child(3) .icon-wrapper {
  background: linear-gradient(
    135deg,
    var(--secondary-dark),
    var(--secondary-light)
  );
}
#features .col-sm-6.col-xl-3:nth-child(4) .icon-wrapper {
  background: linear-gradient(135deg, var(--info-dark), var(--info-light));
}
#features .feature-card:hover .icon-wrapper {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.06);
}
#features .feature-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
}
#features .feature-text {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 1.15rem;
  flex-grow: 1;
}
#features .feature-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  color: var(--primary-dark);
  border: 1px solid transparent;
  text-decoration: none;
  background: rgba(var(--bs-primary-rgb), 0.08);
  overflow: hidden;
}
#features .feature-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--accent)
  );
  background-size: 220% 100%;
  opacity: 0;
  transform: translateX(-20%);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: -1;
}
#features .feature-link span {
  position: relative;
}
#features .feature-link i {
  font-size: 1rem;
  position: relative;
}
#features .feature-link:hover {
  color: var(--text-light);
  border-color: transparent;
  transform: translateY(-1px);
}
#features .feature-link:hover::before {
  opacity: 1;
  transform: translateX(0);
  animation: linkBorderShift 4s linear infinite;
}
@media (max-width: 991.98px) {
  #features {
    padding: 3.5rem 0 3.75rem;
  }
  #features .section-title {
    font-size: 2.2rem;
  }
  #features .feature-card {
    margin-bottom: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  #features .section-title {
    font-size: 1.9rem;
  }
  #features .feature-card {
    padding: 2rem 1.5rem 1.8rem;
  }
}
@keyframes featuresBgDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -12px, 0) scale(1.05);
  }
  100% {
    transform: translate3d(-14px, 8px, 0) scale(1.03);
  }
}
@keyframes borderFlow {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes underlineSweep {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
@keyframes badgeDotPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(176, 74, 150, 0.6);
  }
  70% {
    transform: scale(1.25);
    box-shadow: 0 0 0 14px rgba(176, 74, 150, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(176, 74, 150, 0);
  }
}
@keyframes iconFloat {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-5px) scale(1.04);
  }
}
@keyframes linkBorderShift {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}
#content_3 {
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--background-secondary) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: -55%;
    right: -25%;
    width: 45%;
    height: 220%;
    background: linear-gradient(45deg, var(--primary-bg), var(--accent-bg));
    opacity: 0.05;
    transform: rotate(18deg);
    pointer-events: none;
    z-index: 0;
  }
  &::after {
    content: "";
    position: absolute;
    bottom: -35%;
    left: -18%;
    width: 34%;
    height: 170%;
    background: linear-gradient(-45deg, var(--secondary-bg), var(--success-bg));
    opacity: 0.03;
    transform: rotate(-12deg);
    pointer-events: none;
    z-index: 0;
  }
  .container {
    position: relative;
    z-index: 1;
  }
  .v1-header {
    position: relative;
    margin-bottom: 3.2rem;
    .v1-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.35rem 0.9rem;
      border-radius: 999px;
      background: rgba(var(--bs-primary-rgb), 0.1);
      border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
      color: var(--primary-dark);
      font-weight: 900;
    }
    .v1-title {
      margin-top: 1rem;
      background: linear-gradient(135deg, var(--primary-dark), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      &::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -12px;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        border-radius: 2px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
      }
    }
    .v1-desc {
      color: var(--text-secondary);
      line-height: 1.7;
      max-width: 860px;
      margin: 0 auto;
    }
  }
  .v1-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    align-items: start;
    @media (max-width: 992px) {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }
  .v1-card {
    background: var(--background-tertiary);
    border: 1px solid var(--neutral-150);
    border-radius: 1.6rem;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
      box-shadow 0.4s ease,
      border-color 0.4s ease;
    &::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 4px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }
    &::after {
      content: "";
      position: absolute;
      bottom: -70px;
      right: -70px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: radial-gradient(
        circle,
        var(--primary-bg) 0%,
        transparent 70%
      );
      opacity: 0.25;
      pointer-events: none;
    }
    &:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 40px rgba(var(--bs-primary-rgb), 0.15);
      border-color: var(--primary-light);
      &::before {
        transform: scaleX(1);
      }
      .v1-icon {
        transform: rotate(6deg) scale(1.08);
      }
      .v1-img {
        transform: scale(1.05);
      }
      .v1-btn {
        background: linear-gradient(135deg, var(--primary-dark), var(--accent));
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(var(--bs-primary-rgb), 0.3);
      }
    }
    &.v1-featured {
      background: linear-gradient(
        135deg,
        var(--background-tertiary) 0%,
        var(--primary-bg) 100%
      );
      border: 2px solid var(--primary-light);
      &::before {
        transform: scaleX(1);
      }
    }
    .v1-icon {
      width: 78px;
      height: 78px;
      border-radius: 22px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      display: grid;
      place-items: center;
      margin-bottom: 1.3rem;
      transition: transform 0.3s ease;
      position: relative;
      &::after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 24px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        opacity: 0.18;
        filter: blur(10px);
        z-index: -1;
      }
      i {
        font-size: 2rem;
        color: var(--white);
      }
    }
    .v1-ttl {
      font-size: 1.5rem;
      font-weight: 900;
      color: var(--text-primary);
      margin-bottom: 0.45rem;
      line-height: 1.25;
    }
    .v1-sub {
      font-size: 0.9rem;
      font-weight: 800;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 1.4rem;
    }
    .v1-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 1rem;
      margin-bottom: 1.25rem;
      transition: transform 0.3s ease;
    }
    .v1-text {
      color: var(--text-secondary);
      line-height: 1.65;
      margin-bottom: 1.7rem;
    }
    .v1-btn {
      width: 100%;
      display: inline-block;
      text-align: center;
      padding: 1rem 1.2rem;
      border-radius: 14px;
      color: var(--white);
      font-weight: 900;
      text-decoration: none;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.22),
          transparent
        );
        transition: left 0.5s ease;
      }
      &:hover::before {
        left: 100%;
      }
    }
  }
  @media (max-width: 768px) {
    .v1-card:hover {
      transform: translateY(-4px) scale(1.01);
    }
  }
}
#content_6 {
  padding: 6rem 0;
  background: linear-gradient(
    135deg,
    var(--neutral-50) 0%,
    var(--background-primary) 55%,
    var(--background-secondary) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(
        circle at 70% 15%,
        rgba(var(--bs-primary-rgb), 0.1) 0%,
        transparent 55%
      ),
      linear-gradient(
        180deg,
        rgba(var(--bs-primary-rgb), 0.06) 0%,
        transparent 55%
      );
    pointer-events: none;
  }
  .wrap {
    position: relative;
    z-index: 1;
  }
  .top {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
    margin-bottom: 2.25rem;
    .titles {
      .sub {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.45rem 0.9rem;
        border-radius: 999px;
        background: var(--warning-bg);
        color: var(--warning-dark);
        font-weight: 950;
        border: 1px solid var(--neutral-150);
      }
      .h {
        margin: 0.85rem 0 0;
        font-size: 2.45rem;
        font-weight: 950;
        color: var(--text-primary);
      }
      .p {
        margin: 0.8rem 0 0;
        max-width: 860px;
        color: var(--text-secondary);
        line-height: 1.85;
        font-size: 1.08rem;
      }
    }
    .action {
      a {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        text-decoration: none;
        font-weight: 950;
        padding: 0.9rem 1.2rem;
        border-radius: 999px;
        background: var(--secondary);
        color: var(--text-primary);
        box-shadow: 0 16px 34px rgba(0, 0, 0, 0.12);
        transition:
          transform 0.2s ease,
          box-shadow 0.2s ease;
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 22px 48px rgba(0, 0, 0, 0.16);
        }
      }
    }
  }
  .layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 1.25rem;
    align-items: stretch;
  }
  .tabs {
    background: var(--background-tertiary);
    border: 1px solid var(--neutral-150);
    border-radius: 1.6rem;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    .tab {
      display: grid;
      grid-template-columns: 54px 1fr;
      gap: 0.9rem;
      align-items: center;
      padding: 0.95rem 1rem;
      border-radius: 1.25rem;
      border: 1px solid transparent;
      transition:
        background 0.2s ease,
        transform 0.2s ease,
        border-color 0.2s ease;
      &:hover {
        background: var(--info-bg);
        transform: translateY(-2px);
        border-color: rgba(var(--bs-primary-rgb), 0.2);
      }
      .ico {
        width: 54px;
        height: 54px;
        border-radius: 16px;
        background: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 24px rgba(var(--bs-primary-rgb), 0.2);
        i {
          color: var(--text-light);
          font-size: 1.25rem;
        }
      }
      .t {
        .h {
          margin: 0 0 0.2rem;
          font-weight: 950;
          color: var(--text-primary);
          line-height: 1.25;
        }
        .p {
          margin: 0;
          color: var(--text-secondary);
          line-height: 1.7;
          font-size: 1rem;
        }
      }
    }
  }
  .preview {
    background: var(--background-tertiary);
    border: 1px solid var(--neutral-150);
    border-radius: 1.6rem;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    grid-template-rows: auto 1fr;
    .media {
      position: relative;
      img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
      }
      .overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          135deg,
          rgba(var(--bs-primary-rgb), 0.16) 0%,
          transparent 60%
        );
        pointer-events: none;
      }
    }
    .body {
      padding: 1.5rem 1.75rem 1.75rem;
      .h {
        margin: 0 0 0.7rem;
        font-size: 1.7rem;
        font-weight: 950;
        color: var(--text-primary);
      }
      .p {
        margin: 0 0 1.2rem;
        color: var(--text-secondary);
        line-height: 1.85;
        font-size: 1.05rem;
      }
      .mini {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        .chip {
          padding: 0.35rem 0.75rem;
          border-radius: 999px;
          background: var(--neutral-150);
          color: var(--text-secondary);
          font-weight: 800;
        }
      }
    }
  }
}
@media (max-width: 991.98px) {
  #content_6 {
    padding: 4.75rem 0;
    .top {
      grid-template-columns: 1fr;
      .titles .h {
        font-size: 2rem;
      }
    }
    .layout {
      grid-template-columns: 1fr;
    }
    .preview .media img {
      height: 280px;
    }
  }
}
@media (max-width: 575.98px) {
  #content_6 {
    .top .titles .h {
      font-size: 1.75rem;
    }
    .preview .media img {
      height: 220px;
    }
    .preview .body {
      padding: 1.25rem 1.25rem 1.4rem;
    }
  }
}
#about {
  position: relative;
  background: radial-gradient(
    ellipse at top,
    var(--primary-bg) 0%,
    var(--bs-white, #fff) 40%,
    var(--neutral-50) 100%
  );
  overflow: hidden;
  padding: 6rem 0;
  .about-title {
    color: var(--primary);
    letter-spacing: 0.5px;
    font-weight: 800;
    position: relative;
    display: inline-block;
  }
  .about-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    border-radius: 2px;
  }
  .about-lead {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
  }
  .about-mission {
    background: linear-gradient(
      135deg,
      var(--bs-white, #fff) 0%,
      var(--primary-bg) 100%
    );
    border: 2px solid var(--primary-light);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
  }
  .about-mission::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
      circle at 20% 50%,
      rgba(92, 161, 232, 0.05) 0%,
      transparent 50%
    );
    pointer-events: none;
  }
  .about-card {
    border: 2px solid var(--neutral-250);
    background: var(--bs-white, #fff);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
  }
  .about-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      transparent 0%,
      rgba(92, 161, 232, 0.03) 100%
    );
    opacity: 0;
    transition: opacity 0.4s;
  }
  .about-card:hover {
    transform: translateY(-12px) rotate(1deg);
    border-color: var(--primary);
    box-shadow:
      0 20px 60px rgba(92, 161, 232, 0.2),
      0 0 0 4px var(--primary-light);
  }
  .about-card:hover::before {
    opacity: 1;
  }
  .about-card:nth-child(1) {
    border-top-color: var(--primary);
  }
  .about-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s;
    box-shadow: 0 8px 24px rgba(92, 161, 232, 0.15);
  }
  .about-card:hover .about-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(92, 161, 232, 0.25);
  }
  .about-icon-wrapper:nth-of-type(1) {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
  }
  .about-icon {
    color: var(--white);
    font-size: 2.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  }
  .about-feature-card {
    background: linear-gradient(
      135deg,
      var(--bs-white, #fff) 0%,
      var(--neutral-50) 100%
    );
    border: 1px solid var(--neutral-250);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .about-feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    transform: scaleY(0);
    transition: transform 0.3s;
  }
  .about-feature-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-light);
    box-shadow: 0 8px 24px rgba(92, 161, 232, 0.1);
  }
  .about-feature-card:hover::before {
    transform: scaleY(1);
  }
  .about-list-icon {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 0.75rem;
    transition: transform 0.3s;
  }
  .about-feature-card:hover .about-list-icon {
    transform: scale(1.2) rotate(5deg);
  }
  .about-feature-text {
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
    margin: 0;
  }
  .about-mission-title {
    color: var(--primary-dark);
  }
  .about-mission-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .about-card-title {
    color: var(--text-primary);
  }
  .about-card-text {
    color: var(--text-secondary);
  }
  .about-container {
    z-index: 1;
  }
  .about-decor {
    position: absolute;
    left: -10%;
    top: 20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-bg) 0%, transparent 70%);
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
  }
  .about-decor::after {
    content: "";
    position: absolute;
    right: -15%;
    bottom: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(
      circle,
      var(--secondary-bg) 0%,
      transparent 70%
    );
    opacity: 0.3;
    border-radius: 50%;
  }
  .animate-fadein {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUpScale-2AWdfasgkudjasdd 0.9s cubic-bezier(0.16, 1, 0.3, 1)
      forwards;
  }
  .animate-fadein.delay-1 {
    animation-delay: 0.15s;
  }
  .animate-fadein.delay-2 {
    animation-delay: 0.3s;
  }
  .animate-fadein.delay-3 {
    animation-delay: 0.45s;
  }
  .animate-fadein.delay-4 {
    animation-delay: 0.6s;
  }
  .animate-fadein.delay-5 {
    animation-delay: 0.75s;
  }
  .animate-fadein.delay-6 {
    animation-delay: 0.9s;
  }
  .animate-fadein.delay-7 {
    animation-delay: 1.05s;
  }
}
@keyframes fadeInUpScale-2AWdfasgkudjasdd {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
#content_1 {
  padding: 6rem 0;
  background:
    radial-gradient(circle at 85% 30%, var(--warning-bg) 0%, transparent 45%),
    linear-gradient(
      135deg,
      var(--background-primary) 0%,
      var(--background-secondary) 100%
    );
  position: relative;
  overflow: hidden;
  .container {
    width: min(1100px, calc(100% - 2rem));
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .head {
    text-align: center;
    margin-bottom: 3rem;
    .title {
      margin: 0 0 0.8rem 0;
      font-size: clamp(2rem, 3vw, 3rem);
      font-weight: 900;
      color: var(--text-primary);
      letter-spacing: -0.02em;
    }
    .subtitle {
      margin: 0 auto;
      max-width: 760px;
      color: var(--text-secondary);
      line-height: 1.75;
      font-size: 1.1rem;
    }
  }
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    @media (max-width: 900px) {
      grid-template-columns: 1fr;
    }
  }
  .panel {
    background: var(--background-tertiary);
    border: 1px solid var(--neutral-150);
    border-radius: 1.6rem;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    details {
      border-top: 1px solid var(--neutral-150);
      &:first-of-type {
        border-top: 0;
      }
      &[open] {
        summary {
          background: linear-gradient(
            135deg,
            var(--neutral-50),
            var(--background-tertiary)
          );
          .chev {
            transform: rotate(180deg);
          }
        }
      }
    }
    summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.2rem 1.35rem;
      transition: background 0.25s ease;
      &::-webkit-details-marker {
        display: none;
      }
      .left {
        display: flex;
        align-items: center;
        gap: 0.9rem;
        .icon {
          width: 44px;
          height: 44px;
          border-radius: 1rem;
          background: linear-gradient(
            135deg,
            var(--primary),
            var(--primary-light)
          );
          box-shadow: 0 12px 22px rgba(var(--bs-primary-rgb), 0.22);
          display: grid;
          place-items: center;
          img {
            width: 22px;
            height: 22px;
            display: block;
            object-fit: contain;
            filter: brightness(0) invert(1);
          }
        }
        .t {
          margin: 0;
          color: var(--text-primary);
          font-weight: 900;
          font-size: 1.15rem;
        }
      }
      .chev {
        width: 36px;
        height: 36px;
        border-radius: 999px;
        background: var(--background-secondary);
        border: 1px solid var(--neutral-150);
        display: grid;
        place-items: center;
        color: var(--text-secondary);
        font-weight: 900;
        transition: transform 0.25s ease;
      }
    }
    .content {
      padding: 0 1.35rem 1.35rem 1.35rem;
      .p {
        margin: 0.25rem 0 1rem 0;
        color: var(--text-secondary);
        line-height: 1.75;
      }
      .media {
        border-radius: 1.2rem;
        overflow: hidden;
        border: 1px solid var(--neutral-150);
        background: var(--background-secondary);
        height: 170px;
        margin-bottom: 1rem;
        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }
      .actions {
        display: flex;
        flex-wrap: wrap;
        gap: 0.75rem;
        .link {
          text-decoration: none;
          font-weight: 900;
          color: var(--primary);
          &:hover {
            color: var(--primary-dark);
            transform: translateX(3px);
          }
        }
      }
    }
  }
  .aside {
    background: linear-gradient(
      135deg,
      var(--background-tertiary) 0%,
      var(--neutral-50) 100%
    );
    border: 1px solid var(--neutral-150);
    border-radius: 1.6rem;
    padding: 2rem;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      inset: -60px -60px auto auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(
        circle,
        var(--secondary-bg) 0%,
        transparent 70%
      );
      opacity: 0.35;
    }
    .inner {
      position: relative;
      z-index: 1;
    }
    .a-title {
      margin: 0 0 0.75rem 0;
      color: var(--text-primary);
      font-weight: 900;
      font-size: 1.5rem;
    }
    .a-text {
      margin: 0 0 1.25rem 0;
      color: var(--text-secondary);
      line-height: 1.75;
    }
    .a-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1.05rem;
        border-radius: 1rem;
        border: 1px solid var(--neutral-150);
        background: var(--background-tertiary);
        color: var(--text-primary);
        text-decoration: none;
        font-weight: 900;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
        }
      }
    }
  }
}
#contact {
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--primary-bg) 100%
  );
  padding: 5rem 0;
  .container {
    position: relative;
  }
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
    h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--text-primary);
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    p {
      color: var(--text-secondary);
      font-size: 1.1rem;
      max-width: 600px;
      margin: 0 auto;
    }
  }
  .contact-card {
    background: var(--background-tertiary);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid var(--neutral-150);
    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    }
    h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 1.5rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
  }
  .contact-info {
    .contact-item {
      display: flex;
      align-items: flex-start;
      padding: 1rem;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
      background: var(--background-primary);
      transition: all 0.3s ease;
      border: 1px solid transparent;
      &:hover {
        background: var(--primary-bg);
        border-color: var(--primary-light);
        transform: translateX(5px);
      }
      .icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 50%;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          var(--primary-dark) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1rem;
        svg {
          color: var(--text-light);
          width: 24px;
          height: 24px;
        }
      }
      .contact-content {
        flex: 1;
        a,
        span {
          color: var(--text-primary);
          text-decoration: none;
          font-size: 1rem;
          line-height: 1.6;
          transition: color 0.3s ease;
          &:hover {
            color: var(--primary);
          }
        }
      }
    }
  }
  .form-wrapper {
    background: var(--background-tertiary);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 1px solid var(--neutral-150);
    h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 2rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .form-control {
      border: 2px solid var(--neutral-150);
      border-radius: 0.5rem;
      padding: 0.875rem 1.25rem;
      font-size: 1rem;
      color: var(--text-primary);
      background: var(--background-tertiary);
      transition: all 0.3s ease;
      &:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 0.2rem rgba(92, 161, 232, 0.15);
        outline: none;
        background: var(--background-tertiary);
      }
      &::placeholder {
        color: var(--text-tertiary);
      }
    }
    textarea.form-control {
      resize: vertical;
      min-height: 150px;
    }
    .form-check {
      padding-left: 0;
      margin-bottom: 1.5rem;
      .form-check-input {
        width: 1.25rem;
        height: 1.25rem;
        margin-right: 0.75rem;
        margin-top: 0.25rem;
        border: 2px solid var(--neutral-350);
        cursor: pointer;
        &:checked {
          background-color: var(--primary);
          border-color: var(--primary);
        }
        &:focus {
          box-shadow: 0 0 0 0.2rem rgba(92, 161, 232, 0.25);
        }
      }
      .form-check-label {
        color: var(--text-secondary);
        font-size: 0.9rem;
        line-height: 1.6;
        a {
          color: var(--primary);
          text-decoration: none;
          font-weight: 500;
          &:hover {
            text-decoration: underline;
            color: var(--primary-dark);
          }
        }
      }
    }
    .btn-primary {
      background: linear-gradient(
        135deg,
        var(--primary) 0%,
        var(--primary-dark) 100%
      );
      border: none;
      border-radius: 0.5rem;
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(92, 161, 232, 0.3);
      &:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(92, 161, 232, 0.4);
        background: linear-gradient(
          135deg,
          var(--primary-dark) 0%,
          var(--primary) 100%
        );
      }
      &:active {
        transform: translateY(0);
      }
    }
  }
  @media (max-width: 991.98px) {
    padding: 3rem 0;
    .section-header h2 {
      font-size: 2rem;
    }
    .contact-card,
    .form-wrapper {
      margin-bottom: 2rem;
    }
  }
  @media (max-width: 575.98px) {
    .contact-card,
    .form-wrapper {
      padding: 1.5rem;
    }
    .section-header h2 {
      font-size: 1.75rem;
    }
  }
}
#content_4 {
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--background-secondary) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -18%;
    width: 560px;
    height: 560px;
    background: radial-gradient(
      circle,
      var(--secondary-bg) 0%,
      transparent 65%
    );
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
  }
  .wrap {
    position: relative;
    z-index: 1;
  }
  .carousel-frame {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--neutral-150);
    background: var(--white);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.1);
    .carousel-inner {
      border-radius: 30px;
    }
    .carousel-item img {
      max-height: 540px;
      object-fit: cover;
    }
  }
  .meta {
    margin-top: 2rem;
    .badge-line {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.95rem;
      border-radius: 999px;
      background: rgba(var(--bs-primary-rgb), 0.1);
      border: 1px solid rgba(var(--bs-primary-rgb), 0.16);
      color: var(--primary);
      font-weight: 950;
      margin-bottom: 1rem;
    }
    h2 {
      margin: 0 0 1rem;
      font-size: clamp(2rem, 3.2vw, 3rem);
      font-weight: 950;
      line-height: 1.12;
      color: var(--text-primary);
    }
    p {
      margin: 0 auto 1rem;
      max-width: 54rem;
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.08rem;
    }
    .cta {
      margin-top: 1.25rem;
      a {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        text-decoration: none;
        padding: 1rem 2.6rem;
        border-radius: 999px;
        color: var(--white);
        font-weight: 900;
        background: linear-gradient(135deg, var(--accent), var(--accent-dark));
        box-shadow: 0 12px 30px rgba(176, 74, 150, 0.26);
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
        &:hover {
          transform: translateY(-2px);
          box-shadow: 0 18px 44px rgba(176, 74, 150, 0.34);
          color: var(--white);
        }
      }
    }
  }
  @media (max-width: 768px) {
    .carousel-frame .carousel-item img {
      max-height: 360px;
    }
    .meta .cta a {
      width: 100%;
      max-width: 340px;
      justify-content: center;
    }
  }
}
#content_5 {
  .content-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(
      135deg,
      var(--background-primary) 0%,
      var(--background-secondary) 100%
    );
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(
          circle at 15% 25%,
          var(--primary-bg) 0%,
          transparent 55%
        ),
        radial-gradient(
          circle at 85% 70%,
          var(--secondary-bg) 0%,
          transparent 50%
        ),
        radial-gradient(circle at 60% 10%, var(--accent-bg) 0%, transparent 55%);
      opacity: 0.35;
      z-index: 0;
    }
  }
  .content-container {
    position: relative;
    z-index: 1;
  }
  .hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
    margin-bottom: 3.5rem;
  }
  .hero-text {
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: rgba(var(--bs-primary-rgb), 0.12);
      border: 1px solid var(--neutral-150);
      color: var(--text-secondary);
      font-weight: 600;
    }
    .title {
      margin: 1.2rem 0 0.9rem;
      font-size: 3.2rem;
      font-weight: 800;
      line-height: 1.08;
      color: var(--text-primary);
      span {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
    }
    .subtitle {
      color: var(--text-secondary);
      font-size: 1.15rem;
      line-height: 1.7;
      max-width: 42rem;
    }
    .chips {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-top: 1.5rem;
      .chip {
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.6rem 0.9rem;
        border-radius: 999px;
        background: var(--background-tertiary);
        border: 1px solid var(--neutral-150);
        color: var(--text-secondary);
        box-shadow: 0 10px 24px rgba(var(--bs-primary-rgb), 0.08);
        i {
          color: var(--primary);
        }
      }
    }
    .actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
      a {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.95rem 1.25rem;
        border-radius: 1.1rem;
        font-weight: 700;
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }
      .primary {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: var(--white);
        box-shadow: 0 16px 34px rgba(var(--bs-primary-rgb), 0.22);
      }
      .secondary {
        background: var(--background-tertiary);
        color: var(--text-primary);
        border: 1px solid var(--neutral-150);
      }
      a:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 40px rgba(var(--bs-primary-rgb), 0.18);
      }
    }
  }
  .hero-media {
    position: relative;
    .media-card {
      background: var(--background-tertiary);
      border: 1px solid var(--neutral-150);
      border-radius: 1.75rem;
      overflow: hidden;
      box-shadow: 0 22px 55px rgba(var(--bs-primary-rgb), 0.12);
    }
    img {
      width: 100%;
      height: auto;
      display: block;
    }
    .media-badge {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      right: 1rem;
      padding: 0.9rem 1rem;
      border-radius: 1.25rem;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--neutral-150);
      backdrop-filter: blur(8px);
      .badge-title {
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 0.2rem;
      }
      .badge-text {
        color: var(--text-secondary);
      }
    }
  }
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.25rem;
    .card {
      background: var(--background-tertiary);
      border: 1px solid var(--neutral-150);
      border-radius: 1.5rem;
      padding: 1.5rem;
      height: 100%;
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
      .icon {
        width: 3.2rem;
        height: 3.2rem;
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(
          135deg,
          var(--primary-bg),
          var(--accent-bg)
        );
        margin-bottom: 1rem;
        i {
          color: var(--primary-dark);
          font-size: 1.25rem;
        }
      }
      .t {
        font-weight: 800;
        color: var(--text-primary);
        margin-bottom: 0.4rem;
      }
      .p {
        color: var(--text-secondary);
        line-height: 1.6;
      }
      &:hover {
        transform: translateY(-6px);
        border-color: var(--primary);
        box-shadow: 0 18px 40px rgba(var(--bs-primary-rgb), 0.14);
      }
    }
  }
  .cta-bar {
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 2rem;
    padding: 2.25rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1.25rem;
    align-items: center;
    overflow: hidden;
    position: relative;
    &::before {
      content: "";
      position: absolute;
      inset: -40%;
      background: radial-gradient(
        circle at 30% 40%,
        rgba(255, 255, 255, 0.22),
        transparent 55%
      );
      opacity: 0.65;
    }
    .cta-copy {
      position: relative;
      z-index: 1;
      .cta-title {
        color: var(--white);
        font-weight: 900;
        font-size: 1.9rem;
        margin-bottom: 0.4rem;
      }
      .cta-text {
        color: rgba(255, 255, 255, 0.92);
        margin: 0;
      }
    }
    .cta-actions {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      a {
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 0.55rem;
        padding: 0.95rem 1.25rem;
        border-radius: 999px;
        font-weight: 800;
        border: 2px solid var(--white);
        transition:
          transform 0.25s ease,
          box-shadow 0.25s ease;
      }
      .light {
        background: var(--white);
        color: var(--primary-dark);
      }
      .outline {
        background: transparent;
        color: var(--white);
      }
      a:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
      }
    }
  }
  @media (max-width: 992px) {
    .hero {
      grid-template-columns: 1fr;
    }
    .features {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 576px) {
    .hero-text {
      .title {
        font-size: 2.35rem;
      }
    }
    .features {
      grid-template-columns: 1fr;
    }
    .cta-bar {
      grid-template-columns: 1fr;
      text-align: center;
      .cta-actions {
        justify-content: center;
      }
    }
  }
}
@keyframes fadeInUp_xyz789abc123 {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown_abc456def789 {
  from {
    max-height: 0;
    opacity: 0;
  }
  to {
    max-height: 500px;
    opacity: 1;
  }
}
#faq {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--neutral-50) 0%,
    var(--info-bg) 50%,
    var(--primary-bg) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
      circle,
      var(--secondary-bg) 0%,
      transparent 70%
    );
    opacity: 0.3;
    border-radius: 50%;
  }
  &::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-bg) 0%, transparent 70%);
    opacity: 0.25;
    border-radius: 50%;
  }
  .container {
    position: relative;
    z-index: 1;
  }
  .header-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp_xyz789abc123 0.6s ease-out;
  }
  .title {
    color: var(--neutral-950);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: -60px;
      width: 40px;
      height: 4px;
      background: linear-gradient(90deg, transparent, var(--primary));
      border-radius: 2px;
    }
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: -60px;
      width: 40px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), transparent);
      border-radius: 2px;
    }
  }
  .subtitle {
    color: var(--neutral-650);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .cards-wrapper {
    max-width: 900px;
    margin: 0 auto;
  }
  .card {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    border: 2px solid transparent;
    animation: fadeInUp_xyz789abc123 0.6s ease-out backwards;
    &:nth-child(1),
    &:nth-child(4),
    &:nth-child(7) {
      animation-delay: 0.1s;
      .question-header {
        border-left: 4px solid var(--primary);
        .icon {
          color: var(--primary);
          background: var(--primary-bg);
        }
      }
      &:hover {
        border-color: var(--primary);
        box-shadow: 0 8px 30px rgba(92, 161, 232, 0.2);
      }
      &.active {
        border-color: var(--primary);
        box-shadow: 0 12px 40px rgba(92, 161, 232, 0.25);
      }
    }
    &:nth-child(2),
    &:nth-child(5),
    &:nth-child(8) {
      animation-delay: 0.2s;
      .question-header {
        border-left: 4px solid var(--secondary);
        .icon {
          color: var(--secondary-dark);
          background: var(--secondary-bg);
        }
      }
      &:hover {
        border-color: var(--secondary);
        box-shadow: 0 8px 30px rgba(234, 199, 0, 0.2);
      }
      &.active {
        border-color: var(--secondary);
        box-shadow: 0 12px 40px rgba(234, 199, 0, 0.25);
      }
    }
    &:nth-child(3),
    &:nth-child(6),
    &:nth-child(9) {
      animation-delay: 0.3s;
      .question-header {
        border-left: 4px solid var(--accent);
        .icon {
          color: var(--accent);
          background: var(--accent-bg);
        }
      }
      &:hover {
        border-color: var(--accent);
        box-shadow: 0 8px 30px rgba(176, 74, 150, 0.2);
      }
      &.active {
        border-color: var(--accent);
        box-shadow: 0 12px 40px rgba(176, 74, 150, 0.25);
      }
    }
    &:hover {
      transform: translateY(-8px);
    }
    &.active {
      transform: translateY(-4px);
      .question-header .icon {
        transform: rotate(180deg);
      }
      .answer {
        animation: slideDown_abc456def789 0.4s ease-out forwards;
      }
    }
  }
  .question-header {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(
      to right,
      var(--white) 0%,
      var(--neutral-50) 100%
    );
    transition: background 0.3s ease;
    position: relative;
    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(
        90deg,
        transparent,
        var(--neutral-150),
        transparent
      );
    }
    .question-text {
      color: var(--neutral-950);
      font-size: 1.3rem;
      font-weight: 600;
      margin: 0;
      flex: 1;
      padding-right: 20px;
      line-height: 1.4;
    }
    .icon {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }
  }
  .answer {
    color: var(--neutral-650);
    line-height: 1.8;
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: padding 0.3s ease;
    background: var(--white);
    font-size: 1.05rem;
  }
  .card.active .answer {
    padding: 28px 32px;
  }
}
@media (max-width: 768px) {
  #faq {
    padding: 60px 0;
    .title {
      font-size: 2.2rem;
      &::before,
      &::after {
        display: none;
      }
    }
    .subtitle {
      font-size: 1rem;
      padding: 0 15px;
    }
    .question-header {
      padding: 20px;
      .question-text {
        font-size: 1.1rem;
        padding-right: 15px;
      }
      .icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
      }
    }
    .card.active .answer {
      padding: 20px;
      font-size: 0.95rem;
    }
  }
}
#products {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    160deg,
    var(--background-primary) 0%,
    var(--info-bg) 45%,
    var(--primary-bg) 100%
  );
  &::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
      radial-gradient(
        circle at 15% 25%,
        var(--secondary-bg) 0%,
        transparent 35%
      ),
      radial-gradient(circle at 85% 70%, var(--accent-bg) 0%, transparent 38%),
      radial-gradient(circle at 50% 50%, var(--primary-bg) 0%, transparent 42%);
    opacity: 0.35;
    z-index: 1;
    transform: rotate(10deg);
  }
  &::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(900px, 95vw);
    height: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
      90deg,
      transparent,
      var(--primary),
      var(--secondary),
      transparent
    );
    opacity: 0.8;
    z-index: 2;
  }
  .container {
    position: relative;
    z-index: 3;
  }
  .products-head {
    text-align: center;
    margin-bottom: 70px;
  }
  .products-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--neutral-150);
    color: var(--text-secondary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    margin-bottom: 18px;
    &::before {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 99px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }
  }
  .product-title {
    color: var(--text-primary);
    font-size: 3.1rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    &::after {
      content: "";
      display: block;
      width: 92px;
      height: 4px;
      margin: 14px auto 0;
      border-radius: 99px;
      background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent),
        var(--secondary)
      );
    }
  }
  .product-subtitle {
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
    align-items: stretch;
  }
  .product-card {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 26px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
    transition:
      transform 0.35s ease,
      box-shadow 0.35s ease;
    &:hover {
      transform: translateY(-12px);
      box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
    }
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(
        circle at 20% 10%,
        rgba(var(--bs-primary-rgb), 0.12) 0%,
        transparent 55%
      );
      pointer-events: none;
    }
    &.secondary {
      grid-column: span 4;
      transform: translateY(-10px);
    }
  }
  .product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.4s ease;
    .product-card:hover & {
      transform: scale(1.06);
    }
  }
  .product-card-body {
    padding: 30px 28px 32px;
    position: relative;
    z-index: 2;
  }
  .product-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--background-primary);
    border: 1px solid var(--neutral-150);
    color: var(--text-tertiary);
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
  .product-card-title {
    color: var(--text-primary);
    font-size: 1.55rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 14px;
  }
  .product-card-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }
  .product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      background 0.25s ease;
    position: relative;
    overflow: hidden;
    &::after {
      content: "";
      width: 10px;
      height: 10px;
      border-radius: 99px;
      background: currentColor;
      opacity: 0.35;
    }
    &:hover {
      transform: translateY(-2px);
    }
    &.primary {
      background: linear-gradient(135deg, var(--primary), var(--primary-light));
      color: var(--text-light);
      box-shadow: 0 10px 28px rgba(92, 161, 232, 0.34);
      &:hover {
        background: linear-gradient(
          135deg,
          var(--primary-dark),
          var(--primary)
        );
        box-shadow: 0 16px 38px rgba(92, 161, 232, 0.42);
      }
    }
    &.secondary {
      background: linear-gradient(
        135deg,
        var(--secondary),
        var(--secondary-light)
      );
      color: var(--text-primary);
      box-shadow: 0 10px 28px rgba(234, 199, 0, 0.3);
      &:hover {
        background: linear-gradient(
          135deg,
          var(--secondary-dark),
          var(--secondary)
        );
        box-shadow: 0 16px 38px rgba(234, 199, 0, 0.4);
      }
    }
    &.accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-light));
      color: var(--text-light);
      box-shadow: 0 10px 28px rgba(176, 74, 150, 0.3);
      &:hover {
        background: linear-gradient(135deg, var(--accent-dark), var(--accent));
        box-shadow: 0 16px 38px rgba(176, 74, 150, 0.4);
      }
    }
  }
  @media (max-width: 992px) {
    padding: 70px 0;
    .product-title {
      font-size: 2.4rem;
    }
    .products-grid {
      gap: 18px;
    }
    .product-card,
    .product-card.secondary {
      grid-column: span 12;
      transform: none;
    }
    .product-image {
      height: 240px;
    }
  }
}
#price {
  padding: 100px 0;
  background: var(--background-primary);
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 70%;
    background: radial-gradient(ellipse, var(--primary-bg) 0%, transparent 70%);
    opacity: 0.4;
    pointer-events: none;
  }
  &::after {
    content: "";
    position: absolute;
    bottom: -15%;
    left: -8%;
    width: 35%;
    height: 50%;
    background: radial-gradient(ellipse, var(--accent-bg) 0%, transparent 70%);
    opacity: 0.25;
    pointer-events: none;
  }
  .section-title {
    position: relative;
    z-index: 1;
    .section-label {
      display: inline-block;
      padding: 6px 14px;
      background: var(--neutral-150);
      color: var(--text-secondary);
      font-size: 0.75rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      border-radius: 6px;
      margin-bottom: 16px;
    }
    h2 {
      color: var(--text-primary);
      font-size: 2.25rem;
      font-weight: 700;
      margin-bottom: 14px;
      line-height: 1.2;
    }
    p {
      color: var(--text-secondary);
      font-size: 1rem;
      line-height: 1.65;
      max-width: 320px;
    }
  }
  .pricing-grid {
    position: relative;
    z-index: 1;
  }
  .price-card {
    background: var(--background-tertiary);
    border-radius: 16px;
    padding: 28px 24px;
    transition:
      box-shadow 0.35s ease,
      border-color 0.35s ease;
    height: 100%;
    border: 1px solid var(--neutral-150);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    &:hover {
      box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    }
    .card-accent {
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--neutral-250);
      transition:
        width 0.3s ease,
        background 0.3s ease;
    }
    &:hover .card-accent {
      width: 6px;
    }
    &.basic {
      .card-accent {
        background: linear-gradient(
          180deg,
          var(--info-color),
          var(--info-dark)
        );
      }
      &:hover {
        border-color: var(--info-color);
      }
      .card-header {
        .category-icon {
          color: var(--info-color);
          background: var(--info-bg);
        }
        .badge {
          background: var(--info-color);
          color: var(--text-light);
        }
      }
      .price-value {
        color: var(--info-dark);
      }
      .feature-list li:not(.unavailable) i {
        color: var(--info-color);
      }
      .btn {
        color: var(--info-color);
        border-color: var(--info-color);
        &:hover {
          background: var(--info-color);
          color: var(--text-light);
        }
      }
    }
    &.featured {
      border: 2px solid var(--primary);
      box-shadow: 0 8px 28px rgba(var(--bs-primary-rgb), 0.18);
      .card-accent {
        background: linear-gradient(
          180deg,
          var(--primary),
          var(--primary-dark)
        );
        width: 6px;
      }
      &:hover {
        box-shadow: 0 16px 40px rgba(var(--bs-primary-rgb), 0.25);
      }
      .card-header {
        .category-icon {
          color: var(--primary);
          background: var(--primary-bg);
        }
        .badge {
          background: var(--primary);
          color: var(--text-light);
          animation: glowKx7mNq2pL4vR9 2.2s ease-in-out infinite;
        }
      }
      .price-value {
        color: var(--primary-dark);
      }
      .feature-list li:not(.unavailable) i {
        color: var(--primary);
      }
      .btn {
        background: var(--primary);
        border-color: var(--primary);
        color: var(--text-light);
        &:hover {
          background: var(--primary-dark);
          border-color: var(--primary-dark);
        }
      }
    }
    &.enterprise {
      .card-accent {
        background: linear-gradient(180deg, var(--accent), var(--accent-dark));
      }
      &:hover {
        border-color: var(--accent);
      }
      .card-header {
        .category-icon {
          color: var(--accent);
          background: var(--accent-bg);
        }
        .badge {
          background: var(--accent);
          color: var(--text-light);
        }
      }
      .price-value {
        color: var(--accent-dark);
      }
      .feature-list li:not(.unavailable) i {
        color: var(--accent);
      }
      .btn {
        color: var(--accent);
        border-color: var(--accent);
        &:hover {
          background: var(--accent);
          color: var(--text-light);
        }
      }
    }
  }
  .card-header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 10px 12px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 4px;
    .category-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      flex-shrink: 0;
    }
    .badge {
      margin-left: auto;
      padding: 5px 12px;
      border-radius: 8px;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      white-space: break-spaces;
    }
    h3 {
      flex: 1 1 100%;
      color: var(--text-primary);
      font-size: 1.35rem;
      font-weight: 600;
      margin: 0 0 4px;
    }
    .subtitle {
      color: var(--text-tertiary);
      font-size: 0.8rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.8px;
    }
  }
  .price-block {
    padding: 16px 0;
    margin-bottom: 20px;
    border-top: 1px solid var(--neutral-150);
    border-bottom: 1px solid var(--neutral-150);
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 4px 6px;
    .price-value {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.1;
    }
    .currency {
      font-size: 1rem;
      color: var(--text-tertiary);
      font-weight: 500;
    }
    .period {
      width: 100%;
      color: var(--text-tertiary);
      font-size: 0.8rem;
      font-weight: 500;
    }
  }
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    li {
      color: var(--text-secondary);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      font-size: 0.95rem;
      font-weight: 500;
      transition: color 0.25s ease;
      &:hover {
        color: var(--text-primary);
      }
      i {
        margin-right: 10px;
        font-size: 1rem;
        width: 18px;
        text-align: center;
        flex-shrink: 0;
      }
      &.unavailable {
        color: var(--neutral-450);
        text-decoration: line-through;
        i {
          color: var(--danger-color);
        }
      }
    }
  }
  .btn {
    width: 100%;
    padding: 12px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    transition:
      background 0.3s ease,
      border-color 0.3s ease,
      color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-width: 2px;
  }
}
@keyframes glowKx7mNq2pL4vR9 {
  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(var(--bs-primary-rgb), 0.35);
  }
  50% {
    opacity: 0.9;
    box-shadow: 0 0 0 6px rgba(var(--bs-primary-rgb), 0);
  }
}
@media (max-width: 991px) {
  #price {
    .section-title {
      text-align: center;
      p {
        max-width: 100%;
      }
    }
  }
}
@media (max-width: 768px) {
  #price {
    padding: 60px 0;
    .section-title {
      .section-label {
        margin-bottom: 12px;
      }
      h2 {
        font-size: 1.85rem;
      }
      p {
        font-size: 0.95rem;
      }
    }
    .price-card {
      padding: 24px 20px;
    }
    .card-header {
      .category-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
      }
      h3 {
        font-size: 1.25rem;
      }
    }
    .price-block .price-value {
      font-size: 2.2rem;
    }
  }
}
#content_2 {
  background: linear-gradient(
    135deg,
    var(--background-primary) 0%,
    var(--background-secondary) 100%
  );
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-bg) 0%, transparent 70%);
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
  }
  .container {
    position: relative;
    z-index: 2;
  }
  .content-card {
    background: var(--background-tertiary);
    border: 1px solid var(--neutral-150);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    position: relative;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease,
      border-color 0.25s ease;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(var(--bs-primary-rgb), 0.06),
        transparent 60%
      );
      pointer-events: none;
    }
    &::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary),
        var(--accent)
      );
    }
    &:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 62px rgba(var(--bs-primary-rgb), 0.14);
      border-color: var(--primary-light);
    }
  }
  .icon {
    width: 88px;
    height: 88px;
    border-radius: 24px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    box-shadow: 0 16px 36px rgba(var(--bs-primary-rgb), 0.22);
    margin-bottom: 1.25rem;
    i {
      color: var(--white);
      font-size: 2.2rem;
    }
  }
  .title {
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .desc {
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
  }
  .features {
    display: grid;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
    .f {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      padding: 0.9rem 1rem;
      border-radius: 18px;
      border: 1px solid var(--neutral-150);
      background: linear-gradient(
        135deg,
        var(--neutral-50),
        var(--background-tertiary)
      );
      i {
        color: var(--success-dark);
        font-size: 1.15rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
      }
      span {
        color: var(--text-secondary);
        font-weight: 700;
        line-height: 1.55;
      }
    }
  }
  .content-btn {
    border: none;
    border-radius: 999px;
    padding: 0.95rem 2.1rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-light);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 12px 26px rgba(var(--bs-primary-rgb), 0.28);
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(var(--bs-primary-rgb), 0.35);
      color: var(--text-light);
      i {
        transform: translateX(6px);
      }
    }
    i {
      transition: transform 0.25s ease;
    }
  }
  .content-visual {
    display: grid;
    place-items: center;
    padding: 2rem;
  }
  .visual-box {
    width: 100%;
    max-width: 420px;
    height: 420px;
    border-radius: 28px;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    background: linear-gradient(
      135deg,
      rgba(var(--bs-primary-rgb), 0.08),
      rgba(var(--bs-primary-rgb), 0.04)
    );
    position: relative;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
    .shape {
      position: absolute;
      border-radius: 28px;
      animation: floatA 6s ease-in-out infinite;
      filter: blur(0.2px);
      &.s1 {
        width: 180px;
        height: 120px;
        top: 16%;
        left: 10%;
        background: linear-gradient(
          135deg,
          var(--primary-bg),
          var(--primary-light)
        );
      }
      &.s2 {
        width: 130px;
        height: 130px;
        top: 52%;
        right: 12%;
        background: linear-gradient(
          135deg,
          var(--secondary-bg),
          var(--secondary-light)
        );
        animation-delay: 2s;
      }
      &.s3 {
        width: 160px;
        height: 110px;
        bottom: 14%;
        left: 28%;
        background: linear-gradient(
          135deg,
          var(--accent-bg),
          var(--accent-light)
        );
        animation-delay: 4s;
      }
    }
    .badge-center {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      .chip {
        width: 96px;
        height: 96px;
        border-radius: 28px;
        display: grid;
        place-items: center;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        box-shadow: 0 18px 44px rgba(var(--bs-primary-rgb), 0.22);
        border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
        i {
          color: var(--white);
          font-size: 2.1rem;
        }
      }
    }
  }
}
@keyframes floatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
@media (max-width: 991.98px) {
  #content_2 {
    .content-visual {
      padding: 1rem;
      margin-top: 1rem;
    }
    .visual-box {
      height: 320px;
    }
    .title {
      font-size: 2rem;
    }
  }
}
@media (max-width: 576px) {
  #content_2 {
    .content-card {
      padding: 1.5rem !important;
    }
    .content-btn {
      width: 100%;
      justify-content: center;
    }
  }
}
#header {
  position: relative;
  &::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--primary),
      var(--accent),
      var(--secondary)
    );
    opacity: 0.6;
  }
  .navbar {
    background: linear-gradient(
      135deg,
      var(--primary-dark) 0%,
      var(--neutral-950) 50%,
      var(--accent-dark) 100%
    ) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 1.25rem 0;
    position: relative;
  }
  .navbar-brand {
    white-space: normal;
    color: var(--white) !important;
    font-size: 1.75rem;
    font-weight: 800;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 2rem;
      height: 2rem;
      background: linear-gradient(
        135deg,
        var(--primary-light),
        var(--accent-light)
      );
      border-radius: 50%;
      opacity: 0.8;
    }
    &:hover {
      transform: translateY(-2px);
      color: var(--primary-light) !important;
      &::before {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
      }
    }
  }
  .navbar-toggler {
    color: var(--white) !important;
    border: 2px solid var(--primary-light) !important;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 0.5rem;
    &:hover {
      background: var(--primary-dark);
      border-color: var(--accent-light) !important;
      transform: rotate(90deg);
    }
  }
  .navbar-nav {
    gap: 0.5rem;
  }
  .nav-item {
    position: relative;
    &:last-child .nav-link {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border: 2px solid var(--accent-light);
      font-weight: 600;
      padding: 0.625rem 1.5rem !important;
      &:hover {
        background: linear-gradient(135deg, var(--accent-light), var(--accent));
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(176, 74, 150, 0.4);
      }
    }
  }
  .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.625rem 1.25rem !important;
    border-radius: 0.5rem;
    font-size: 1rem;
    word-break: auto-phrase;
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 3px;
      background: var(--primary-light);
      transition: width 0.3s ease;
    }
    &:hover {
      color: var(--primary-light) !important;
      background: rgba(var(--bs-primary-rgb), 0.2);
      &::before {
        width: 80%;
      }
    }
    &:active {
      transform: scale(0.95);
    }
  }
  @media (max-width: 991.98px) {
    .navbar-collapse {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(
        180deg,
        var(--primary-dark) 0%,
        var(--neutral-950) 50%,
        var(--accent-dark) 100%
      );
      padding: 6rem 2rem 2rem;
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      opacity: 0;
      visibility: hidden;
      z-index: 1000;
      &.show {
        opacity: 1;
        visibility: visible;
      }
    }
    .navbar-nav {
      gap: 1rem;
      align-items: stretch !important;
    }
    .nav-link {
      text-align: center;
      font-size: 1.25rem;
      padding: 1rem !important;
      border: 1px solid rgba(255, 255, 255, 0.1);
      &::before {
        height: 100%;
        width: 4px;
        left: 0;
        top: 0;
        transform: translateX(0);
      }
      &:hover::before {
        width: 4px;
        height: 100%;
      }
    }
    .nav-item:last-child .nav-link {
      margin-top: 1rem;
      padding: 1.25rem 1.5rem !important;
      font-size: 1.25rem;
    }
  }
}
@keyframes footerfadein_k7x9m2p4q8w {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes footerglow_a3b5c7d9e1f {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(92, 161, 232, 0.2);
  }
  50% {
    box-shadow: 0 0 30px rgba(92, 161, 232, 0.4);
  }
}
@keyframes footergradient_r2t4y6u8i0o {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
#footer {
  background: linear-gradient(
    135deg,
    var(--neutral-1050) 0%,
    var(--neutral-950) 50%,
    var(--neutral-1050) 100%
  );
  background-size: 200% 200%;
  animation: footergradient_r2t4y6u8i0o 15s ease infinite;
  color: var(--text-light);
  padding: 4rem 0 2.5rem 0;
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--primary),
      var(--accent),
      var(--primary),
      transparent
    );
    opacity: 0.8;
  }
  &::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(92, 161, 232, 0.1) 0%,
      transparent 70%
    );
    pointer-events: none;
  }
  .footer-main {
    position: relative;
    z-index: 2;
    animation: footerfadein_k7x9m2p4q8w 0.8s ease-out;
  }
  .footer-section {
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0.02) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: footerfadein_k7x9m2p4q8w 0.8s ease-out backwards;
    &:nth-child(1) {
      animation-delay: 0.1s;
    }
    &:nth-child(2) {
      animation-delay: 0.2s;
    }
    &:nth-child(3) {
      animation-delay: 0.3s;
    }
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(
        90deg,
        var(--primary),
        var(--accent),
        var(--secondary)
      );
      opacity: 0;
      transition: opacity 0.4s ease;
    }
    &::after {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(
        circle,
        rgba(92, 161, 232, 0.1) 0%,
        transparent 70%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    &:hover {
      transform: translateY(-5px) scale(1.02);
      border-color: rgba(92, 161, 232, 0.4);
      box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(92, 161, 232, 0.2);
      animation: footerglow_a3b5c7d9e1f 2s ease-in-out infinite;
      &::before {
        opacity: 1;
      }
      &::after {
        opacity: 1;
      }
    }
  }
  .footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-light);
    letter-spacing: 0.8px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
    font-size: 1.1rem;
    i {
      font-size: 1.6rem;
      color: var(--primary);
      background: linear-gradient(
        135deg,
        rgba(92, 161, 232, 0.2),
        rgba(184, 74, 150, 0.2)
      );
      padding: 0.75rem;
      border-radius: 0.875rem;
      border: 1px solid rgba(92, 161, 232, 0.3);
      transition: all 0.3s ease;
    }
  }
  .footer-section:hover .footer-title i {
    transform: rotate(5deg) scale(1.1);
    background: linear-gradient(
      135deg,
      rgba(92, 161, 232, 0.3),
      rgba(184, 74, 150, 0.3)
    );
    border-color: var(--primary);
  }
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 0.75rem;
    a {
      color: var(--text-light);
      text-decoration: none;
      font-weight: 500;
      font-size: 1rem;
      padding: 1rem 1.25rem;
      border-radius: 0.875rem;
      display: flex;
      align-items: center;
      gap: 1rem;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
      );
      border: 1px solid rgba(255, 255, 255, 0.1);
      overflow: hidden;
      &::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(180deg, var(--primary), var(--accent));
        transform: scaleY(0);
        transition: transform 0.3s ease;
      }
      &:hover {
        color: var(--text-light);
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        border-color: var(--primary-light);
        transform: translateX(8px);
        box-shadow: 0 6px 20px rgba(92, 161, 232, 0.4);
        &::before {
          transform: scaleY(1);
        }
      }
      i {
        font-size: 1.2rem;
        color: var(--primary);
        transition: all 0.3s ease;
        min-width: 1.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      &:hover i {
        color: var(--text-light);
        transform: scale(1.2);
      }
    }
  }
  .footer-contact {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03)
    );
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: var(--primary);
      transform: scaleY(0);
      transition: transform 0.3s ease;
    }
    &:hover {
      background: linear-gradient(
        135deg,
        rgba(92, 161, 232, 0.15),
        rgba(92, 161, 232, 0.05)
      );
      border-color: var(--primary);
      transform: translateX(5px);
      box-shadow: 0 4px 15px rgba(92, 161, 232, 0.2);
      &::before {
        transform: scaleY(1);
      }
    }
    i {
      font-size: 1.3rem;
      margin-right: 1rem;
      color: var(--primary);
      min-width: 1.8rem;
      margin-top: 0.2rem;
      transition: all 0.3s ease;
    }
    &:hover i {
      transform: scale(1.15);
      color: var(--primary-light);
    }
  }
  .share-section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }
  .share-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--primary-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    i {
      color: var(--primary);
      font-size: 1.3rem;
    }
  }
  .btn-share {
    background: linear-gradient(
      135deg,
      rgba(92, 161, 232, 0.15),
      rgba(92, 161, 232, 0.05)
    );
    border: 1.5px solid var(--primary);
    color: var(--primary);
    padding: 0.875rem;
    border-radius: 0.875rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: var(--primary);
      transform: translate(-50%, -50%);
      transition:
        width 0.4s ease,
        height 0.4s ease;
      z-index: 0;
    }
    &:hover {
      color: var(--text-light);
      transform: translateY(-4px) scale(1.1);
      box-shadow: 0 8px 25px rgba(92, 161, 232, 0.5);
      border-color: var(--primary-light);
      &::before {
        width: 300%;
        height: 300%;
      }
    }
    i {
      font-size: 1.3rem;
      margin: 0;
      position: relative;
      z-index: 1;
      transition: transform 0.3s ease;
    }
    &:hover i {
      transform: rotate(360deg) scale(1.1);
    }
  }
  .business-id {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-top: 2rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(
      135deg,
      rgba(92, 161, 232, 0.15),
      rgba(184, 74, 150, 0.1)
    );
    border-radius: 0.875rem;
    border: 1px solid rgba(92, 161, 232, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
      );
      transition: left 0.5s ease;
    }
    &:hover {
      border-color: var(--primary);
      box-shadow: 0 4px 15px rgba(92, 161, 232, 0.3);
      transform: translateX(5px);
      &::before {
        left: 100%;
      }
    }
    i {
      color: var(--primary);
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }
    &:hover i {
      transform: rotate(15deg) scale(1.1);
    }
    span {
      color: var(--accent-light);
      font-weight: 700;
      font-size: 1.1rem;
    }
  }
  .footer-divider {
    border: none;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      var(--primary),
      var(--accent),
      var(--primary),
      transparent
    );
    margin: 3rem 0 2rem 0;
    opacity: 0.6;
  }
  .copyright {
    text-align: center;
    color: var(--neutral-350);
    font-size: 0.95rem;
    opacity: 0.85;
    padding: 1.5rem;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02)
    );
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    &:hover {
      opacity: 1;
      border-color: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }
  }
  @media (max-width: 768px) {
    padding: 2.5rem 0 2rem 0;
    .footer-section {
      padding: 2rem 1.5rem;
      margin-bottom: 1.5rem;
    }
    .footer-title {
      font-size: 1rem;
      margin-bottom: 1.5rem;
    }
    .footer-nav a {
      padding: 0.875rem 1rem;
      font-size: 0.95rem;
    }
    .footer-contact {
      padding: 0.875rem 1rem;
    }
  }
}
.modal-note {
  position: fixed;
  top: 80px;
  left: 30px;
  padding: 10px 20px;
  background-color: var(--success-bg);
  color: #212529;
  font-weight: 600;
  border-radius: 30px;
  animation: 0.3s ease-out forwards slide-in;
}
@keyframes slide-in {
  0% {
    left: -200px;
  }
  100% {
    left: 30px;
  }
}
