:root{
  --bg: #09090b;
  --bg-soft: #101014;
  --bg-card: #15151a;
  --bg-card-2: #14141a;
  --text: #f3f3f5;
  --muted: #b9b9c2;
  --line: rgba(255,255,255,.08);

  --pink-1: #ff8fb1;
  --pink-2: #ff5c93;
  --pink-3: #ff4f7d;
  --pink-4: #ff7a59;
  --rose: #ffb3c7;

  --btn: #ff5c93;
  --btn-hover: #ff6ba0;
  --white: #fff;

  --accent-gradient: linear-gradient(90deg, #ffb199 0%, #ff7da6 35%, #ff4f8b 70%, #ff6fa5 100%);
  --accent-glow: 0 0 30px rgba(255,92,147,.22);

  --nav-h: 58px;
  --container: 1100px;
  --container-wide: 1180px;
}

/* Reset */
*,
*::before,
*::after{
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}

body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open{
  overflow: hidden;
}

a{
  color: inherit;
  text-decoration: none;
}

img{
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
textarea,
select{
  font: inherit;
}

/* Base */
.section{
  padding: clamp(56px, 8vw, 100px) 20px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
}

.section-title{
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -.02em;
}

.section-subtitle{
  margin: 0 0 18px;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  color: #ececf1;
}

.accent{
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .82rem 1.18rem;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  color: var(--white);
  background: var(--btn);
  transition: transform .25s ease, filter .25s ease, background .25s ease, box-shadow .25s ease;
}

.btn:hover{
  background: var(--btn-hover);
  transform: translateY(-2px);
}

.btn--grad{
  background: var(--accent-gradient);
  box-shadow: var(--accent-glow);
}

.btn--grad:hover{
  filter: brightness(1.06);
}

.btn--lg{
  padding: 1rem 1.6rem;
  font-size: clamp(.95rem, 1.2vw, 1.05rem);
}

/* Reveal */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.reveal--hero{
  opacity: 1;
  transform: none;
}

/* Navbar */
.nav{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(130%) blur(10px);
  background: rgba(8,8,10,.58);
  border-bottom: 1px solid var(--line);
}

.nav__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo{
  font-weight: 900;
  letter-spacing: .03em;
  font-size: 1.08rem;
  color: #fff;
  white-space: nowrap;
}

.logo::after{
  content: " LLC";
  color: var(--pink-1);
  font-weight: 700;
}

.menu{
  display: flex;
  gap: 20px;
  margin-left: 24px;
}

.menu a{
  position: relative;
  font-size: .95rem;
  color: #dddde6;
  opacity: .9;
  transition: opacity .2s ease, color .2s ease;
}

.menu a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.menu a:hover{
  opacity: 1;
  color: var(--rose);
}

.menu a:hover::after{
  transform: scaleX(1);
}

.nav__toggle{
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.nav__toggle span{
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease, width .2s ease;
}

body.menu-open .nav__toggle span:nth-child(1){
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav__toggle span:nth-child(2){
  opacity: 0;
  width: 0;
}

body.menu-open .nav__toggle span:nth-child(3){
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px){
  .nav__toggle{
    display: block;
  }

  .menu{
    position: fixed;
    top: var(--nav-h);
    right: 12px;
    left: 12px;
    margin-left: 0;
    padding: 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: rgba(18,18,24,.96);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform .2s ease, opacity .2s ease, visibility .2s ease;
    z-index: 60;
  }

  .menu a{
    padding: 12px;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .menu a::after{
    display: none;
  }

  .menu a:hover{
    background: rgba(255,255,255,.06);
  }

  body.menu-open .menu{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}

/* Hero */
.hero{
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  padding: 120px 20px 60px;
  overflow: hidden;
  background: url("img/hero.jpg") center center / cover no-repeat;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 60% at 50% 18%, rgba(255,110,170,.18), rgba(0,0,0,0) 65%),
    linear-gradient(180deg, rgba(7,7,10,.48) 0%, rgba(7,7,10,.68) 36%, rgba(7,7,10,.86) 100%),
    linear-gradient(90deg, rgba(255,92,147,.08), rgba(255,140,120,.04));
  backdrop-filter: blur(1.5px);
}

.hero__content{
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero__content > *{
  opacity:0;
  transform:translateY(20px);
  animation:heroFade .9s ease forwards;
}

.hero__content > *:nth-child(1){ animation-delay:.2s; }
.hero__content > *:nth-child(2){ animation-delay:.35s; }
.hero__content > *:nth-child(3){ animation-delay:.5s; }
.hero__content > *:nth-child(4){ animation-delay:.65s; }
.hero__content > *:nth-child(5){ animation-delay:.8s; }

@keyframes heroFade{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.eyebrow{
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: clamp(.78rem, .95vw, .92rem);
  font-weight: 600;
  letter-spacing: .08em;
  color: rgba(255,255,255,.86);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
}

.hero__title{
  margin: 0 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 800;
  color: #fff;
  text-wrap: balance;
}

.hero__sub{
  max-width: 760px;
  margin: 0 auto 18px;
  font-size: clamp(1.02rem, 1.45vw, 1.28rem);
  line-height: 1.65;
  color: rgba(255,255,255,.86);
}

.hero__points{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin: 0 auto 30px;
  max-width: 760px;
}

.hero__points span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: .92rem;
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}

.hero__points span::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 12px rgba(255,92,147,.4);
}

.hero__cta{
  display: flex;
  justify-content: center;
}

.hero .btn{
  min-width: 220px;
  box-shadow: 0 14px 34px rgba(255,92,147,.18);
}

@media (max-width: 768px){
  .hero{
    min-height: 88vh;
    padding: 110px 18px 50px;
  }

  .hero__title{
    font-size: clamp(2.1rem, 9vw, 3.4rem);
    line-height: 1.06;
  }

  .hero__sub{
    font-size: 1rem;
  }

  .hero__points{
    gap: 10px;
    margin-bottom: 24px;
  }

  .hero__points span{
    font-size: .86rem;
    padding: 8px 12px;
  }

  .hero .btn{
    min-width: 200px;
  }
}

/* About */
.about{
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about__wrap{
  max-width: var(--container);
}

.about__head{
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}

.about__lead{
  color: #c8c8d0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.7;
}

.about__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
  margin-top: 30px;
}

.about-card{
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)), var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}

.about-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,125,166,.28);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.about-card__icon{
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.about-card h3{
  margin: 0 0 6px;
  font-size: 1.15rem;
  font-weight: 800;
}

.about-card p{
  margin: 0;
  color: #c8c8d0;
  line-height: 1.6;
}

.about__note{
  max-width: 850px;
  margin: 36px auto 0;
  text-align: center;
  color: #bdbdc6;
  font-size: .95rem;
  line-height: 1.7;
}

@media (max-width: 800px){
  .about__grid{
    grid-template-columns: 1fr;
  }
}

/* Platforms */
.platforms-section{
  position: relative;
  background: #0b0b10;
  overflow: hidden;
}

.platforms-section::before{
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 320px;
  background: radial-gradient(circle, rgba(255,92,147,.10), rgba(255,92,147,0) 70%);
  pointer-events: none;
}

.platforms-section__wrap{
  position: relative;
  z-index: 1;
  max-width: var(--container-wide);
}

.platforms-section__head{
  max-width: 900px;
  margin: 0 auto 34px;
  text-align: center;
}

.platforms-section__eyebrow{
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: #f6d7e4;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.platforms-section__text{
  max-width: 820px;
  margin: 0 auto 20px;
  color: #c7c7d0;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.platforms-section__badges{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.platform-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  color: #f0f0f5;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
}

.platform-groups{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 34px;
}

.platform-group{
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)), var(--bg-card-2);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 40px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.02);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.platform-group::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,147,.12), rgba(255,92,147,0));
  pointer-events: none;
}

.platform-group:hover{
  transform: translateY(-4px);
  border-color: rgba(255,125,166,.22);
  box-shadow: 0 24px 50px rgba(0,0,0,.32), 0 0 0 1px rgba(255,255,255,.02);
}

.platform-group__head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.platform-group__title{
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
}

.platform-group__count{
  font-size: .82rem;
  color: #aeb0ba;
  white-space: nowrap;
}

.platform-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.platform-grid--social{
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.platform-item{
  min-height: 92px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.platform-item:hover{
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255,125,166,.24);
  background: rgba(255,255,255,.045);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.platform-item img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 34px;
  opacity: .92;
  filter: brightness(0) invert(1);
  transition: transform .25s ease, opacity .25s ease;
}

.platform-item:hover img{
  opacity: 1;
  transform: scale(1.04);
}

.platform-item img[alt="TIDAL"]{
  max-height: 26px;
}

.platform-item img[alt="YouTube"]{
  max-height: 40px;
}

.platforms-section__cta{
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

@media (max-width: 980px){
  .platform-groups{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .platform-group{
    padding: 18px;
    border-radius: 20px;
  }

  .platform-group__head{
    flex-direction: column;
    align-items: flex-start;
  }

  .platform-grid{
    grid-template-columns: 1fr 1fr;
  }

  .platform-grid--social{
    grid-template-columns: 1fr 1fr;
  }

  .platform-item{
    min-height: 82px;
    padding: 16px;
  }

  .platform-item img{
    max-height: 30px;
  }
}

/* Why */
.choose{
  background: var(--bg-soft);
}

.choose__grid{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: min(6vw, 48px);
}

.choose__content{
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.choose__subtitle{
  margin: 0 0 18px;
  font-size: clamp(1.05rem, 2.2vw, 1.45rem);
  font-weight: 800;
  color: #e8e8ee;
}

.choose__list{
  margin: 0 0 22px;
  padding-left: 20px;
  color: #c9c9d1;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.choose__list li{
  margin: 8px 0;
}

.dashboard-card{
  position: relative;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)), var(--bg-card-2);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 20px 50px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.02), 0 0 50px rgba(255,92,147,.08);
  overflow: hidden;
  transform-style: preserve-3d;
}

.dashboard-card::before{
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,147,.18), rgba(255,92,147,0));
  pointer-events: none;
}

.dashboard-card::after{
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,179,199,.08), rgba(255,179,199,0));
  pointer-events: none;
}

.dashboard-card__top{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.dashboard-card__badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent-gradient);
  box-shadow: 0 0 25px rgba(255,92,147,.16);
}

.dashboard-card__status{
  font-size: .88rem;
  color: #bfc0ca;
  letter-spacing: .02em;
}

.dashboard-card__stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.stat-box{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.stat-box:hover{
  transform: translateY(-2px);
  border-color: rgba(255,125,166,.20);
}

.stat-box__label{
  display: block;
  margin-bottom: 8px;
  font-size: .84rem;
  color: #aeb0ba;
}

.stat-box__value{
  display: block;
  margin-bottom: 6px;
  font-size: 1.45rem;
  line-height: 1.1;
  color: #fff;
  font-weight: 800;
}

.stat-box__meta{
  display: block;
  font-size: .82rem;
  color: #c6c7d0;
}

.dashboard-card__charts{
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 14px;
  margin-bottom: 18px;
}

.chart-card{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.chart-card__head{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .92rem;
  color: #f1f1f4;
  font-weight: 700;
}

.chart-card__period{
  color: #aeb0ba;
  font-weight: 500;
}

.bars{
  height: 180px;
  padding-top: 10px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.bar{
  position: relative;
  flex: 1;
  height: var(--h);
  min-height: 28px;
  border-radius: 14px 14px 8px 8px;
  background: linear-gradient(180deg, rgba(255,255,255,.22), rgba(255,255,255,.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  animation: barRise .9s ease both;
  transform-origin: bottom;
}

.bar--accent{
  background: linear-gradient(180deg, #ffb199 0%, #ff7da6 35%, #ff4f8b 70%, #ff6fa5 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 8px 24px rgba(255,92,147,.22);
}

.bar span{
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .78rem;
  color: #bfc0ca;
}

.donut-wrap{
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.donut{
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#ff5c93 0 92%, rgba(255,255,255,.08) 92% 100%);
  box-shadow: 0 0 25px rgba(255,92,147,.14);
  animation: donutSpin 1.2s ease both;
}

.donut__inner{
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #15151b;
  color: #fff;
  font-weight: 800;
  font-size: 1.05rem;
}

.donut-legend{
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .86rem;
  color: #c6c7d0;
}

.dot{
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
}

.dot--pink{
  background: #ff5c93;
}

.dot--soft{
  background: rgba(255,255,255,.22);
}

.dashboard-card__table{
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}

.table-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-weight: 700;
}

.table-head__tag{
  font-size: .8rem;
  color: #acafba;
  font-weight: 500;
}

.table-row{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}

.table-row:first-of-type{
  border-top: none;
}

.table-row__title{
  color: #d7d8df;
  font-size: .95rem;
}

.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.pill--green{
  color: #d6ffe4;
  background: rgba(45,181,93,.18);
  border: 1px solid rgba(45,181,93,.28);
}

.pill--pink{
  color: #ffe0ec;
  background: rgba(255,92,147,.16);
  border: 1px solid rgba(255,92,147,.28);
}

.pill--blue{
  color: #dce9ff;
  background: rgba(76,132,255,.16);
  border: 1px solid rgba(76,132,255,.28);
}

@media (max-width: 980px){
  .choose__grid{
    grid-template-columns: 1fr;
  }

  .dashboard-card{
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 700px){
  .dashboard-card{
    padding: 16px;
    border-radius: 20px;
  }

  .dashboard-card__top,
  .table-head,
  .table-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .dashboard-card__stats,
  .dashboard-card__charts{
    grid-template-columns: 1fr;
  }

  .bars{
    height: 160px;
    gap: 10px;
  }
}

/* Services */
.services{
  background: #0f0f13;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.services__head{
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.services__text{
  max-width: 760px;
  margin: 0 auto;
  color: #c9c9d1;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;
}

.services__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 20px;
}

.service-card{
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)), var(--bg-card);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 32px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.02);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}

.service-card::before{
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,92,147,.16), rgba(255,92,147,0));
  opacity: .8;
  pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  border-color: rgba(255,125,166,.28);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 30px rgba(255,92,147,.08);
}

.service-card:hover::before{
  transform: scale(1.08);
  opacity: 1;
}

.service-card__icon{
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  background: var(--accent-gradient);
  box-shadow: 0 10px 24px rgba(255,92,147,.18);
}

.service-card__title{
  margin: 0 0 10px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #fff;
}

.service-card__desc{
  max-width: 95%;
  margin: 0;
  color: #c6c7d0;
  line-height: 1.7;
  font-size: 1rem;
}

.services__cta{
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px){
  .services__grid{
    grid-template-columns: 1fr;
  }

  .service-card{
    min-height: auto;
  }
}

/* Contact */
.contact{
  background: var(--bg-soft);
  text-align: center;
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 110px) 20px;
}

.contact__text{
  margin: 0 0 28px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #d4d4dd;
}

.contact__box{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border: 1.5px solid rgba(255,255,255,.24);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.contact__box:hover{
  transform: translateY(-2px);
  border-color: rgba(255,125,166,.28);
  box-shadow: 0 14px 34px rgba(0,0,0,.22), 0 0 28px rgba(255,92,147,.08);
}

.contact__mail{
  font-size: clamp(1.05rem, 2.4vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: .2px;
}

.contact__mail:hover{
  color: var(--rose);
}

/* Scroll top */
.scroll-top{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .25s ease;
}

.scroll-top.is-visible{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  transform: translateY(-2px);
}

/* Motion */
.float-card{
  animation: floatCard 5s ease-in-out infinite;
}

.pulse-card{
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes floatCard{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

@keyframes pulseGlow{
  0%, 100%{ box-shadow: 0 0 0 rgba(255,92,147,0); }
  50%{ box-shadow: 0 0 30px rgba(255,92,147,.10); }
}

@keyframes donutSpin{
  from{ transform: rotate(-80deg) scale(.92); opacity: .4; }
  to{ transform: rotate(0) scale(1); opacity: 1; }
}

@keyframes barRise{
  from{ transform: scaleY(0); opacity: .3; }
  to{ transform: scaleY(1); opacity: 1; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal{
    opacity: 1 !important;
    transform: none !important;
  }
}