:root{
  --bg:#0b0f17;
  --surface:#0f1624;
  --surface2:#111b2c;
  --card:#0f1624cc;
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --line:rgba(233,238,252,.12);
  --brand:#ff2b2b;
  --brand2:#ff6a2b;
  --shadow: 0 20px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1160px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(255,43,43,.18), transparent 55%),
    radial-gradient(900px 520px at 80% 20%, rgba(255,106,43,.12), transparent 50%),
    linear-gradient(180deg, #070a11 0%, #0b0f17 65%, #080b12 100%);
  line-height:1.5;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--container);margin:0 auto;padding:0 20px}

.muted{color:var(--muted)}
.small{font-size:13px}
.dot{opacity:.6;padding:0 10px}

.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(8,11,18,.6);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.chip{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 10px;border:1px solid var(--line);
  border-radius:999px;background:rgba(255,255,255,.04);
  font-size:12px;letter-spacing:.2px;
}
.topbar__right{display:flex;align-items:center;flex-wrap:wrap;gap:10px}
.topbar__link{font-size:13px;opacity:.9}
.topbar__link:hover{opacity:1}


.header{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(11,15,23,.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand{
  display:flex;
  flex-direction:column;
  line-height:1;
}
.brand__mark{
  font-weight:900;
  letter-spacing:.5px;
  font-size: 30px;
}
.brand__sub{
  font-size:12px;color:var(--muted);letter-spacing:.3px;
}

.nav{display:flex;gap:18px;align-items:center}
.nav__link{
  font-size:14px;color:rgba(233,238,252,.9);
  padding:10px 10px;border-radius:999px;
}
.nav__link:hover{background:rgba(255,255,255,.05)}
.nav__cta{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.nav__cta:hover{border-color:rgba(255,255,255,.2)}

.burger{
  display:none;
  width:42px;height:42px;border-radius:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  align-items:center;justify-content:center;
  gap:6px;flex-direction:column;
  cursor:pointer;
}
.burger span{
  display:block;width:18px;height:2px;background:rgba(233,238,252,.9);
  border-radius:999px;
}

.overlay{
  position:fixed;inset:0;
  background:rgba(0,0,0,.55);
  z-index:25;
}

.hero{padding:46px 0 20px}
.hero__grid{
  display:grid;grid-template-columns: 1.25fr .95fr;
  gap:26px;align-items:start;
}
.hero__content{
  padding:24px;
  border-radius:var(--radius2);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 12px;
  font-size:44px;line-height:1.1;
  letter-spacing:-.8px;
}
.accent{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  -webkit-background-clip:text;background-clip:text;
  color:transparent;
}
.lead{margin:0 0 18px;font-size:16px;color:var(--muted)}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin:14px 0 18px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  border:1px solid transparent;
  font-weight:700;cursor:pointer;
}
.btn--primary{
  background: linear-gradient(90deg, var(--brand), var(--brand2));
  color:#0b0f17;
}
.btn--primary:hover{filter:brightness(1.02)}
.btn--ghost{
  border-color:rgba(233,238,252,.18);
  background:rgba(255,255,255,.04);
}
.btn--ghost:hover{background:rgba(255,255,255,.06)}
.btn--full{width:100%}

.hero__badges{
  display:grid;grid-template-columns:repeat(3, 1fr);
  gap:10px;margin-top:12px;
}
.badge{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;padding:12px;
}
.badge__title{font-weight:800;font-size:13px;margin-bottom:4px}
.badge__text{font-size:12px;color:var(--muted)}

.hero__card{
  display: none;
  border-radius:var(--radius2);
  background: rgba(15,22,36,.72);
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardTop{
  padding:18px 18px 12px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent);
}
.miniTitle{font-weight:900;letter-spacing:.2px}
.miniText{font-size:13px}

.form{padding:16px 18px 18px}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:12px}
.field span{font-size:13px;color:rgba(233,238,252,.9)}
input,select,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(233,238,252,.14);
  background:rgba(8,11,18,.55);
  color:var(--text);
  outline:none;
}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,106,43,.55);
  box-shadow: 0 0 0 4px rgba(255,106,43,.12);
}
textarea{resize:vertical}
.two{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.form__hint{margin:10px 0 0;font-size:12px}
.form__msg{margin:10px 0 0;font-size:13px}

.section{padding:54px 0}
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section__head{margin-bottom:18px}
.section__head h2{margin:0 0 8px;font-size:30px;letter-spacing:-.4px}
.section__head p{margin:0;max-width:820px}

.cards{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}
.card{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  overflow:hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.24);
}
.card__img{
  height:170px;
  background-size:cover;
  background-position:center;
  filter:saturate(1.08) contrast(1.02);
}
/* Placeholder backgrounds (replace with real images if you want) */
.card__img--georgia{
  background-image:url(/img/georgia.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__img--azerbaijan{
  background-image:url(/img/azerbaijna.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__img--turkey{
  background-image: url(/img/turkish.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.card__body{padding:16px 16px 18px}
.card__body h3{margin:0 0 8px;font-size:18px}
.card__body p{margin:0 0 12px;color:var(--muted);font-size:14px}
.list{margin:0 0 14px;padding-left:18px;color:rgba(233,238,252,.86);font-size:13px}
.list li{margin:6px 0}
.link{display:inline-flex;gap:8px;font-weight:800}
.link:hover{opacity:.9}

.noteBox{
  margin-top:16px;
  border:1px dashed rgba(233,238,252,.22);
  border-radius:var(--radius2);
  padding:14px 16px;
  background:rgba(255,255,255,.02);
}
.noteBox__title{font-weight:900;margin-bottom:6px}

.grid3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.service{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
}
.service h3{margin:0 0 8px}
.service p{margin:0 0 12px}
.service__meta{display:flex;flex-wrap:wrap;gap:8px}
.pill{
  border:1px solid rgba(233,238,252,.16);
  background:rgba(255,255,255,.03);
  padding:6px 10px;border-radius:999px;
  font-size:12px;color:rgba(233,238,252,.88);
}

.split{
  display:grid;
  grid-template-columns: 1.2fr .9fr;
  gap:18px;
  align-items:start;
}
.quote{
  border-radius:var(--radius2);
  border:1px solid var(--line);
  padding:16px;
  background:rgba(255,255,255,.03);
  margin-top:14px;
}
.quote--light{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.quote__title{font-weight:900;margin-bottom:8px}
.quote p{margin:0;color:rgba(233,238,252,.86)}

.stats{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:10px;margin-top:14px;
}
.stat{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:20px;padding:14px;
  text-align:center;
}
.stat__num{font-size:26px;font-weight:1000}
.stat__label{font-size:12px}

.why{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.why__item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:14px;
}
.why__item h3{margin:0 0 8px;font-size:16px}
.why__item p{margin:0;font-size:13px}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
.contact__card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:var(--radius2);
  padding:16px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}
.contact__card--form{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
}
.contact__row{
  display:grid;
  grid-template-columns: 110px 1fr;
  gap:12px;
  padding:10px 0;
}
.label{color:rgba(233,238,252,.8);font-size:13px}
.value a:hover{opacity:.9}
.hr{border:0;border-top:1px solid var(--line);margin:12px 0}
.addr{margin:0;padding-left:18px;color:rgba(233,238,252,.86)}
.addr li{margin:8px 0}

.copyBtn{
  appearance:none;border:1px solid rgba(233,238,252,.16);
  background:rgba(8,11,18,.55);
  color:rgba(233,238,252,.92);
  padding:10px 12px;border-radius:14px;
  cursor:pointer;margin-right:8px;margin-bottom:8px;
  font-weight:700;
}
.copyBtn:hover{border-color:rgba(255,106,43,.45)}
.toast{
  margin-top:10px;
  min-height:18px;
  font-size:13px;
  color:rgba(233,238,252,.86);
}

/* ================= WhatsApp Floating Button ================= */

.wa-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 18px;

  display: grid;
  place-items: center;

  z-index: 2000;

  /* под твой дизайн: стекло + градиент */
  background: linear-gradient(135deg, rgba(255,43,43,.9), rgba(255,106,43,.85));
  border: 1px solid rgba(233,238,252,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);

  transform: translateZ(0);
  transition: transform .18s ease, filter .18s ease;
}

.wa-float:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.wa-float:active{
  transform: translateY(0);
}

.wa-float svg{
  width: 28px;
  height: 28px;
  fill: #0b0f17; /* чтобы читалось на ярком градиенте */
}

@media (max-width: 520px){
  .wa-float{
    right: 14px;
    bottom: 14px;
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }
}

.footer{
  border-top:1px solid var(--line);
  background: rgba(8,11,18,.65);
  backdrop-filter: blur(10px);
}
.footer__inner{
  display:grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap:14px;
  padding:22px 0;
  align-items:start;
}
.footer__links{display:flex;flex-direction:column;gap:10px}
.footer__links a{color:rgba(233,238,252,.86)}
.footer__links a:hover{opacity:.9}
.brand--footer{opacity:.95}

@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr}
  .hero h1{font-size:38px}
  .hero__badges{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .why{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr}
  .footer__inner{grid-template-columns:1fr}
}

@media (max-width: 820px){
  .topbar{
    display: none;
  }
  .burger{display:flex}
  .nav{
    position:fixed;right:16px;left:16px;top:78px;
    background:rgba(11,15,23,.92);
    border:1px solid var(--line);
    border-radius:22px;
    padding:12px;
    box-shadow: var(--shadow);
    display:none;
    flex-direction:column;
    gap:8px;
    z-index:40;
  }
  .nav.open{display:flex}
  .nav__link{width:100%;text-align:left}
}

@media (max-width: 520px){
  .hero h1{font-size:32px}
  .two{grid-template-columns:1fr}
  .contact__row{grid-template-columns: 1fr}
}