.fwtn-hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  background: #000;
  color: #fff;
  padding: clamp(7.4rem, 11vw, 9.2rem) 0 clamp(4.2rem, 6vw, 6.4rem);
  font-family: "Montserrat", sans-serif;
}

.fwtn-hero__bg { position: absolute; inset: 0; z-index: 0; }
.fwtn-hero__bg-image {
  width: 100%; height: 100%; object-fit: cover; opacity: .65;
  transform: scale(1.03);
  animation: fwtnHeroZoom 24s ease-in-out infinite;
}
.fwtn-hero__overlay { position: absolute; inset: 0; }
.fwtn-hero__overlay--v { background: linear-gradient(180deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 50%, #000 100%); }
.fwtn-hero__overlay--h { background: linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,0) 100%); }

.fwtn-hero__orb { position: absolute; border-radius: 9999px; filter: blur(120px); pointer-events: none; }
.fwtn-hero__orb--one { width: clamp(230px, 44vw, 570px); aspect-ratio: 1; right: 18vw; top: 16vh; background: rgba(76,43,124,.24); animation: fwtnOrbOne 11s ease-in-out infinite; }
.fwtn-hero__orb--two { width: clamp(180px, 34vw, 400px); aspect-ratio: 1; right: 24vw; top: 48vh; background: rgba(107,63,160,.2); animation: fwtnOrbTwo 13s ease-in-out infinite; }
.fwtn-hero::before,
.fwtn-hero::after{
  content:"";
  position:absolute;
  z-index:1;
  pointer-events:none;
  border-radius:999px;
  filter: blur(48px);
  opacity:.5;
}
.fwtn-hero::before{
  width:42vw;
  height:42vw;
  min-width:160px;
  min-height:160px;
  left:-14vw;
  top:22vh;
  background:rgba(123,84,189,.24);
  animation: fwtnMobGlowA 7s ease-in-out infinite;
}
.fwtn-hero::after{
  width:36vw;
  height:36vw;
  min-width:140px;
  min-height:140px;
  right:-10vw;
  bottom:22vh;
  background:rgba(76,43,124,.2);
  animation: fwtnMobGlowB 8.5s ease-in-out infinite;
}

.fwtn-hero__container {
  position: relative; z-index: 1; width: min(96vw, 1320px); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(2.8rem, 5vw, 5.2rem);
}
.fwtn-hero__left {
  width: 100%;
}

.fwtn-hero__badge {
  display: inline-flex; align-items: center; gap: .6rem;
  min-height: 2.58rem; padding: 0 .95rem;
  font-size: .875rem; font-weight: 500; color: rgba(255,255,255,.9);
  border-radius: 9999px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0,0,0,.4);
}

.fwtn-hero__title {
  margin: clamp(1.35rem, 2.8vw, 2.3rem) 0 0;
  font-size: clamp(2.25rem, 5.3vw, 4.45rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -.02em;
  max-width: 13.2ch;
  text-wrap: balance;
}
.fwtn-hero__title span {
  display: block;
  margin-top: .16em;
  background: linear-gradient(90deg, #fff 0%, #7c4dbd 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(124,77,189,.3));
}

.fwtn-hero__subtitle {
  margin: clamp(1.3rem, 2.1vw, 1.7rem) 0 0;
  width: 100%;
  max-width: 100%;
  font-size: clamp(1.02rem, 1.45vw, 1.24rem);
  line-height: 1.52;
  font-weight: 300;
  color: rgba(255,255,255,.7);
  padding: clamp(.95rem, 1.25vw, 1.2rem) clamp(1.1rem, 1.7vw, 1.35rem);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(20px);
}

.fwtn-hero__actions {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
  margin-top: clamp(1.35rem, 2.3vw, 1.9rem);
}
.fwtn-hero__contacts {
  margin-top: .9rem;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
  max-width: 100%;
}
.fwtn-hero__contact {
  text-decoration: none;
  color: #fff;
  min-height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: .55rem .85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  backdrop-filter: blur(20px);
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}
.fwtn-hero__contact:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
}
.fwtn-hero__contact span {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: rgba(255,255,255,.65);
}
.fwtn-hero__contact strong {
  font-size: clamp(.9rem, 1vw, .98rem);
  line-height: 1.2;
}
.fwtn-hero__contact--tg strong {
  color: #c8b6ff;
}
.fwtn-hero__btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 4.33rem; padding: 0 clamp(1.4rem, 2.4vw, 2.6rem);
  border-radius: 24px; text-decoration: none; font-size: 1.12rem; font-weight: 700;
  transition: transform .24s ease, box-shadow .24s ease;
}
.fwtn-hero__btn:hover { transform: translateY(-3px); }
.fwtn-hero__btn--primary {
  color: #fff;
  background: linear-gradient(180deg, #5e3a8f 0%, #4c2b7c 100%);
  box-shadow: 0 16px 48px rgba(76,43,124,.65), 0 8px 16px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.fwtn-hero__btn--primary::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.5) 50%, transparent 80%);
  transform: translateX(-140%);
  opacity: 0;
}
.fwtn-hero__btn--primary:hover::after{
  opacity: 1;
  animation: fwtnSweep .8s ease-out;
}
.fwtn-hero__btn--secondary {
  color: #fff; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  backdrop-filter: blur(25px);
}

.fwtn-hero__stats {
  margin: clamp(1.5rem, 2.6vw, 2.2rem) 0 0; padding: 0;
  width: 100%;
  list-style: none; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: .75rem;
}
.fwtn-hero__stats li {
  position: relative;
  min-height: 64px;
}
.fwtn-hero__stats strong {
  display: block;
  font-size: clamp(2rem, 2.8vw, 2.25rem);
  line-height: 1.1;
  font-weight: 700;
  color: #fff;
}
.fwtn-hero__stats strong.is-accent {
  background: linear-gradient(90deg, #fff 0%, #7c4dbd 55%, #6b3fa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.fwtn-hero__stats span {
  display: block;
  margin-top: .22rem;
  font-size: .875rem;
  line-height: 1.43;
  color: rgba(255,255,255,.6);
}

.fwtn-hero__right { display: none; position: relative; min-height: 700px; }
.fwtn-hero-ui {
  position: absolute; border-radius: 24px; overflow: hidden;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 48px rgba(0,0,0,.5);
  backdrop-filter: blur(26px);
}

.fwtn-hero-ui--browser {
  right: 0; top: 0; width: min(100%, 420px); height: 391px;
  border-radius: 32px; border-color: rgba(255,255,255,.15);
  background:
    linear-gradient(137deg, rgba(255,255,255,.18) 0%, rgba(255,255,255,.05) 50%, rgba(0,0,0,0) 100%),
    linear-gradient(137deg, rgba(76,43,124,.2) 0%, rgba(0,0,0,0) 50%, rgba(107,63,160,.15) 100%),
    rgba(255,255,255,.04);
  animation: fwtnFloatMain 8s ease-in-out infinite;
}
.fwtn-hero-ui__top { display: flex; justify-content: space-between; align-items: center; padding: 24px; }
.fwtn-hero-ui__dots { display: flex; gap: 8px; }
.fwtn-hero-ui__dots span { width: 12px; height: 12px; border-radius: 50%; display: block; }
.fwtn-hero-ui__dots span:nth-child(1){ background:#fb2c36; }
.fwtn-hero-ui__dots span:nth-child(2){ background:#f0b100; }
.fwtn-hero-ui__dots span:nth-child(3){ background:#00c950; }
.fwtn-hero-ui__domain {
  padding: 6px 14px; border-radius: 9999px; font-size: 12px; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.fwtn-hero-ui__line { height: 16px; border-radius: 14px; margin: 0 24px 12px; background: rgba(255,255,255,.08); }
.fwtn-hero-ui__line--main { margin-top: 4px; height: 40px; background: linear-gradient(90deg, rgba(90,53,137,.4), rgba(107,63,160,.3), rgba(0,0,0,0)); box-shadow: 0 0 20px rgba(107,63,160,.3); }
.fwtn-hero-ui__line--short { width: 60%; }
.fwtn-hero-ui__cta {
  margin: 14px 24px 0; height: 48px; border-radius: 16px;
  background: linear-gradient(180deg, rgba(90,53,137,.6), rgba(76,43,124,.6));
}
.fwtn-hero-ui__tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 24px 24px; }
.fwtn-hero-ui__tiles span { height: 96px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); }

.fwtn-hero-ui--delivery {
  left: -48px; top: 189px; width: 256px; height: 165px; border-radius: 20px;
  background: linear-gradient(147deg, rgba(255,255,255,.12) 0%, rgba(0,0,0,0) 50%), rgba(255,255,255,.05);
  animation: fwtnFloatSub 10s ease-in-out infinite;
}
.fwtn-hero-ui__delivery-top { padding: 20px 20px 10px; }
.fwtn-hero-ui__delivery-top strong { display: block; font-size: 14px; line-height: 1.3; }
.fwtn-hero-ui__delivery-top small { color: rgba(255,255,255,.6); font-size: 12px; }
.fwtn-hero-ui--delivery ul { margin: 0; padding: 0 20px; list-style: none; }
.fwtn-hero-ui--delivery li { position: relative; padding-left: 14px; font-size: 12px; color: rgba(255,255,255,.7); line-height: 1.9; }
.fwtn-hero-ui--delivery li::before {
  content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: #6b3fa0;
}

.fwtn-hero-ui--rate {
  right: 42px; top: 392px; width: 288px; min-height: 175px; border-radius: 24px;
  background: linear-gradient(148deg, rgba(255,255,255,.12) 0%, rgba(0,0,0,0) 50%, rgba(107,63,160,.1) 100%), rgba(255,255,255,.06);
  animation: fwtnFloatRate 9s ease-in-out infinite;
}
.fwtn-hero-ui__rate-head { display: flex; justify-content: space-between; padding: 24px 24px 0; font-size: 14px; color: rgba(255,255,255,.7); }
.fwtn-hero-ui__rate-head b { color: #d8c1ff; font-size: 13px; font-weight: 700; }
.fwtn-hero-ui__rate-value { padding: 8px 24px 0; font-weight: 700; font-size: 22px; line-height: 1.08; letter-spacing: -.01em; max-width: 11ch; color: #fff; }
.fwtn-hero-ui__rate-sub { padding: 8px 24px 0; font-size: 12px; color: rgba(255,255,255,.74); line-height: 1.4; }
.fwtn-hero-ui__rate-bar { margin: 12px 24px 0; height: 10px; border-radius: 9999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); padding: 1px; }
.fwtn-hero-ui__rate-bar span { display: block; width: 100%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #5a3589, #6b3fa0); box-shadow: 0 0 16px rgba(107,63,160,.8); }

@media (min-width: 1024px) {
  .fwtn-hero__container { grid-template-columns: minmax(640px, 49vw) minmax(560px, 1fr); align-items: start; }
  .fwtn-hero__title { max-width: 13.8ch; }
  .fwtn-hero__title span { white-space: normal; }
  .fwtn-hero__subtitle { max-width: 100%; }
  .fwtn-hero__contacts { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 100%; }
  .fwtn-hero__stats { grid-template-columns: repeat(3, minmax(0,1fr)); column-gap: 1.3rem; row-gap: 0; padding-top: 1.25rem; }
  .fwtn-hero__stats li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -1.5rem;
    width: 1px;
    height: 64px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.15) 50%, rgba(255,255,255,0) 100%);
  }
  .fwtn-hero__right { display: block; }
}

@media (max-width: 1023.98px) {
  .fwtn-hero{
    padding: clamp(6.2rem, 17vw, 8rem) 0 clamp(3.6rem, 9vw, 5rem);
  }
  .fwtn-hero__bg-image{
    opacity:.54;
  }
  .fwtn-hero__overlay--v{
    background: linear-gradient(180deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.58) 46%, #000 100%);
  }
  .fwtn-hero__overlay--h{
    background: linear-gradient(90deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.32) 56%, rgba(0,0,0,.08) 100%);
  }
  .fwtn-hero__badge{
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.16);
    box-shadow: 0 10px 28px rgba(0,0,0,.35);
  }
  .fwtn-hero__title { max-width: 11.6ch; }
  .fwtn-hero__title{
    max-width: 18ch;
    font-size: clamp(1.72rem, 8.2vw, 2.2rem);
    line-height: 1.08;
    margin-top: .9rem;
    text-wrap: normal;
  }
  .fwtn-hero__subtitle{
    font-size: clamp(1rem, 4.5vw, 1.12rem);
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.14);
  }
  .fwtn-hero__actions { grid-template-columns: 1fr; }
  .fwtn-hero__btn {
    min-height: 3.7rem;
    border-radius: 20px;
    font-size: 1.02rem;
    box-shadow: 0 14px 30px rgba(0,0,0,.32);
  }
  .fwtn-hero__btn--primary{
    box-shadow: 0 18px 40px rgba(76,43,124,.58), 0 8px 16px rgba(0,0,0,.35);
  }
  .fwtn-hero__contacts { grid-template-columns: 1fr; }
  .fwtn-hero__contact{
    min-height: 56px;
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.04) 58%, rgba(107,63,160,.16));
    border-color: rgba(255,255,255,.16);
  }
  .fwtn-hero__contact--phone{
    box-shadow: 0 8px 24px rgba(0,0,0,.28);
  }
  .fwtn-hero__contact--tg strong{
    text-shadow: 0 0 14px rgba(123,84,189,.4);
  }
  .fwtn-hero__stats { grid-template-columns: 1fr; }
  .fwtn-hero__stats li{
    min-height:auto;
    padding:.6rem .75rem;
    border-radius:14px;
    background: rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.09);
  }
  .fwtn-hero__stats strong{
    font-size: clamp(1.8rem, 8.5vw, 2.2rem);
  }
  .fwtn-hero__stats span{
    font-size:.83rem;
  }
}

.fwtn-r {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.fwtn-r--2 { transition-delay: .12s; }
.fwtn-r--3 { transition-delay: .22s; }
.fwtn-r--4 { transition-delay: .32s; }
.fwtn-r--5 { transition-delay: .42s; }
.fwtn-r--6 { transition-delay: .52s; }
.fwtn-hero-reveal.is-in .fwtn-r {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fwtnHeroZoom { 0%,100%{ transform: scale(1.02);} 50%{ transform: scale(1.06);} }
@keyframes fwtnOrbOne { 0%,100%{ transform: translate3d(0,0,0);} 50%{ transform: translate3d(28px,-22px,0);} }
@keyframes fwtnOrbTwo { 0%,100%{ transform: translate3d(0,0,0);} 50%{ transform: translate3d(-22px,28px,0);} }
@keyframes fwtnSweep { from { transform: translateX(-140%);} to { transform: translateX(140%);} }
@keyframes fwtnFloatMain { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }
@keyframes fwtnFloatSub { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(10px);} }
@keyframes fwtnFloatRate { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-8px);} }
@keyframes fwtnMobGlowA { 0%,100%{ transform: translate3d(0,0,0) scale(1);} 50%{ transform: translate3d(10px,-8px,0) scale(1.1);} }
@keyframes fwtnMobGlowB { 0%,100%{ transform: translate3d(0,0,0) scale(1);} 50%{ transform: translate3d(-8px,10px,0) scale(1.12);} }
