:root{
  --bg: #0b1220;
  --bg-soft: #10192b;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.56);
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.18);
  --accent: #0aa7a7;
  --accent2: #ffd24a;
  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --shadow-soft: 0 10px 30px rgba(0,0,0,.18);
  --radius: 18px;
  --radius-sm: 14px;
  --radius-xs: 12px;
  --container: 1140px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

html,
body{
  min-height:100%;
}

body{
  margin:0;
  font-family:"Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 70% 10%, rgba(10,167,167,.22), transparent 55%),
    radial-gradient(900px 700px at 15% 40%, rgba(255,210,74,.14), transparent 55%),
    var(--bg);
  overflow-x:hidden;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

body.menu-open{
  overflow:hidden;
}

img{
  display:block;
  max-width:100%;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
select,
textarea{
  font:inherit;
}

button{
  padding:0;
}

[hidden]{
  display:none !important;
}

.container{
  width:min(var(--container), 92vw);
  margin:0 auto;
}

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(11,18,32,.78);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.topbar__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:10px 0;
}

.topbar__left{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}

.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(10,167,167,.14);
}

.topbar__right{
  display:flex;
  align-items:center;
  gap:14px;
}

.topbar__link{
  font-size:14px;
  color:var(--muted);
  padding:6px 10px;
  border-radius:999px;
  transition:.2s ease;
}

.topbar__link:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.topbar__phone{
  font-weight:800;
  color:#fff;
  white-space:nowrap;
}

/* Header */
.header{
  position:sticky;
  top:44px;
  z-index:35;
  background:rgba(11,18,32,.66);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo__mark{
  width:44px;
  height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(135deg, var(--accent), rgba(10,167,167,.35));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 30px rgba(10,167,167,.18);
  font-weight:900;
  letter-spacing:.5px;
  flex:0 0 auto;
}

.logo__mark img{
  width:28px;
  height:28px;
  object-fit:contain;
}

.logo__text strong{
  display:block;
  font-size:16px;
}

.logo__text small{
  display:block;
  color:var(--muted2);
  margin-top:1px;
}

.logo--small .logo__mark{
  width:38px;
  height:38px;
  border-radius:12px;
}

.nav{
  display:flex;
  align-items:center;
  gap:16px;
}

.nav a{
  color:var(--muted);
  font-weight:700;
  font-size:14px;
  padding:8px 10px;
  border-radius:999px;
  transition:.2s ease;
}

.nav a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.header__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

/* Buttons */
.btn{
  border:none;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:42px;
  padding:10px 14px;
  border-radius:999px;
  color:#fff;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:800;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, filter .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.11);
}

.btn--primary{
  background:linear-gradient(135deg, var(--accent), rgba(10,167,167,.55));
  border:1px solid rgba(255,255,255,.16);
}

.btn--primary:hover{
  filter:brightness(1.05);
}

.btn--ghost{
  background:rgba(255,255,255,.06);
}

.btn--dark{
  background:rgba(11,18,32,.9);
  border:1px solid rgba(255,255,255,.14);
}

.btn--lg{
  padding:12px 18px;
  font-size:15px;
}

.btn--sm{
  min-height:38px;
  padding:8px 12px;
  font-size:13px;
}

/* Focus states */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(10,167,167,.22);
}

/* Burger */
.burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
  transition:.2s ease;
  flex:0 0 auto;
}

.burger:hover{
  background:rgba(255,255,255,.1);
}

.burger span{
  display:block;
  width:18px;
  height:2px;
  margin:0 auto;
  background:rgba(255,255,255,.85);
  transition:.2s ease;
}

.burger span + span{
  margin-top:5px;
}

.burger[aria-expanded="true"] span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2){
  opacity:0;
}

.burger[aria-expanded="true"] span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.mobile-nav{
  display:none;
  border-top:1px solid var(--line);
  background:rgba(11,18,32,.9);
}

.mobile-nav__content{
  padding:14px 0 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.mobile-nav__content a{
  color:var(--muted);
  font-weight:800;
  padding:10px 12px;
  border-radius:14px;
  transition:.2s ease;
}

.mobile-nav__content a:hover{
  background:rgba(255,255,255,.06);
  color:var(--text);
}

.mobile-nav__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}

/* Hero */
.hero{
  padding:36px 0 24px;
}

.hero__grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:22px;
  align-items:start;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}

.badge__icon{
  filter:saturate(1.2);
}

.hero h1{
  margin:14px 0 10px;
  font-size:clamp(30px, 4vw, 54px);
  line-height:1.02;
  letter-spacing:-0.02em;
  max-width:12ch;
}

.accent{
  color:var(--accent2);
}

.hero__lead{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
  max-width:62ch;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:18px 0;
}

.hero__meta{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:10px;
}

.meta-card{
  padding:12px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}

.meta-card strong{
  display:block;
  font-size:14px;
}

.meta-card small{
  display:block;
  margin-top:4px;
  color:var(--muted2);
  font-weight:700;
  line-height:1.45;
}

.hero__features{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

/* Panel / form */
.panel{
  position:sticky;
  top:120px;
  padding:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:calc(var(--radius) + 4px);
  box-shadow:var(--shadow);
}

.panel__head h2{
  margin:2px 0 4px;
  font-size:18px;
}

.panel__head p{
  margin:0 0 10px;
  color:var(--muted);
  font-weight:700;
  line-height:1.5;
}

.form{
  display:flex;
  flex-direction:column;
  gap:10px;
}

label span{
  display:block;
  margin:0 0 6px;
  font-size:13px;
  color:var(--muted2);
  font-weight:800;
}

input,
select,
textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(11,18,32,.55);
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

select{
  appearance:none;
}

textarea{
  resize:vertical;
  min-height:112px;
}

input::placeholder,
textarea::placeholder{
  color:rgba(255,255,255,.45);
}

input:focus,
select:focus,
textarea:focus{
  border-color:rgba(10,167,167,.75);
  box-shadow:0 0 0 4px rgba(10,167,167,.18);
}

.form__note{
  margin:2px 0 0;
  font-size:12px;
  color:var(--muted2);
  line-height:1.45;
}

.panel__footer{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:36px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  transition:.2s ease;
}

.chip:hover{
  color:var(--text);
  background:rgba(255,255,255,.09);
}

.messenger-title{
  margin-top:6px;
  font-size:13px;
  color:rgba(255,255,255,.55);
  font-weight:900;
}

.messenger-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:8px;
}

.msgbtn{
  cursor:pointer;
  padding:12px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.92);
  font-weight:900;
  text-align:left;
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}

.msgbtn:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
}

.msgbtn__sub{
  display:block;
  margin-top:4px;
  font-size:12px;
  color:rgba(255,255,255,.60);
  font-weight:800;
  line-height:1.35;
}

.msgbtn--wa{
  border-color:rgba(37,211,102,.25);
}

.msgbtn--tg{
  border-color:rgba(45,136,255,.25);
}

.msgbtn--max{
  border-color:rgba(170,120,255,.25);
}

/* Sections */
.section{
  padding:52px 0;
}

.section--alt{
  background:rgba(255,255,255,.03);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__title{
  margin-bottom:18px;
}

.section__title h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-.02em;
}

.section__title p{
  margin:0;
  max-width:72ch;
  color:var(--muted);
  line-height:1.7;
}

/* Cards */
.cards{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
}

.card{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow-soft);
}

.card__icon{
  margin-bottom:10px;
  font-size:22px;
}

.card h3{
  margin:0 0 8px;
  font-size:16px;
  line-height:1.4;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-weight:700;
}

/* SEO text */
#seo-text .info-card p + p{
  margin-top:14px;
}

#seo-text .info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  font-weight:700;
}

#seo-text strong{
  color:#fff;
}

/* Accepted */
#accepted .hero__features{
  margin-top:0;
}

/* Prices */
.price-box{
  overflow:hidden;
  border-radius:calc(var(--radius) + 6px);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
}

.price-box__tabs{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  padding:12px;
  border-bottom:1px solid rgba(255,255,255,.10);
}

.tab{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-weight:900;
  cursor:pointer;
  transition:.2s ease;
}

.tab:hover{
  background:rgba(255,255,255,.09);
  color:var(--text);
}

.tab.is-active{
  background:linear-gradient(135deg, rgba(10,167,167,.95), rgba(10,167,167,.45));
  color:#fff;
}

.table-wrap{
  padding:0 12px 12px;
}

.price-table{
  width:100%;
  border-collapse:collapse;
}

.price-table:not(.is-active){
  display:none;
}

.price-table th,
.price-table td{
  padding:12px 10px;
  border-bottom:1px solid rgba(255,255,255,.10);
  text-align:left;
  vertical-align:top;
}

.price-table th{
  color:var(--muted2);
  font-size:13px;
  font-weight:900;
}

.price-table td{
  color:var(--text);
  font-weight:800;
}

.price-table td strong{
  font-size:15px;
}

.subnote{
  margin:12px 0 0;
  color:var(--muted2);
  font-size:13px;
  line-height:1.55;
}

.price-box__cta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:12px;
  border-top:1px solid rgba(255,255,255,.10);
  background:rgba(11,18,32,.35);
}

.hint{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.hint span{
  color:var(--muted);
  font-weight:700;
}

.hint strong{
  line-height:1.45;
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.step{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}

.step__num{
  width:36px;
  height:36px;
  margin-bottom:10px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:rgba(255,210,74,.18);
  border:1px solid rgba(255,210,74,.25);
  color:#ffe89c;
  font-weight:900;
}

.step h3{
  margin:0 0 6px;
  font-size:16px;
}

.step p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
  font-weight:700;
}

/* Contacts */
.contacts{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  align-items:stretch;
}

.contacts__info{
  display:grid;
  gap:12px;
}

.info-card{
  padding:16px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow-soft);
}

.info-card--accent{
  background:
    radial-gradient(800px 300px at 20% 10%, rgba(255,210,74,.18), transparent 55%),
    rgba(255,255,255,.05);
}

.info-card h3{
  margin:0 0 8px;
}

.info-card p{
  line-height:1.7;
  color:var(--muted);
  font-weight:700;
}

.contacts__phones a{
  font-weight:900;
}

.contacts__buttons{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}

.contacts__messengers{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}

.msg{
  flex:1 1 220px;
  min-width:220px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  font-weight:900;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  transition:.2s ease;
}

.msg:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.09);
}

.msg__sub{
  display:block;
  margin-left:10px;
  white-space:nowrap;
  font-size:13px;
  font-weight:800;
  color:rgba(255,255,255,.65);
}

.msg--wa{
  border-color:rgba(37,211,102,.25);
}

.msg--tg{
  border-color:rgba(45,136,255,.25);
}

.msg--max{
  border-color:rgba(170,120,255,.25);
}

/* FAQ */
#faq .cards{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

#faq .card{
  min-height:100%;
}

#faq .card h3{
  font-size:17px;
  color:#fff;
}

#faq .card p{
  color:var(--muted);
}

/* Advantages */
#advantages .card{
  min-height:100%;
}

/* Map */
.map-placeholder{
  min-height:320px;
  height:100%;
  border-radius:var(--radius);
  display:grid;
  place-items:center;
  background:
    linear-gradient(135deg, rgba(10,167,167,.22), rgba(255,210,74,.12)),
    rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.map-placeholder__inner{
  text-align:center;
  padding:22px;
  width:100%;
}

.map-placeholder__inner small{
  display:block;
  margin-top:6px;
  color:var(--muted);
  font-weight:800;
  line-height:1.45;
}

/* Footer */
.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background:rgba(11,18,32,.65);
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  gap:16px;
}

.footer__left p{
  margin:10px 0 0;
  color:var(--muted2);
  font-weight:800;
  line-height:1.55;
}

.footer__right{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  color:var(--muted);
  font-weight:900;
}

.footer__right a:hover{
  color:var(--text);
}

/* Cookie */
.cookie{
  position:fixed;
  right:14px;
  bottom:14px;
  z-index:70;
  width:min(420px, 92vw);
  padding:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:rgba(11,18,32,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.cookie p{
  margin:0;
  color:var(--muted);
  font-size:13px;
  font-weight:800;
  line-height:1.4;
}

/* Responsive */
@media (max-width: 1100px){
  .hero h1{
    max-width:none;
  }

  .cards{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  #faq .cards{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 980px){
  .nav{
    display:none;
  }

  .burger{
    display:grid;
    place-items:center;
  }

  .mobile-nav{
    display:none;
  }

  .mobile-nav.is-open{
    display:block;
  }

  .hero__grid{
    grid-template-columns:1fr;
  }

  .panel{
    position:relative;
    top:auto;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .contacts{
    grid-template-columns:1fr;
  }

  .hero__meta{
    grid-template-columns:1fr;
  }

  .header__actions .btn--ghost{
    display:none;
  }

  #faq .cards{
    grid-template-columns:1fr;
  }
}

@media (max-width: 760px){
  .topbar__inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .topbar__right{
    width:100%;
    justify-content:space-between;
  }

  .header{
    top:74px;
  }

  .header__inner{
    gap:12px;
  }

  .price-box__cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .msg{
    min-width:100%;
  }

  .cookie{
    left:14px;
    right:14px;
    width:auto;
    flex-direction:column;
    align-items:flex-start;
  }

  .section__title h2{
    font-size:25px;
  }
}

@media (max-width: 640px){
  .hero{
    padding:28px 0 20px;
  }

  .section{
    padding:42px 0;
  }

  .cards{
    grid-template-columns:1fr;
  }

  .messenger-grid{
    grid-template-columns:1fr;
  }

  .price-table th,
  .price-table td{
    padding:10px 8px;
    font-size:13px;
  }

  .price-table td strong{
    font-size:14px;
  }

  .footer__right{
    gap:10px 14px;
  }

  .info-card,
  .card,
  .step{
    padding:14px;
  }
}

@media (max-width: 520px){
  .topbar__link{
    display:none;
  }

  .topbar__phone{
    font-size:14px;
  }

  .btn--lg{
    width:100%;
  }

  .hero__cta{
    flex-direction:column;
  }

  .mobile-nav__cta{
    flex-direction:column;
  }

  .mobile-nav__cta .btn{
    width:100%;
  }

  .msg__sub{
    margin-left:0;
    white-space:normal;
  }

  .msg{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero__lead,
  .section__title p,
  .card p,
  .step p,
  .info-card p{
    line-height:1.65;
  }
}