:root{
  --bg:#090f25;
  --bg-2:#111733;
  --glass:rgba(255,255,255,.09);
  --glass-2:rgba(255,255,255,.14);
  --line:rgba(255,255,255,.18);
  --text:#f5f7ff;
  --muted:#c4cef0;
  --accent1:#3b7bff;
  --accent2:#ff7a18;
  --accent3:#a855f7;
  --good:#23d18b;
  --radius:18px;
  --radius-lg:26px;
  --shadow:0 10px 40px rgba(0,0,0,.35);
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

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

.noise{
  position:fixed; inset:0; pointer-events:none; z-index:1;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='.07'/></svg>");
  mix-blend-mode:soft-light;
}

.bg-orbs{position:fixed; inset:0; z-index:0; pointer-events:none}
.orb{
  position:absolute; width:520px; height:520px; border-radius:50%;
  filter:blur(90px); opacity:.65;
  background:radial-gradient(circle at 30% 30%, var(--accent1), transparent 60%);
  animation:float 16s ease-in-out infinite;
}
.orb--1{top:-160px; left:-140px}
.orb--2{right:-220px; top:10%; background:radial-gradient(circle at 30% 30%, var(--accent2), transparent 60%); animation-duration:20s}
.orb--3{left:8%; bottom:-240px; background:radial-gradient(circle at 30% 30%, var(--accent3), transparent 60%); animation-duration:22s}

@keyframes float{
  0%,100%{transform:translateY(0) translateX(0) scale(1)}
  50%{transform:translateY(50px) translateX(30px) scale(1.05)}
}

.loader{
  position:fixed; inset:0; z-index:9999; display:grid; place-items:center;
}
.loader__bg{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 600px at 10% -10%, #2563eb55, transparent 60%),
    radial-gradient(900px 500px at 90% 20%, #ff7a1866, transparent 60%),
    linear-gradient(180deg, #050614, #090c1f);
}
.loader__content{
  width:min(520px, 92vw);
  padding:34px;
  text-align:center;
  border:1px solid var(--line);
  background:rgba(8,10,24,.8);
  border-radius:24px;
  box-shadow:var(--shadow);
  backdrop-filter: blur(8px);
}
.loader__logo{
  font-weight:800; letter-spacing:.6px; font-size:28px;
  background:linear-gradient(90deg, #fff, #cbd5ff, #fff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.loader__bar{
  margin:18px auto 10px;
  height:10px; border-radius:999px; overflow:hidden;
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
}
.loader__bar span{
  display:block; height:100%; width:0%;
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow:0 0 20px #3b7bffaa;
  transition:width .18s ease;
}
.loader__percent{font-size:38px; font-weight:800}
.loader__hint{color:var(--muted); font-size:13px; margin-top:6px}

.header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(12px);
  background:linear-gradient(90deg, rgba(9,15,37,.98), rgba(9,15,37,.94));
  border-bottom:1px solid var(--line);
}
.header__row{
  min-height:74px; display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.logo{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--text)}
.logo__mark{
  width:34px; height:34px; border-radius:10px;
  background:conic-gradient(from 120deg, var(--accent1), var(--accent2), var(--accent3), var(--accent1));
  box-shadow:0 0 18px rgba(120,170,255,.7);
}
.logo__text{font-weight:700; letter-spacing:.2px}

.nav{display:flex; gap:18px}
.nav__link{
  text-decoration:none; color:var(--muted); font-weight:500; font-size:14px;
  padding:8px 10px; border-radius:10px; position:relative;
}
.nav__link.active, .nav__link:hover{
  color:#fff; background:var(--glass);
}
.header__actions{display:flex; gap:10px; align-items:center}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px; border-radius:14px; font-weight:600; font-size:14px;
  text-decoration:none; cursor:pointer; border:1px solid transparent; transition:.18s ease;
  color:#fff;
}
.btn--primary{
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow:0 10px 30px rgba(59,123,255,.35);
}
.btn--primary:hover{transform:translateY(-1px); filter:saturate(1.1)}
.btn--ghost{
  background:transparent; border-color:var(--line); color:#fff;
}
.btn--ghost:hover{background:var(--glass)}
.btn--glass{
  background:var(--glass); border-color:var(--line);
}
.btn--glass:hover{background:var(--glass-2); transform:translateY(-1px)}
.btn--full{width:100%}

.hero{
  position:relative; padding:84px 0 78px;
  background:
    radial-gradient(1300px 700px at 5% -10%, #2563eb55, transparent 60%),
    radial-gradient(900px 600px at 95% 0%, #ff7a1855, transparent 60%),
    linear-gradient(180deg, #0a1026 0%, #090f25 55%, #090f25 100%);
}
.hero__grid{
  display:grid; grid-template-columns:1.1fr .9fr; gap:26px; align-items:center;
}
.badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; border-radius:999px; font-size:12px; font-weight:600;
  background:var(--glass); border:1px solid var(--line); color:#fff;
}
.badge__dot{
  width:8px; height:8px; border-radius:50%; background:var(--good);
  box-shadow:0 0 10px var(--good);
}
.hero__title{
  font-size:clamp(32px, 4.2vw, 54px);
  line-height:1.08; margin:14px 0 10px; font-weight:800;
  letter-spacing:.2px;
}
.grad-text{
  background:linear-gradient(90deg, #fff, var(--accent2), #fff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow:0 0 18px rgba(255,122,24,.35);
}
.hero__text{
  color:var(--muted);
  font-size:17px;
  line-height:1.7;
  max-width:580px;
}
.hero__btns{display:flex; gap:10px; margin:18px 0 22px; flex-wrap:wrap}

.hero__trust{display:flex; gap:18px; flex-wrap:wrap}
.trust__item{
  background:var(--glass); border:1px solid var(--line); padding:10px 12px;
  border-radius:14px; min-width:120px;
}
.trust__num{font-weight:800; font-size:20px}
.trust__label{color:var(--muted); font-size:12px}

.hero-card{
  position:relative; padding:18px; border-radius:22px;
  background:rgba(8,10,24,.9); border:1px solid var(--line);
  box-shadow:var(--shadow); overflow:hidden;
}
.hero-card__glow{
  position:absolute; inset:-40%;
  background:radial-gradient(circle at 30% 20%, #3b7bff55, transparent 45%),
             radial-gradient(circle at 70% 10%, #ff7a1855, transparent 40%);
  filter:blur(60px);
}
.hero-card__head{position:relative; padding:8px 8px 2px}
.hero-card__title{font-weight:800; font-size:18px}
.hero-card__subtitle{color:var(--muted); font-size:12px; margin-top:2px}

.form{position:relative; display:grid; gap:10px; padding:8px}
.form--panel{background:rgba(10,12,30,.8); border:1px solid var(--line); border-radius:18px; padding:14px}
.field{display:grid; gap:6px}
.field span{font-size:12px; color:var(--muted); font-weight:500}
.field input, .field textarea{
  width:100%; padding:12px 12px; border-radius:12px;
  border:1px solid var(--line); background:rgba(255,255,255,.03);
  color:#fff; outline:none; font-size:14px;
}
.field input:focus, .field textarea:focus{border-color:rgba(255,255,255,.35)}
.form__note{color:var(--muted); font-size:12px; margin:0}

.wave{
  position:absolute; left:0; right:0; height:140px; overflow:hidden; pointer-events:none;
}
.wave svg{width:100%; height:100%}
.wave path{fill:#070916}
.wave--dark path{fill:#0a0f27}
.wave--bottom{bottom:-1px}

.section{position:relative; padding:82px 0}
.section--lift{
  background:linear-gradient(180deg, #090f25, #0a122b);
}
.section--dark{
  background:
    radial-gradient(1200px 600px at 5% 0%, #a855f722, transparent 60%),
    radial-gradient(900px 600px at 95% 0%, #3b7bff22, transparent 60%),
    linear-gradient(180deg, #0a122b, #101732);
}
.section__head{text-align:center; max-width:820px; margin:0 auto 34px}
.section__title{
  font-size:clamp(26px, 3.2vw, 40px);
  margin:0 0 8px; font-weight:800;
}
.section__sub{
  color:var(--muted);
  margin:0;
  font-size:17px;
  line-height:1.7;
}

.section a,
.card__text a,
.step__body a,
.work-card__body a,
.price-card__desc a,
.faq__item a,
.contact__bullet a,
.testimonial__text a,
.greview__text a{
  color:var(--accent1);
  font-weight:600;
  text-decoration:none;
  text-shadow:0 0 10px rgba(59,123,255,.45);
  transition:.18s ease;
}

.section a:hover,
.card__text a:hover,
.step__body a:hover,
.work-card__body a:hover,
.price-card__desc a:hover,
.faq__item a:hover,
.contact__bullet a:hover,
.testimonial__text a:hover,
.greview__text a:hover{
  color:var(--accent2);
  text-shadow:0 0 14px rgba(255,122,24,.8);
}

.cards{display:grid; gap:14px}
.cards--3{grid-template-columns:repeat(3,1fr)}
.card{
  background:var(--glass); border:1px solid var(--line);
  border-radius:20px; padding:18px; box-shadow:var(--shadow);
  transition:.2s ease;
}
.card:hover{transform:translateY(-3px); background:var(--glass-2)}
.card__icon{font-size:22px}
.card__title{margin:8px 0 6px; font-weight:700}
.card__text{
  color:var(--muted);
  margin:0 0 8px;
  font-size:16px;
  line-height:1.7;
}
.card__list{margin:0; padding-left:16px; color:#dbe2ff; font-size:15px}
.card__list li{margin:4px 0}

.mini-cta{
  margin-top:18px; display:flex; gap:12px; align-items:center; justify-content:center;
  padding:14px; border:1px dashed var(--line); border-radius:16px; background:rgba(255,255,255,.03);
}

.steps{display:grid; gap:10px; grid-template-columns:repeat(2,1fr)}
.step{
  display:flex; gap:12px; padding:16px; border-radius:18px;
  border:1px solid var(--line); background:var(--glass);
}
.step__num{
  font-weight:800; font-size:22px; color:#fff;
  background:linear-gradient(180deg, rgba(59,123,255,.25), rgba(255,122,24,.2));
  padding:8px 10px; border-radius:12px; height:max-content;
}
.step__body h3{margin:0 0 4px}
.step__body p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}

.work-grid{
  display:grid; gap:12px; grid-template-columns:repeat(3,1fr);
}
.work-card{
  background:var(--glass); border:1px solid var(--line);
  border-radius:20px; overflow:hidden; box-shadow:var(--shadow);
}
.work-card__img{height:180px; background-size:cover; background-position:center}
.work-card__img--a{
  background-image:linear-gradient(120deg, #0b173a, #1b2c6f), radial-gradient(600px 200px at 20% 0%, #3b7bff55, transparent 60%);
}
.work-card__img--b{
  background-image:linear-gradient(120deg, #1a0f2d, #0b173a), radial-gradient(600px 200px at 80% 0%, #ff7a1855, transparent 60%);
}
.work-card__img--c{
  background-image:linear-gradient(120deg, #0b2a26, #0b173a), radial-gradient(600px 200px at 50% 0%, #a855f755, transparent 60%);
}
.work-card__body{padding:14px}
.work-card__body h3{margin:0 0 6px}
.work-card__body p{
  margin:0 0 8px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}
.work-card__meta{display:flex; gap:6px; flex-wrap:wrap}
.work-card__meta span{
  font-size:11px; background:rgba(255,255,255,.07); border:1px solid var(--line);
  padding:4px 7px; border-radius:999px;
}

.center{text-align:center; margin-top:18px}

.offer-grid{
  display:grid; gap:14px;
  grid-template-columns:repeat(4,1fr);
}
.offer-btn{
  position:relative;
  border-radius:20px;
  padding:18px 16px;
  border:1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(600px 260px at 0% 0%, #3b7bff33, transparent 60%),
    radial-gradient(600px 260px at 100% 0%, #ff7a1833, transparent 60%),
    var(--glass-2);
  color:#fff;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:6px;
  box-shadow:var(--shadow);
  font-family:inherit;
  text-align:left;
  transition:.2s ease;
}
.offer-btn::after{
  content:"→";
  position:absolute;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  opacity:.7;
  font-weight:700;
}
.offer-btn:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.4);
}
.offer-btn__label{
  font-size:18px;
  font-weight:800;
}
.offer-btn__tag{
  font-size:13px;
  color:var(--muted);
}

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

.price-card{
  position:relative;
  border-radius:22px;
  padding:20px 18px 18px;
  background:
    radial-gradient(600px 260px at 0% 0%, #3b7bff33, transparent 60%),
    radial-gradient(600px 260px at 100% 0%, #ff7a1833, transparent 60%),
    var(--glass);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap:10px;
  transition:.2s ease;
}

.price-card::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:radial-gradient(circle at 20% 0%, rgba(59,123,255,.22), transparent 55%);
  opacity:.7;
  pointer-events:none;
}

.price-card > *{
  position:relative;
  z-index:1;
}

.price-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.45);
  background:
    radial-gradient(700px 280px at 0% 0%, #3b7bff44, transparent 60%),
    radial-gradient(700px 280px at 100% 0%, #ff7a1844, transparent 60%),
    var(--glass-2);
}

.price-card__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:4px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.04em;
  text-transform:uppercase;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
}

.price-card__tag--hot{
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  border-color:rgba(255,255,255,.9);
  color:#fff;
  box-shadow:0 0 18px rgba(64,140,255,.7);
}

.price-card h3{
  margin:6px 0 2px;
  font-size:18px;
  font-weight:700;
}

.price-card__desc{
  margin:0 0 6px;
  font-size:15px;
  color:var(--muted);
}

.price-card__price{
  font-size:24px;
  font-weight:800;
  margin:4px 0 10px;
  background:linear-gradient(90deg, #fff, var(--accent2), #fff);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.price-card ul{
  margin:0 0 12px;
  padding-left:18px;
  font-size:15px;
  color:#dbe2ff;
}
.price-card ul li{
  margin:3px 0;
}

.price-card--hot{
  background:
    radial-gradient(700px 280px at 0% 0%, #3b7bff55, transparent 60%),
    radial-gradient(700px 280px at 100% 0%, #ff7a1855, transparent 60%),
    var(--glass-2);
  border-color:rgba(255,255,255,.55);
  box-shadow:0 14px 40px rgba(59,123,255,.45);
}

@media (max-width:1000px){
  .pricing{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:680px){
  .pricing{
    grid-template-columns:1fr;
  }
}

.faq{display:grid; gap:8px; max-width:900px; margin:0 auto}
.faq__item{
  background:var(--glass); border:1px solid var(--line);
  border-radius:16px; padding:12px 14px;
}
.faq__item summary{cursor:pointer; font-weight:600}
.faq__item p{
  color:var(--muted);
  margin:8px 0 0;
  font-size:16px;
  line-height:1.7;
}

.contact{
  background:
    radial-gradient(1200px 600px at 0% 0%, #3b7bff22, transparent 60%),
    radial-gradient(1200px 600px at 100% 0%, #ff7a1822, transparent 60%),
    linear-gradient(180deg, #070916, #070a1b);
}
.contact__grid{
  display:grid; gap:18px; grid-template-columns:1.05fr .95fr; align-items:start;
}
.contact__bullets{display:grid; gap:8px; margin-top:12px}
.contact__bullet{
  padding:10px 12px; border-radius:12px; border:1px solid var(--line);
  background:var(--glass); font-weight:600; font-size:15px;
}

.footer{
  position:relative;
  padding:28px 0 22px;
  background:
    radial-gradient(900px 400px at 0% 0%, rgba(59,123,255,.22), transparent 60%),
    radial-gradient(900px 400px at 100% 0%, rgba(255,122,24,.18), transparent 60%),
    linear-gradient(180deg, #06091c, #040614);
  border-top:1px solid rgba(255,255,255,.09);
}

.footer::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  transform:translateX(-50%);
  width:120px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  opacity:.85;
}

.footer__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:32px;
  padding-bottom:18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.footer__brand{
  max-width:360px;
}

.footer__logo{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:6px;
}

.footer__logo-mark{
  width:30px;
  height:30px;
  border-radius:10px;
  background:conic-gradient(from 120deg, var(--accent1), var(--accent2), var(--accent3), var(--accent1));
  box-shadow:0 0 14px rgba(120,170,255,.7);
}

.footer__logo-text{
  font-weight:700;
  letter-spacing:.2px;
}

.footer__tagline{
  margin:4px 0 10px;
  font-size:13px;
  color:var(--muted);
}

.footer__badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.footer__badge{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.04);
  color:var(--muted);
}

.footer__badge--link{
  text-decoration:none;
  cursor:pointer;
}

.footer__badge--link:hover{
  border-color:rgba(255,255,255,.4);
  color:#fff;
}

.footer__links{
  display:flex;
  gap:32px;
}

.footer__group{
  min-width:140px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.footer__group-title{
  font-size:13px;
  font-weight:600;
  color:#e2e6ff;
  margin-bottom:2px;
}

.footer__group a{
  font-size:13px;
  color:var(--muted);
  text-decoration:none;
}

.footer__group a:hover{
  color:#fff;
}

.footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding-top:14px;
}

.footer__copy{
  font-size:12px;
  color:var(--muted);
}

.footer__bottom-links{
  display:flex;
  gap:12px;
}

.footer__bottom-links a{
  font-size:12px;
  color:var(--muted);
  text-decoration:none;
}

.footer__bottom-links a:hover{
  color:#fff;
}

@media (max-width:780px){
  .footer__top{
    flex-direction:column;
    gap:20px;
  }
  .footer__links{
    width:100%;
    justify-content:space-between;
  }
}

@media (max-width:560px){
  .footer__links{
    flex-direction:column;
    gap:16px;
  }
  .footer__bottom{
    flex-direction:column-reverse;
    align-items:flex-start;
  }
}

.modal{
  position:fixed;
  inset:0;
  z-index:80;
  display:none;
}
.modal.open{display:block}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(3,4,15,.75);
}
.modal__panel{
  position:absolute;
  inset:auto;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(520px, 92vw);
  background:
    radial-gradient(900px 400px at 0% 0%, #3b7bff33, transparent 60%),
    radial-gradient(900px 400px at 100% 0%, #ff7a1833, transparent 60%),
    #050716;
  border-radius:22px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:16px 16px 18px;
}
.modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:2px 4px 8px;
}
.modal__head h3{
  margin:0;
  font-size:18px;
  font-weight:700;
}
.modal__close{
  width:34px;
  height:34px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--glass);
  color:#fff;
  font-size:18px;
  cursor:pointer;
}

.choice-row{
  display:grid;
  gap:6px;
}
.choice-label{
  font-size:12px;
  color:var(--muted);
  font-weight:500;
}
.choice-pills{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
}
.choice-pills label{
  position:relative;
}
.choice-pills input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.choice-pills span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:7px 11px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  cursor:pointer;
  transition:.16s ease;
}
.choice-pills input:checked + span{
  border-color:rgba(255,255,255,.9);
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  color:#fff;
  box-shadow:0 0 18px rgba(64,140,255,.6);
}

.reveal{
  opacity:0; transform:translateY(16px) scale(.98);
  transition:opacity .6s ease, transform .6s ease;
}
.reveal.visible{
  opacity:1; transform:translateY(0) scale(1);
}

@media (max-width:1000px){
  .hero__grid, .contact__grid{grid-template-columns:1fr}
  .cards--3, .work-grid, .offer-grid{grid-template-columns:1fr 1fr}
  .steps{grid-template-columns:1fr}
}
@media (max-width:680px){
  .nav{display:none}
  .burger{display:grid}
  .cards--3, .work-grid, .offer-grid{grid-template-columns:1fr}
  .hero{padding-top:70px}
  .hero__trust{gap:10px}
  .modal__panel{
    top:50%;
    transform:translate(-50%,-50%);
  }
}

.hero-options{
  position:relative;
  padding:10px 4px 4px;
  display:grid;
  gap:10px;
}
.offer-btn--hero{
  width:100%;
  box-shadow:none;
  padding:14px 14px;
}
.hero-card .offer-btn::after{
  right:14px;
}
.mobile-menu{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  bottom:0 !important;
  background:rgba(7,11,30,0.96) !important;
  display:none !important;
  z-index:999 !important;
}
.mobile-menu.open{
  display:block !important;
}
.mobile-menu__panel{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  bottom:0 !important;
  padding:20px 18px 18px !important;
  background:
    radial-gradient(1200px 700px at 0% 0%, #2563eb66, transparent 60%),
    radial-gradient(1200px 700px at 100% 0%, #ff7a1866, transparent 60%),
    linear-gradient(180deg, #0a1026, #0b1230) !important;
  border-radius:0 !important;
  border:1px solid rgba(255,255,255,0.18) !important;
  display:flex !important;
  flex-direction:column !important;
  gap:10px !important;
  overflow-y:auto !important;
}
.mobile-menu__top{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  padding:4px 2px 10px !important;
}
.mobile-menu__title{
  font-weight:700 !important;
  font-size:16px !important;
}
.mobile-menu__close{
  width:40px !important;
  height:40px !important;
  border-radius:14px !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  background:rgba(0,0,0,0.35) !important;
  color:#fff !important;
  font-size:22px !important;
  cursor:pointer !important;
}
.mobile-menu__link{
  text-decoration:none !important;
  color:#fff !important;
  font-weight:600 !important;
  font-size:15px !important;
  padding:14px 12px !important;
  border-radius:14px !important;
  background:rgba(255,255,255,0.06) !important;
  border:1px solid rgba(255,255,255,0.16) !important;
}
.mobile-menu__link:hover{
  border-color:rgba(255,255,255,0.35) !important;
  background:rgba(255,255,255,0.09) !important;
}
.mobile-menu__cta{
  margin-top:auto !important;
  padding-top:10px !important;
}

.burger{
  width:44px !important;
  height:40px !important;
  border-radius:12px !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  background:rgba(0,0,0,0.35) !important;
  display:grid !important;
  place-items:center !important;
  cursor:pointer !important;
}
.burger span{
  display:block !important;
  width:20px !important;
  height:2px !important;
  background:#fff !important;
  margin:3px 0 !important;
  box-shadow:0 0 8px rgba(255,255,255,0.4) !important;
}
.burger--active{
  border-color:rgba(255,255,255,0.9) !important;
  background:linear-gradient(90deg, var(--accent1), var(--accent2)) !important;
  box-shadow:0 0 18px rgba(59,123,255,0.8) !important;
}
.testimonials{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.testimonial{
  background:var(--glass);
  border:1px solid var(--line);
  border-radius:20px;
  padding:16px 16px 14px;
  box-shadow:var(--shadow);
}
.testimonial__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:8px;
}
.testimonial__name{
  font-size:14px;
  font-weight:600;
}
.testimonial__rating{
  font-size:14px;
  color:#facc15;
}
.testimonial__text{
  font-size:15px;
  color:var(--muted);
  margin:0 0 10px;
}
.testimonial__meta{
  font-size:13px;
  color:var(--muted);
  opacity:.9;
}

@media (max-width:1000px){
  .testimonials{
    grid-template-columns:1fr 1fr;
  }
}
@media (max-width:680px){
  .testimonials{
    grid-template-columns:1fr;
  }
}
.greview{
  position:fixed;
  left:18px;
  bottom:18px;
  z-index:60;
  display:block;
  width:260px;
  padding:14px 14px 12px;
  border-radius:18px;
  text-decoration:none;
  color:var(--text);
  background:linear-gradient(135deg, rgba(15,23,42,.98), rgba(15,23,42,.92));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 14px 40px rgba(0,0,0,.55);
  overflow:hidden;
  backdrop-filter:blur(10px);
  transform:translateY(0);
  transition:transform .22s ease, opacity .22s ease, box-shadow .22s ease;
}

.greview__glow{
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 0% 0%, #3b7bff55, transparent 60%),
    radial-gradient(circle at 100% 0%, #ff7a1850, transparent 60%);
  filter:blur(60px);
  opacity:.7;
  pointer-events:none;
}

.greview__top{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-bottom:6px;
}

.greview__label{
  font-size:12px;
  font-weight:600;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(15,23,42,.96);
  border:1px solid rgba(255,255,255,.18);
  display:inline-flex;
  align-items:center;
  gap:6px;
}

.greview__label::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:#34d399;
  box-shadow:0 0 10px #34d399;
}

.greview__close{
  width:26px;
  height:26px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(15,23,42,.92);
  color:#fff;
  font-size:16px;
  line-height:1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0;
}

.greview__rating-row{
  position:relative;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:4px;
}

.greview__score{
  font-size:20px;
  font-weight:800;
}

.greview__stars{
  font-size:14px;
  letter-spacing:1px;
  color:#fde047;
  text-shadow:0 0 10px rgba(250,204,21,.7);
}

.greview__text{
  position:relative;
  font-size:14px;
  color:var(--muted);
  margin-bottom:8px;
}

.greview__cta{
  position:relative;
  margin-top:6px;
  font-size:12px;
  font-weight:600;
  color:#bfdbfe;
  display:inline-flex;
  align-items:center;
  gap:6px;
  text-decoration:none;
}

.greview__cta::after{
  content:"↗";
  font-size:11px;
  opacity:.9;
}

.greview:hover{
  box-shadow:0 18px 50px rgba(15,23,42,.9);
  transform:translateY(-2px);
}

.greview--hidden{
  opacity:0;
  pointer-events:none;
  transform:translateY(10px);
}

@media (max-width:600px){
  .greview{
    width:230px;
    left:12px;
    bottom:12px;
    padding:12px 12px 10px;
  }
}
@media (min-width: 681px){
  .burger{
    display:none !important;
  }
}
.header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(9, 12, 28, 0.82);
  border-bottom:1px solid rgba(255,255,255,0.12);
  box-shadow:0 4px 40px rgba(0,0,0,0.55);
}

.header::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:160px;
  background:radial-gradient(circle at left center, #3b7bff40, transparent 70%);
  pointer-events:none;
}

.header::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  bottom:0;
  width:160px;
  background:radial-gradient(circle at right center, #ff7a1840, transparent 70%);
  pointer-events:none;
}

.header__row{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.logo__mark{
  width:38px;
  height:38px;
  border-radius:12px;
  box-shadow:0 0 22px rgba(120,170,255,.7);
}

.logo__text{
  font-size:20px;
  font-weight:700;
  letter-spacing:0.3px;
}

.nav{
  display:flex;
  gap:26px;
}

.nav__link{
  position:relative;
  padding:10px 12px;
  font-size:15px;
  color:var(--muted);
  text-decoration:none;
  transition:0.18s;
}

.nav__link:hover{
  color:#fff;
}

.nav__link.active{
  color:#fff;
}

.nav__link.active::after,
.nav__link:hover::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  width:14px;
  height:4px;
  border-radius:999px;
  background:linear-gradient(90deg, var(--accent1), var(--accent2));
  box-shadow:0 0 10px rgba(59,123,255,.7);
}

.btn--ghost{
  padding:12px 18px;
  font-weight:600;
  font-size:15px;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
}
.btn--ghost:hover{
  background:rgba(255,255,255,0.1);
}
.nav {
  display: flex;
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }
}
.work-card__btn {
  display: inline-flex;
  margin-top: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 8px 28px rgba(59,123,255,0.35);
  transition: .18s ease;
}

.work-card__btn:hover {
  transform: translateY(-2px);
  filter: saturate(1.15);
}
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(25, 25, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 16px 22px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: 0.35s ease;
  z-index: 9999;
}

.toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast__icon {
  background: #28c76f;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 10px rgba(40, 199, 111, 0.6);
}

.toast__text {
  max-width: 260px;
  line-height: 1.4;
}
.st-chat {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1200;
  font-family: inherit;
}

.st-chat-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: radial-gradient(circle at 0 0, rgba(0, 255, 200, 0.2), rgba(16, 24, 40, 0.98));
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.st-chat-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle, #4ade80, #22c55e);
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.9);
}

.st-chat-toggle__text {
  white-space: nowrap;
}

.st-chat-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.85);
}

.st-chat-toggle:active {
  transform: translateY(1px) scale(0.98);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.st-chat-window {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 320px;
  max-height: 520px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.28);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.9);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(18px);
}

.st-chat-window.st-chat-window--open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.st-chat-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.26);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.st-chat-header__title {
  font-size: 14px;
  font-weight: 600;
  color: #f9fafb;
}

.st-chat-header__subtitle {
  font-size: 11px;
  color: rgba(148, 163, 184, 0.95);
  margin-top: 2px;
}

.st-chat-header__close {
  margin-left: auto;
  background: transparent;
  border: none;
  color: rgba(148, 163, 184, 0.9);
  font-size: 16px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  border-radius: 999px;
  transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.st-chat-header__close:hover {
  background: rgba(15, 23, 42, 0.8);
  color: #e5e7eb;
  transform: scale(1.05);
}

.st-chat-body {
  padding: 10px 14px 8px;
  overflow-y: auto;
  max-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.st-chat-msg {
  max-width: 90%;
  display: flex;
}

.st-chat-msg--bot {
  justify-content: flex-start;
}

.st-chat-msg--user {
  justify-content: flex-end;
}

.st-chat-msg__text {
  padding: 8px 11px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.45;
}

.st-chat-msg--bot .st-chat-msg__text {
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.16), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.st-chat-msg--user .st-chat-msg__text {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  border: 1px solid rgba(191, 219, 254, 0.7);
  color: #f9fafb;
}

.st-chat-quick {
  padding: 4px 10px 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.st-chat-quick button {
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.85);
  color: #e5e7eb;
  border-radius: 999px;
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
}

.st-chat-quick button:hover {
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.3), rgba(15, 23, 42, 0.95));
  border-color: rgba(129, 140, 248, 0.7);
  transform: translateY(-1px);
}

.st-chat-input {
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(148, 163, 184, 0.26);
  display: flex;
  gap: 6px;
}

.st-chat-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  font-size: 12px;
  padding: 7px 10px;
  outline: none;
}

.st-chat-input input::placeholder {
  color: rgba(148, 163, 184, 0.7);
}

.st-chat-input button {
  border-radius: 999px;
  border: none;
  padding: 7px 12px;
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #022c22;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
}

.st-chat-input button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(16, 185, 129, 0.55);
}

.st-chat-input button:active {
  transform: translateY(1px) scale(0.97);
  box-shadow: 0 5px 14px rgba(16, 185, 129, 0.45);
}

@media (max-width: 640px) {
  .st-chat-window {
    right: 8px;
    bottom: 70px;
    width: calc(100vw - 16px);
    max-height: 70vh;
  }

  .st-chat-toggle {
    right: 8px;
    bottom: 12px;
  }
}
@media (max-width: 768px) {
  .st-chat-window {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    top: 0;
    width: 100%;
    max-width: none;
    border-radius: 0;
    height: 100%;
    background: rgba(20, 20, 25, 0.97);
    backdrop-filter: blur(12px);
    padding-bottom: 90px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: all .25s ease;
  }

  .st-chat-window.st-chat-window--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .st-chat-header {
    padding: 20px 18px;
    background: rgba(40, 40, 50, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .st-chat-body {
    height: calc(100% - 185px);
    padding: 16px;
  }

  .st-chat-input {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: rgba(30, 30, 40, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .st-chat-header__close {
    font-size: 30px;
    padding: 4px 10px;
  }
}
@media (max-width: 768px) {
  .st-chat-input input,
  .st-chat-input button {
    font-size: 16px;
  }
}
