/* ======================================================================
   BANG FU — Memphis / Playful Geometric Design
   Nanjing Bangfuxiang Network Technology Co., Ltd.
   Colors: #FAFAFA, #1A1A1A, #E91E8A, #FFD500, #00BCD4, #F5F5F5
   ====================================================================== */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', 'Bebas Neue', 'Fredoka One', 'Inter', sans-serif;
  background: #FAFAFA;
  color: #1A1A1A;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

/* ---- Decorative Background Shapes ---- */
body::before {
  content: '';
  position: fixed;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  background: #E91E8A;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  background: #00BCD4;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

/* ---- Squiggly Line (CSS) ---- */
.squiggle {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 18px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    #FFD500 8px,
    #FFD500 12px,
    transparent 12px,
    transparent 20px
  );
  mask-image: url("data:image/svg+xml,%3Csvg width='100' height='18' viewBox='0 0 100 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9 Q 12.5 0 25 9 T 50 9 T 75 9 T 100 9' fill='none' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='100' height='18' viewBox='0 0 100 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 9 Q 12.5 0 25 9 T 50 9 T 75 9 T 100 9' fill='none' stroke='white' stroke-width='3'/%3E%3C/svg%3E");
  mask-size: 100px 18px;
  -webkit-mask-size: 100px 18px;
  mask-repeat: repeat-x;
  -webkit-mask-repeat: repeat-x;
}

.squiggle--pink {
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    #E91E8A 8px,
    #E91E8A 12px,
    transparent 12px,
    transparent 20px
  );
}

.squiggle--cyan {
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    #00BCD4 8px,
    #00BCD4 12px,
    transparent 12px,
    transparent 20px
  );
}

/* ---- Container ---- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.35s ease;
  background: transparent;
}

.nav--scrolled {
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.nav__logo {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  color: #1A1A1A;
  letter-spacing: 2px;
  position: relative;
}

.nav__logo::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  background: #FFD500;
  border-radius: 50%;
  z-index: -1;
  transform: translateX(-4px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__link {
  text-decoration: none;
  color: #1A1A1A;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background: #E91E8A;
  transition: width 0.3s ease;
}

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

.nav__link:hover {
  color: #E91E8A;
}

.nav__cta {
  background: #E91E8A;
  color: #FFF !important;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  transform: rotate(-1deg);
  display: inline-block;
}

.nav__cta:hover {
  background: #1A1A1A;
  transform: rotate(0deg) scale(1.05);
}

.nav__cta::after {
  display: none;
}

/* ---- Hamburger ---- */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.nav__toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #1A1A1A;
  transition: all 0.3s;
}

/* ---- Hero ---- */
.hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
  background: #FAFAFA;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  position: relative;
}

.hero__tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: #E91E8A;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 5.5rem;
  line-height: 0.9;
  color: #1A1A1A;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.hero__title span {
  display: inline-block;
  background: #FFD500;
  padding: 0 16px;
  transform: rotate(-2deg);
}

.hero__sub {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 480px;
  font-weight: 400;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: #1A1A1A;
  color: #FFF;
}

.btn--primary:hover {
  background: #E91E8A;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 #FFD500;
}

.btn--secondary {
  background: transparent;
  color: #1A1A1A;
  border: 3px solid #1A1A1A;
}

.btn--secondary:hover {
  background: #1A1A1A;
  color: #FFF;
  transform: translateY(-3px);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.hero__circle-pink {
  position: absolute;
  width: 200px;
  height: 200px;
  background: #E91E8A;
  border-radius: 50%;
  right: 10%;
  top: 5%;
  opacity: 0.85;
  animation: float 6s ease-in-out infinite;
}

.hero__triangle {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-bottom: 100px solid #FFD500;
  left: 15%;
  bottom: 15%;
  opacity: 0.9;
  animation: float 8s ease-in-out infinite 1s;
}

.hero__circle-cyan {
  position: absolute;
  width: 80px;
  height: 80px;
  background: #00BCD4;
  border-radius: 50%;
  left: 25%;
  top: 25%;
  opacity: 0.8;
  animation: float 5s ease-in-out infinite 2s;
}

.hero__square {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 5px solid #1A1A1A;
  right: 25%;
  bottom: 20%;
  transform: rotate(25deg);
  animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.hero__squiggle-wrap {
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 90%;
}

/* ---- Stats ---- */
.stats {
  padding: 60px 0;
  position: relative;
  z-index: 1;
}

.stats .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: #1A1A1A;
  color: #FFF;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  opacity: 0.3;
}

.stat-card--pink::before { background: #E91E8A; }
.stat-card--yellow::before { background: #FFD500; }
.stat-card--cyan::before { background: #00BCD4; }

.stat-card__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 1px;
}

.stat-card__dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}

.stat-card__dot--pink { background: #E91E8A; }
.stat-card__dot--yellow { background: #FFD500; }
.stat-card__dot--cyan { background: #00BCD4; }

/* ---- Section Headers ---- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header__tag {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 4px;
  color: #E91E8A;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-header__title {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 3.5rem;
  color: #1A1A1A;
  line-height: 1.1;
}

.section-header__title span {
  display: inline-block;
  background: #FFD500;
  padding: 0 10px;
  transform: rotate(-1deg);
}

/* ---- Services ---- */
.services {
  padding: 100px 0;
  background: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border: 4px dashed #E91E8A;
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 150px;
  height: 150px;
  border: 4px dashed #00BCD4;
  border-radius: 50%;
  opacity: 0.2;
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #FFF;
  padding: 36px 30px;
  position: relative;
  border-left: 6px solid #1A1A1A;
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 10px 10px 0 rgba(0,0,0,0.08);
}

.service-card--pink { border-left-color: #E91E8A; }
.service-card--yellow { border-left-color: #FFD500; }
.service-card--cyan { border-left-color: #00BCD4; }

.service-card__bracket {
  font-family: 'Bebas Neue', monospace;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.service-card--pink .service-card__bracket { color: #E91E8A; }
.service-card--yellow .service-card__bracket { color: #FFD500; }
.service-card--cyan .service-card__bracket { color: #00BCD4; }

.service-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #1A1A1A;
  letter-spacing: 1px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: #666;
  line-height: 1.6;
}

/* ---- Process ---- */
.process {
  padding: 100px 0;
  background: #FAFAFA;
  position: relative;
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 12.5%;
  width: 75%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    #1A1A1A 0px,
    #1A1A1A 12px,
    transparent 12px,
    transparent 20px
  );
  z-index: 0;
}

.process-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-card__badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #FFF;
  background: #1A1A1A;
}

.process-card:nth-child(1) .process-card__badge { background: #1A1A1A; }
.process-card:nth-child(2) .process-card__badge { background: #E91E8A; }
.process-card:nth-child(3) .process-card__badge { background: #FFD500; color: #1A1A1A; }
.process-card:nth-child(4) .process-card__badge { background: #00BCD4; }

.process-card__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.process-card__desc {
  font-size: 0.85rem;
  color: #666;
}

/* ---- Pattern Section ---- */
.pattern-section {
  padding: 80px 0;
  background: #1A1A1A;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.pattern-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
  background-size: 30px 30px;
  pointer-events: none;
}

.pattern-section__text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #FFF;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.pattern-section__text span {
  display: inline-block;
  color: #FFD500;
}

.pattern-section__shapes {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

.pattern-section__shape {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.8;
}

.pattern-section__shape--pink { background: #E91E8A; }
.pattern-section__shape--yellow { background: #FFD500; }
.pattern-section__shape--cyan { background: #00BCD4; }

/* ---- About ---- */
.about {
  padding: 100px 0;
  background: #FAFAFA;
  position: relative;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: 300px;
}

.about__blob {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #FFD500;
  border-radius: 65% 35% 70% 30% / 35% 60% 40% 65%;
  opacity: 0.2;
  animation: blob 10s ease-in-out infinite;
}

.about__blob--two {
  background: #E91E8A;
  border-radius: 40% 60% 30% 70% / 60% 35% 65% 40%;
  animation: blob 8s ease-in-out infinite reverse;
  opacity: 0.15;
}

@keyframes blob {
  0%, 100% { border-radius: 65% 35% 70% 30% / 35% 60% 40% 65%; }
  50% { border-radius: 35% 65% 30% 70% / 60% 40% 65% 35%; }
}

.about__content h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.about__content h3 .accent-pink { color: #E91E8A; }
.about__content h3 .accent-yellow { color: #FFD500; }
.about__content h3 .accent-cyan { color: #00BCD4; }

.about__content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---- CTA ---- */
.cta {
  padding: 80px 0;
  background: #E91E8A;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: 10%;
  width: 80px;
  height: 80px;
  background: #FFD500;
  border-radius: 50%;
  opacity: 0.3;
}

.cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: #FFF;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
}

.cta p {
  color: rgba(255,255,255,0.92);
  font-size: 1.1rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.cta .btn--primary {
  background: #FFF;
  color: #E91E8A;
  position: relative;
  z-index: 1;
}

.cta .btn--primary:hover {
  background: #1A1A1A;
  color: #FFF;
  box-shadow: 6px 6px 0 #FFD500;
}

/* ---- Contact ---- */
.contact {
  padding: 100px 0;
  background: #F5F5F5;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.04) 2px, transparent 2px);
  background-size: 24px 24px;
  pointer-events: none;
}

.contact__card {
  max-width: 640px;
  margin: 0 auto;
  background: #FFF;
  padding: 48px 40px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.contact__card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 3px solid #FFD500;
  z-index: -1;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 2px dashed #EEE;
}

.contact__item:last-child {
  border-bottom: none;
}

.contact__icon {
  font-size: 1.6rem;
  flex-shrink: 0;
}

.contact__label {
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}

.contact__value {
  font-size: 1rem;
  color: #1A1A1A;
  font-weight: 500;
}

.contact__value a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.3s;
}

.contact__value a:hover {
  color: #E91E8A;
}

.contact__card .btn {
  margin-top: 24px;
  width: 100%;
  text-align: center;
}

/* ---- Footer ---- */
.footer {
  background: #1A1A1A;
  color: #FFF;
  padding: 48px 0 32px;
}

.footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer__brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.88rem;
  color: #AAA;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #FFF;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.footer__social a:hover {
  background: #E91E8A;
  transform: translateY(-3px);
}

.footer__heading {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD500;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: #AAA;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: #E91E8A;
}

.footer__bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #666;
}

.footer__bottom a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s;
}

.footer__bottom a:hover {
  color: #E91E8A;
}

.footer__dp {
  display: flex;
  gap: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero__title { font-size: 4rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: #FAFAFA;
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
  }

  .nav__links--open {
    right: 0;
  }

  .nav__toggle {
    display: flex;
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 280px;
    order: -1;
  }

  .hero__title { font-size: 3.2rem; }
  .hero { padding: 120px 0 60px; }

  .stats .container {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about .container {
    grid-template-columns: 1fr;
  }

  .about__visual {
    min-height: 200px;
  }

  .footer .container {
    grid-template-columns: 1fr;
  }

  .section-header__title { font-size: 2.5rem; }
  .cta h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.5rem; }
  .hero__buttons { flex-direction: column; }
  .hero__buttons .btn { text-align: center; }
  .contact__card { padding: 32px 24px; }
}

/* ---- Legal Pages ---- */
.legal-page {
  padding: 140px 0 80px;
  background: #FAFAFA;
}

.legal-page .container {
  max-width: 800px;
}

.legal-page h1 {
  font-family: 'Bebas Neue', 'Outfit', sans-serif;
  font-size: 3.5rem;
  color: #1A1A1A;
  margin-bottom: 8px;
  line-height: 1.1;
}

.legal-page .last-updated {
  color: #999;
  font-size: 0.9rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: #1A1A1A;
  margin: 36px 0 12px;
  letter-spacing: 1px;
}

.legal-page p {
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-page ul {
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-page ul li {
  margin-bottom: 8px;
}

.legal-page a {
  color: #E91E8A;
  text-decoration: underline;
}

/* ---- Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Mobile nav overlay ---- */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
}

.nav__overlay--open {
  display: block;
}

/* ---- Geometric decorations for sections ---- */
.geo-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.geo-triangle {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 0;
}
