* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: #1b1b1b;
  background: #fff;
}

:root{
  --container: 1180px;
  --pink: #ff2d8d;
  --orange: #ff7a00;
  --grape: #6b2cff;

  --text: #151515;
  --muted: rgba(21,21,21,.72);
  --white: #fff;

  --border: rgba(0,0,0,.10);
  --shadow: 0 14px 30px rgba(0,0,0,.10);
  --shadow-strong: 0 18px 44px rgba(0,0,0,.16);

  --radius-lg: 16px;
  --radius-xl: 22px;
}

.container{
  width: min(var(--container), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 10px;
  background: #000;
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus{ left: 12px; }

.topbar{
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  color: rgba(255,255,255,.95);
}
.topbar__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  font-size: 14px;
}
.topbar__left span{
  font-weight: 800;
  letter-spacing: .2px;
}
.topbar__right{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.topbar__link{
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.topbar__link svg{
  flex: 0 0 auto;
  opacity: .95;
}
.topbar__link:hover{ text-decoration: underline; }

.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid var(--border);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  user-select: none;
}
.logo__icon{
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    radial-gradient(120% 120% at 20% 20%, rgba(255,255,255,.55), rgba(255,255,255,0)),
    linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: var(--shadow);
  transform: rotate(-6deg);
}
.logo__text{
  font-weight: 900;
  letter-spacing: .2px;
  font-size: 18px;
  line-height: 1;
}
.logo__text span{
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav{ margin-left: auto; }

.nav__list{
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__link{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
  transition: transform .15s ease, background-color .15s ease;
}

.nav__link svg{
  flex: 0 0 auto;
  opacity: .9;
}

.nav__link:hover{
  background: rgba(255,45,141,.10);
  transform: translateY(-1px);
}
.nav__link:focus-visible{
  outline: 3px solid rgba(107,44,255,.28);
  outline-offset: 2px;
}

.header__actions{
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn--primary{
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--orange));
  box-shadow: var(--shadow);
}
.btn--primary:hover{
  box-shadow: var(--shadow-strong);
  transform: translateY(-1px);
}
.btn--primary svg{ opacity: .95; }

.burger{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  display: none; 
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
}
.burger span{
  display: block;
  width: 20px;
  height: 2px;
  background: #111;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

.is-menu-open .burger span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.is-menu-open .burger span:nth-child(2){ opacity: 0; }
.is-menu-open .burger span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px){
  .topbar__inner{
    flex-direction: column;
    align-items: flex-start;
  }
  .topbar__right{
    width: 100%;
    justify-content: flex-start;
  }

  .nav{
    position: fixed;
    left: 0;
    right: 0;
    top: 72px; /* below header */
    padding: 14px 16px 18px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px) saturate(180%);
    border-bottom: 1px solid var(--border);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
  }

  .nav__list{
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 6px;
  }

  .nav__link{
    justify-content: flex-start;
    padding: 14px 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: #fff;
    border-radius: 16px;
  }

  .burger{ display: inline-flex; }
  .is-menu-open .nav{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}


@media (max-width: 420px){
  .logo__text{ font-size: 16px; }
}

.burger{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  display: none;           
  align-items: center;
  justify-content: center;
  flex-direction: column;     
  gap: 6px;            
  padding: 0;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.burger:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

.burger:focus-visible{
  outline: 3px solid rgba(107,44,255,.28);
  outline-offset: 2px;
}

.burger span{
  display: block;
  width: 22px;
  height: 2.5px;
  background: #111;
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}


.is-menu-open .burger span:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.is-menu-open .burger span:nth-child(2){ opacity: 0; }
.is-menu-open .burger span:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 980px){
  .burger{ display: inline-flex; }
}

/* =========================
   HERO
   ========================= */

.hero{
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 72px) 0;
  background:
    radial-gradient(900px 520px at 18% 18%, rgba(255,45,141,.20), rgba(255,45,141,0) 60%),
    radial-gradient(900px 520px at 88% 20%, rgba(255,122,0,.22), rgba(255,122,0,0) 60%),
    radial-gradient(900px 520px at 70% 85%, rgba(107,44,255,.18), rgba(107,44,255,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,1));
}

.hero::before{
  content:"";
  position:absolute;
  inset: -120px -140px auto auto;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,45,141,.42), rgba(255,122,0,.42));
  filter: blur(22px);
  opacity: .55;
  transform: rotate(10deg);
  pointer-events: none;
}

.hero::after{
  content:"";
  position:absolute;
  inset: auto auto -160px -140px;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107,44,255,.40), rgba(255,45,141,.25));
  filter: blur(26px);
  opacity: .55;
  transform: rotate(-8deg);
  pointer-events: none;
}

.hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
}

.hero__kicker{
  margin: 0 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  font-weight: 900;
  font-size: 13px;
}

.pill--soft{
  background: rgba(255,255,255,.65);
}

.hero__title{
  margin: 0 0 12px 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.hero__title span{
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead{
  margin: 0 0 18px 0;
  color: rgba(21,21,21,.78);
  font-size: clamp(15px, 1.55vw, 18px);
  line-height: 1.5;
  max-width: 56ch;
}

.hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px 0;
}

.btn--ghost{
  color: var(--text);
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}
.btn--ghost:hover{
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
  transform: translateY(-1px);
}

.hero__badges{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.75);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  font-weight: 800;
  font-size: 14px;
}

.badge__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,45,141,.20), rgba(255,122,0,.20));
}

.hero__media{
  position: relative;
}

.hero__frame{
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
}

.hero__frame img{
  display: block;
  width: 100%;
  height: clamp(320px, 40vw, 460px);
  object-fit: cover;
}

.hero__cards{
  position: absolute;
  left: -14px;
  right: -14px;
  bottom: -18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 14px;
}

.mini-card{
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
  padding: 12px 12px 11px;
}

.mini-card__top{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-weight: 900;
}

.mini-card__icon{
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(107,44,255,.16), rgba(255,45,141,.14), rgba(255,122,0,.14));
}

.mini-card p{
  margin: 0;
  font-weight: 700;
  font-size: 13px;
  color: rgba(21,21,21,.72);
}

@media (max-width: 980px){
  .hero__inner{
    grid-template-columns: 1fr;
  }
  .hero__frame img{
    height: clamp(260px, 58vw, 420px);
  }
  .hero__cards{
    position: static;
    padding: 12px 0 0;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 640px){
  .hero__cards{
    grid-template-columns: 1fr;
  }
  .badge{
    width: 100%;
    justify-content: flex-start;
  }
}

.section{
  padding: clamp(40px, 6vw, 84px) 0;
}

.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.section-kicker{
  margin: 0 0 8px 0;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(21,21,21,.68);
}

.section-title{
  margin: 0 0 10px 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.15;
  letter-spacing: -0.3px;
}

.section-lead{
  margin: 0;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
  max-width: 70ch;
  font-size:22px;
}

.section-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.courses{
  background:
    radial-gradient(900px 420px at 10% 0%, rgba(255,122,0,.10), rgba(255,122,0,0) 65%),
    radial-gradient(900px 420px at 90% 0%, rgba(107,44,255,.08), rgba(107,44,255,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.course-grid2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.course2{
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.course2:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.course2__media{
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.course2__media img{
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.course2__badge{
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--grape), var(--pink));
  box-shadow: 0 14px 30px rgba(0,0,0,.18);
}

.course2__badge--soft{
  color: #fff;
  background: linear-gradient(135deg, rgba(255,122,0,.9), rgba(255,45,141,.7));
  border: 1px solid rgba(0,0,0,.10);
}

.course2__badge--hot{
  background: linear-gradient(135deg, var(--pink), var(--orange));
}

.course2__body{
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course2__title{
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.course2__text{
  margin: 0;
  color: rgba(21,21,21,.72);
  line-height: 1.5;
}

.course2__meta{
  list-style: none;
  padding: 0;
  margin: 2px 0 0;
  display: grid;
  gap: 8px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(21,21,21,.75);
}

.course2__meta li{
  display: flex;
  align-items: center;
  gap: 10px;
}

.course2__meta i{
  width: 18px;
  text-align: center;
  opacity: .9;
  color: rgba(107,44,255,.9);
}

.course2__bottom{
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.course2__price{
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}

.course2__from{
  font-weight: 900;
  font-size: 12px;
  color: rgba(21,21,21,.55);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.course2__value{
  font-weight: 1000;
  font-size: 20px;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.courses-includes{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.include2{
  border-radius: 20px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.include2 i{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,44,255,.14), rgba(255,45,141,.14), rgba(255,122,0,.14));
  color: rgba(21,21,21,.85);
  flex: 0 0 42px;
}

.include2 strong{
  display: block;
  margin-bottom: 4px;
}

.include2 p{
  margin: 0;
  color: rgba(21,21,21,.70);
  line-height: 1.45;
  font-weight: 650;
}


@media (max-width: 980px){
  .course-grid2{
    grid-template-columns: 1fr;
  }
  .course2__media img{
    height: 400px;
  }
  .courses-includes{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px){
  .course2__media img{
    height: 240px;
  }
}


.benefits{
  position: relative;
  overflow: hidden;
  background-image: url(../images/6.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.benefits::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}


.benefits .container{
  position: relative;
  z-index: 1;
}

.benefits__grid{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 16px;
  margin-top: 18px;
  align-items: stretch;
}

.benefit-big{
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.benefit-big::before{
  content:"";
  position:absolute;
  inset:-120px -140px auto auto;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(107,44,255,.28), rgba(255,45,141,.22), rgba(255,122,0,.18));
  filter: blur(22px);
  opacity: .55;
  pointer-events: none;
}

.benefit-big__tag{
  margin: 0 0 10px 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  background: linear-gradient(135deg, rgba(255,45,141,.14), rgba(255,122,0,.12));
  border: 1px solid rgba(0,0,0,.08);
  position: relative;
}

.benefit-big h3{
  margin: 0 0 10px 0;
  font-size: 22px;
  letter-spacing: -0.3px;
  position: relative;
}

.benefit-big p{
  margin: 0 0 14px 0;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
  font-weight: 650;
  position: relative;
}

.benefit-big__list{
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 10px;
  position: relative;
}

.benefit-big__list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  font-weight: 800;
}

.benefit-big__list i{
  color: rgba(107,44,255,.95);
}

.benefit-big__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  position: relative;
}

.benefits__cards{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-card{
  border-radius: 22px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.benefit-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.benefit-card__icon{
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.16), rgba(255,45,141,.14), rgba(255,122,0,.14));
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 10px;
}

.benefit-card__icon i{
  color: rgba(21,21,21,.90);
  font-size: 18px;
}

.benefit-card h4{
  margin: 0 0 6px 0;
  font-size: 16px;
  letter-spacing: -0.2px;
}

.benefit-card p{
  margin: 0;
  color: rgba(21,21,21,.72);
  line-height: 1.45;
  font-weight: 650;
}

/* stats */
.benefits__stats{
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat{
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  padding: 14px;
  text-align: center;
}

.stat__value{
  font-weight: 1000;
  font-size: 22px;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat__label{
  margin-top: 6px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(21,21,21,.70);
}

.benefits__note{
  margin: 10px 0 0;
  color: rgba(21,21,21,.60);
  font-weight: 650;
}

/* responsive */
@media (max-width: 980px){
  .benefits__grid{
    grid-template-columns: 1fr;
  }
  .benefits__cards{
    grid-template-columns: 1fr;
  }
  .benefits__stats{
    grid-template-columns: 1fr 1fr;
  }
}


.process{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 20% 15%, rgba(107,44,255,.10), rgba(107,44,255,0) 65%),
    radial-gradient(900px 520px at 85% 10%, rgba(255,45,141,.10), rgba(255,45,141,0) 65%),
    radial-gradient(900px 520px at 70% 90%, rgba(255,122,0,.10), rgba(255,122,0,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.slider{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.14);
  background: rgba(255,255,255,.75);
  margin-top: 18px;
}

.slider__viewport{
  overflow: hidden;
}

.slider__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.slide{
  margin: 0;
  flex: 0 0 100%;
}

.slide img{
  display: block;
  width: 100%;
  height: clamp(240px, 38vw, 420px);
  object-fit: cover;
}

/* overlay для читаемости (можно выключить) */
.slider::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(107,44,255,.18), rgba(255,45,141,.12), rgba(255,122,0,.10));
  pointer-events:none;
  z-index: 1;
}

/* buttons */
.slider__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(10px) saturate(180%);
  box-shadow: 0 14px 30px rgba(0,0,0,.20);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.slider__btn:hover{
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.slider__btn--prev{ left: 12px; }
.slider__btn--next{ right: 12px; }

.slider__btn i{
  color: rgba(21,21,21,.90);
}

/* dots */
.slider__dots{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider__dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.55);
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, width .15s ease;
}

.slider__dot.is-active{
  width: 26px;
  background: rgba(255,255,255,.90);
}

/* ---- Cards ---- */
.process-cards{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.p-card{
  border-radius: 24px;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.p-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.p-card__icon{
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.14), rgba(255,45,141,.14), rgba(255,122,0,.14));
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 10px;
}

.p-card__icon i{
  font-size: 18px;
  color: rgba(21,21,21,.90);
}

.p-card h3{
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.p-card p{
  margin: 0 0 10px 0;
  color: rgba(21,21,21,.72);
  line-height: 1.5;
  font-weight: 650;
}

.p-meta{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(21,21,21,.75);
}

.p-meta li{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.70);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
}

.p-meta i{
  color: rgba(107,44,255,.95);
}


@media (max-width: 980px){
  .process-cards{
    grid-template-columns: 1fr;
  }
}

.pricing{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 18% 15%, rgba(255,122,0,.40), rgba(255,122,0,0) 65%),
    radial-gradient(900px 520px at 82% 18%, rgba(107,44,255,.40), rgba(107,44,255,0) 65%),
    radial-gradient(900px 520px at 60% 90%, rgba(255,45,141,.40), rgba(255,45,141,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.pricing__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: stretch;
}

.price-card{
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 16px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}

.price-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.price-card__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.price-card__name h3{
  margin: 0 0 4px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.price-card__name p{
  margin: 0;
  color: rgba(21,21,21,.70);
  font-weight: 650;
}

.price-card__price{
  text-align: right;
  white-space: nowrap;
}

.price-from{
  display: block;
  font-weight: 900;
  font-size: 12px;
  color: rgba(21,21,21,.55);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.price-value{
  font-weight: 1000;
  font-size: 22px;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.price-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.price-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  font-weight: 800;
  color: rgba(21,21,21,.78);
}

.price-list li i{
  width: 18px;
  text-align: center;
  color: rgba(107,44,255,.95);
}

.price-list li.is-muted{
  opacity: .65;
}

.price-list li.is-muted i{
  color: rgba(21,21,21,.65);
}

.price-card__btn{
  margin-top: 14px;
  width: 100%;
  justify-content: center;
}

/* featured */
.price-card--featured{
  border-color: rgba(255,45,141,.28);
  box-shadow: 0 22px 50px rgba(0,0,0,.16);
  transform: translateY(-2px);
}

.price-card--featured::before{
  content:"";
  position:absolute;
  inset:-140px -160px auto auto;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,45,141,.22), rgba(255,122,0,.18), rgba(107,44,255,.20));
  filter: blur(24px);
  opacity: .55;
  pointer-events: none;
}

.price-badge{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(21,21,21,.92);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.14);
}

.price-badge i{
  color: rgba(255,45,141,.95);
}

/* note */
.pricing__note{
  margin-top: 14px;
}

.note-card{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.note-card i{
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(107,44,255,.3), rgba(255,45,141,.3), rgba(255,122,0,.3));
  border: 1px solid rgba(0,0,0,.08);
  color: rgba(21,21,21,.90);
  flex: 0 0 42px;
}

.note-card p{
  margin: 2px 0 0 0;
  color: rgba(21,21,21,.72);
  line-height: 1.5;
  font-weight: 650;
}

@media (max-width: 980px){
  .pricing__grid{
    grid-template-columns: 1fr;
  }
  .price-card--featured{
    transform: none;
  }
}

.promo{
  position: relative;
  overflow: hidden;
  padding: clamp(48px, 6vw, 92px) 0;
  background-image: url(../images/12.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.promo::before{
  content: "";
  position: absolute;
  inset: 0;
 
}

.promo::after{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18); 
}

.promo__inner{
  position: relative;
  z-index: 1;
   display: flex;
  justify-content: flex-end;
}

.promo__content{
  max-width: 64ch;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(12px) saturate(160%);
  box-shadow: 0 22px 50px rgba(0,0,0,.28);
}


.promo__kicker{
  margin: 0 0 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.promo__pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  color: rgba(255,255,255,.95);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.promo__pill--soft{
  background: rgba(0,0,0,.18);
  border-color: rgba(255,255,255,.16);
}

.promo__pill i{
  color: rgba(255,255,255,.92);
}

/* title */
.promo__title{
  margin: 0 0 10px 0;
  color: #fff;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.4px;
}

.promo__title span{
  background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* text */
.promo__text{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,.86);
  line-height: 1.55;
  font-weight: 650;
}

/* bullets */
.promo__bullets{
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: grid;
  gap: 10px;
}

.promo__bullets li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-weight: 800;
}

.promo__bullets i{
  color: rgba(255,255,255,.92);
}

/* actions */
.promo__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 12px 0;
}

.promo__ghost{
  color: rgba(255,255,255,.92);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

.promo__ghost:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 44px rgba(0,0,0,.30);
}

/* note */
.promo__note{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.promo__note i{
  opacity: .92;
}

/* responsive */
@media (max-width: 640px){
  .promo__content{
    padding: 14px;
  }
  .promo__actions .btn{
    width: 100%;
    justify-content: center;
  }
}


.faq{
  position: relative;
  overflow: hidden;
  background-color:#fff;
}

.faq__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-item{
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}

.faq-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.faq-question{
  padding: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 900;
  font-size: 15px;
  color: rgba(21,21,21,.92);
  list-style: none;
}

.faq-question::-webkit-details-marker{
  display: none;
}

.faq-question i{
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.14), rgba(255,45,141,.14), rgba(255,122,0,.14));
  border: 1px solid rgba(0,0,0,.08);
  transition: transform .18s ease;
}

.faq-answer{
  padding: 0 16px 16px 16px;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
  font-weight: 650;
}

.faq-answer p{
  margin: 0;
}

.faq-item[open] .faq-question i{
  transform: rotate(45deg);
}

.faq__bottom{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.faq-help{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.faq-help__icon{
  width: 52px;
  height: 52px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.14), rgba(255,45,141,.14), rgba(255,122,0,.14));
  border: 1px solid rgba(0,0,0,.08);
}

.faq-help__icon i{
  font-size: 18px;
  color: rgba(21,21,21,.90);
}

.faq-help h3{
  margin: 0 0 4px 0;
  font-size: 16px;
}

.faq-help p{
  margin: 0;
  color: rgba(21,21,21,.70);
  font-weight: 650;
}

/* responsive */
@media (max-width: 980px){
  .faq__grid{
    grid-template-columns: 1fr;
  }

  .faq__bottom .btn{
    width: 100%;
    justify-content: center;
  }

  .faq-help{
    width: 100%;
  }
}

.contact{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(107,44,255,.40), rgba(107,44,255,0) 65%),
    radial-gradient(900px 520px at 85% 15%, rgba(255,45,141,.40), rgba(255,45,141,0) 65%),
    radial-gradient(900px 520px at 60% 90%, rgba(255,122,0,.40), rgba(255,122,0,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.contact__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.contact-card{
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  padding: 18px;
}

.contact-card h3{
  margin: 0 0 12px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.contact-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-list li{
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.contact-icon{
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.14), rgba(255,45,141,.14), rgba(255,122,0,.14));
  border: 1px solid rgba(0,0,0,.08);
}

.contact-icon i{
  color: rgba(21,21,21,.90);
  font-size: 18px;
}

.contact-list strong{
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  color: rgba(21,21,21,.65);
  text-transform: uppercase;
  letter-spacing: .3px;
}

.contact-list a{
  color: rgba(21,21,21,.92);
  font-weight: 900;
  text-decoration: none;
}
.contact-list a:hover{
  text-decoration: underline;
}
.contact-list span{
  color: rgba(21,21,21,.78);
  font-weight: 750;
}

/* badges */
.contact-badges{
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  font-weight: 900;
  color: rgba(21,21,21,.82);
}

.contact-badge i{
  color: rgba(255,45,141,.95);
}

/* note */
.contact-note{
  margin: 12px 0 0 0;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(21,21,21,.70);
  font-weight: 650;
  line-height: 1.45;
  margin:30px 0 30px;;
}

.contact-note i{
  margin-top: 2px;
  color: rgba(107,44,255,.9);
}

/* right form */
.form-card{
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.12);
  padding: 18px;
  overflow: hidden;
}

.form-card__head h3{
  margin: 0 0 6px 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.form-card__head p{
  margin: 0 0 14px 0;
  color: rgba(21,21,21,.70);
  font-weight: 650;
  line-height: 1.5;
}

/* Styling wrapper for embedded form */
#form{
  border-radius: 22px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  padding: 12px;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

@media (max-width: 680px){
  #form{
    padding:0;
  }
  .form-card{
    padding:15px;
  }
}

@media (max-width: 980px){
  .contact__grid{
    grid-template-columns: 1fr;
  }
}

.faq-question span{
  line-height: 1.25;
}
.faq-question i{
  flex-shrink: 0;
}

.footer{
  position: relative;
  overflow: hidden;
  padding: 34px 0 18px;
  background:
    radial-gradient(900px 520px at 15% 15%, rgba(255,45,141,.80), rgba(255,45,141,0) 65%),
    radial-gradient(900px 520px at 85% 15%, rgba(107,44,255,.80), rgba(107,44,255,0) 65%),
    radial-gradient(900px 520px at 60% 90%, rgba(255,122,0,.80), rgba(255,122,0,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
  border-top: 1px solid rgba(0,0,0,.08);
}

.footer__inner{
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 18px;
  align-items: start;
}

.footer__brand{
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 16px;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(21,21,21,.95);
  font-weight: 1000;
}

.footer__logoMark{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(107,44,255,.18), rgba(255,45,141,.18), rgba(255,122,0,.16));
  border: 1px solid rgba(0,0,0,.10);
  letter-spacing: -0.5px;
}

.footer__logoText{
  font-size: 16px;
  letter-spacing: -0.2px;
}

.footer__text{
  margin: 10px 0 14px 0;
  color: rgba(21,21,21,.72);
  line-height: 1.55;
  font-weight: 500;
}

/* social */
.footer__social{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
  color: rgba(107,44,255,.95);
}
.social:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}
.social i{
  font-size: 18px;
}

/* nav columns */
.footer__nav{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.footer__col{
  border-radius: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 16px;
}

.footer__title{
  margin: 0 0 10px 0;
  font-size: 18px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(107,44,255,.95);
  font-weight: 700;
}

.footer__links{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__links a{
  text-decoration: none;
  font-weight: 700;
  color: rgba(21,21,21,.8);
}
.footer__links a:hover{
  text-decoration: underline;
}

.footer__contact{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer__contact li{
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(21,21,21,.78);
  font-weight: 750;
}

.footer__contact i{
  width: 18px;
  text-align: center;
  color: rgba(107,44,255,.95);
}

.footer__contact a{
  color: rgba(21,21,21,.88);
  text-decoration: none;
  font-weight: 900;
}
.footer__contact a:hover{
  text-decoration: underline;
}

/* bottom bar */
.footer__bottom{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__copy{
  margin: 0;
  color: rgba(21,21,21,.65);
  font-weight: 650;
}

.footer__toTop{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(21,21,21,.92);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.footer__toTop:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(0,0,0,.12);
}

.footer__toTop i{
  color: rgba(255,45,141,.95);
}

/* responsive */
@media (max-width: 980px){
  .footer__inner{
    grid-template-columns: 1fr;
  }
  .footer__nav{
    grid-template-columns: 1fr;
  }
}

.reviews{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 15% 10%, rgba(255,122,0,.10), rgba(255,122,0,0) 65%),
    radial-gradient(900px 520px at 85% 15%, rgba(255,45,141,.10), rgba(255,45,141,0) 65%),
    radial-gradient(900px 520px at 60% 90%, rgba(107,44,255,.10), rgba(107,44,255,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.reviews__grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.review{
  border-radius: 26px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  padding: 16px;
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0,0,0,.14);
}

.review__top{
  display: grid;
  grid-template-columns: 52px 1fr auto;
  gap: 12px;
  align-items: center;
}

.review__avatar{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.9);
}

.review__who strong{
  display: block;
  font-weight: 1000;
  letter-spacing: -0.2px;
}

.review__who span{
  display: block;
  color: rgba(21,21,21,.65);
  font-weight: 750;
  font-size: 13px;
}

.review__stars{
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

.review__stars i{
  color: rgba(255,45,141,.95);
}

.review__text{
  margin: 0;
  color: rgba(21,21,21,.74);
  line-height: 1.55;
  font-weight: 650;
}

.review__tag{
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  font-weight: 900;
  color: rgba(21,21,21,.82);
  width: fit-content;
}

.review__tag i{
  color: rgba(107,44,255,.95);
}

/* bottom */
.reviews__bottom{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews__score{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}

.score__value{
  font-weight: 1000;
  font-size: 26px;
  letter-spacing: -0.2px;
  background: linear-gradient(90deg, var(--grape), var(--pink), var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.score__text{
  color: rgba(21,21,21,.72);
  font-weight: 800;
  line-height: 1.2;
}
.score__text span{
  color: rgba(21,21,21,.60);
  font-weight: 700;
  font-size: 13px;
}

/* responsive */
@media (max-width: 980px){
  .reviews__grid{
    grid-template-columns: 1fr;
  }
  .reviews__bottom .btn{
    width: 100%;
    justify-content: center;
  }
  .reviews__score{
    width: 100%;
  }
}



.legal{
  padding: 60px 0;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(255,45,141,.08), rgba(255,45,141,0) 65%),
    radial-gradient(900px 520px at 80% 15%, rgba(107,44,255,.08), rgba(107,44,255,0) 65%),
    linear-gradient(180deg, rgba(255,255,255,1), rgba(255,255,255,1));
}

.legal__inner{
  max-width: 820px;
}

.legal h1{
  font-size: 34px;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
}

.legal h2{
  font-size: 20px;
  margin-bottom: 12px;
  margin-top: 30px;
  letter-spacing: -0.2px;
}

.legal p{
  color: rgba(21,21,21,.75);
  line-height: 1.6;
  font-weight: 500;
}

.legal-block{
  margin-bottom: 10px;
}

.legal-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-list li{
  margin-bottom: 10px;
  font-weight: 500;
}

.legal-list a{
  color: rgba(107,44,255,.95);
  text-decoration: none;
}

.legal-list a:hover{
  text-decoration: underline;
}

/* =========================
   COOKIE BANNER
   ========================= */
.cookie{
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%);
  width: min(100% - 24px, 680px);
  z-index: 9999;

  border-radius: 26px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(0,0,0,.12);
  box-shadow: 0 24px 60px rgba(0,0,0,.20);
  padding: 18px;
  display: none;
}

.cookie.show{
  display: block;
}

.cookie__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie__text strong{
  display: block;
  margin-bottom: 6px;
}

.cookie__text p{
  margin: 0;
  color: rgba(21,21,21,.75);
  font-weight: 650;
  line-height: 1.5;
}

.cookie__text a{
  color: rgba(255,45,141,.95);
  font-weight: 900;
  text-decoration: none;
}

.cookie__text a:hover{
  text-decoration: underline;
}

.cookie__actions{
  display: flex;
  gap: 10px;
  flex-wrap:wrap;
}

@media (max-width: 640px){
  .cookie__actions{
    width: 100%;
  }
  .cookie__actions .btn{
    width: 100%;
    justify-content: center;
  }
}
 .lander-form-field .lander-submit{
         width:94%!important;
         font-size:16px!important;
}