:root{
  --bg:#05050b;
  --panel:#0d1020;
  --panel2:#0a0d18;
  --text:#e9e9f2;
  --muted:#b6b7d2;
  --neon1:#ff4fd8;
  --neon2:#4fffd5;
  --neon3:#7c6bff;
  --border:rgba(124,107,255,.35);
  --shadow:0 0 22px rgba(79,255,213,.12), 0 0 40px rgba(255,79,216,.10);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 800px at 20% 10%, rgba(124,107,255,.14), transparent 60%),
    radial-gradient(900px 700px at 80% 20%, rgba(255,79,216,.12), transparent 55%),
    radial-gradient(900px 700px at 60% 90%, rgba(79,255,213,.10), transparent 55%),
    linear-gradient(180deg, #03030a 0%, #080818 45%, #05050b 100%);
}

a{color:var(--neon2);text-decoration:none}
a:hover{filter:brightness(1.1)}
.container{max-width:1100px;margin:0 auto;padding:18px}
header{
  position:sticky;top:0;z-index:50;
  background:linear-gradient(180deg, rgba(5,5,11,.92), rgba(5,5,11,.62));
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(124,107,255,.22);
}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:14px}
.brand{display:flex;align-items:center;gap:12px;min-width:140px}
.brand img{width:60px;height:60px;border-radius:14px;box-shadow:var(--shadow)}
.brand span{font-weight:750;letter-spacing:.6px}

.nav-wrap{position:relative}
.burger{
  display:flex;align-items:center;justify-content:center;
  width:46px;height:46px;
  border:1px solid rgba(124,107,255,.35);
  background:linear-gradient(180deg, rgba(13,16,32,.9), rgba(10,13,24,.85));
  border-radius:14px;
  box-shadow:var(--shadow);
  cursor:pointer;
}
.burger-lines{width:20px;height:14px;position:relative}
.burger-lines span{
  position:absolute;left:0;right:0;height:2px;border-radius:2px;
  background:linear-gradient(90deg, var(--neon2), var(--neon1));
  transition:transform .2s ease, top .2s ease, opacity .2s ease;
}
.burger-lines span:nth-child(1){top:0}
.burger-lines span:nth-child(2){top:6px}
.burger-lines span:nth-child(3){top:12px}
.nav-open .burger-lines span:nth-child(1){top:6px;transform:rotate(45deg)}
.nav-open .burger-lines span:nth-child(2){opacity:0}
.nav-open .burger-lines span:nth-child(3){top:6px;transform:rotate(-45deg)}

.menu{
  position:absolute;right:0;top:56px;
  width:min(440px, 92vw);
  max-height:70vh;
  overflow:auto;
  padding:12px;
  border:1px solid rgba(124,107,255,.35);
  background:linear-gradient(180deg, rgba(13,16,32,.96), rgba(10,13,24,.92));
  border-radius:18px;
  box-shadow:var(--shadow);
  display:none;
}
.nav-open .menu{display:block}
.menu a{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:var(--text);
  border:1px solid transparent;
}
.menu a:hover{
  border-color:rgba(79,255,213,.35);
  background:rgba(79,255,213,.06);
}
.menu .menu-title{color:var(--muted);font-size:12px;padding:6px 10px 10px 10px}

.main{padding:18px 0 44px}
.block{
  background:linear-gradient(180deg, rgba(13,16,32,.88), rgba(10,13,24,.82));
  border:1px solid rgba(124,107,255,.24);
  border-radius:22px;
  padding:18px 18px;
  box-shadow:var(--shadow);
  margin:14px 0;
}
.block h1{
  margin:0 0 10px 0;
  font-size:28px;
  line-height:1.15;
  letter-spacing:.4px;
}
.block p{margin:0;color:var(--muted);line-height:1.6}
.breadcrumbs{
  font-size:13px;color:var(--muted);
  display:flex;flex-wrap:wrap;gap:8px;align-items:center;
  margin:8px 0 0 0;
}
.breadcrumbs .sep{opacity:.65}

.hero-img img{
  width:100%;
  height:auto;
  border-radius:18px;
  border:1px solid rgba(79,255,213,.28);
  box-shadow:0 0 24px rgba(255,79,216,.08);
  display:block;
}

.offers-wrap{padding:0}
.offers-inner{padding:16px}
.offers-table{
  width:100%;
  border:2px solid rgba(79,255,213,.55);
  border-radius:16px;
  overflow:hidden;
  border-collapse:separate;
  border-spacing:0;
}
.offers-table tr{background:rgba(255,255,255,.02)}
.offers-table tr:nth-child(2n){background:rgba(255,255,255,.03)}
.offers-table td{
  padding:12px 12px;
  vertical-align:middle;
}
.offers-table .col-logo{width:190px}
.offers-table .col-offer{width:auto}
.offers-table .col-cta{width:180px;text-align:right}
.offer-logo{
  width:160px;height:50px;display:inline-block;
  border-radius:12px;border:1px solid rgba(124,107,255,.35);
  box-shadow:0 0 18px rgba(124,107,255,.12);
  background:#0b0d18;
  object-fit:contain;
}
.cta{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 14px;
  min-width:130px;
  border-radius:14px;
  color:#061014;
  font-weight:750;
  background:linear-gradient(90deg, var(--neon2), #b6ff4f);
  border:0;
  box-shadow:0 0 18px rgba(79,255,213,.22);
}
.cta:hover{filter:brightness(1.03)}
.offers-note{margin-top:10px;color:var(--muted);font-size:13px;line-height:1.55}

.content h2{
  margin:0 0 10px 0;
  font-size:20px;
  letter-spacing:.2px;
}
.content p{margin:0 0 14px 0;color:var(--muted);line-height:1.7}
.content p:last-child{margin-bottom:0}

.calc-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field{
  display:flex;flex-direction:column;gap:8px;
}
label{color:var(--muted);font-size:13px}
input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(124,107,255,.35);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}
input:focus{border-color:rgba(79,255,213,.55)}
.calc-result{
  padding:14px;
  border-radius:18px;
  border:1px solid rgba(79,255,213,.35);
  background:rgba(79,255,213,.06);
  color:var(--text);
  line-height:1.6;
}

.faq details{
  border:1px solid rgba(124,107,255,.24);
  border-radius:16px;
  padding:12px 14px;
  background:rgba(255,255,255,.02);
  margin:10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:700;
  color:var(--text);
}
.faq p{margin:10px 0 0 0;color:var(--muted);line-height:1.65}

footer{
  border-top:1px solid rgba(124,107,255,.22);
  background:linear-gradient(180deg, rgba(5,5,11,.55), rgba(5,5,11,.92));
}
.footer-inner{
  display:flex;flex-direction:column;gap:10px;
  padding:18px 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}
.footer-links a{color:var(--neon2)}
.footer-links span{opacity:.7;margin:0 6px}

.sr-only{
  position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;
}

.contact-form{
  display:grid;
  gap:12px;
}
textarea{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(124,107,255,.35);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
  min-height:160px;
  resize:vertical;
}
textarea:focus{border-color:rgba(79,255,213,.55)}

@media (max-width: 1024px){
  .offers-table td{ text-align:center }
  .offers-table td.col-logo{ text-align:center }
  .offers-table td.col-offer{ text-align:center }
  .offers-table td.col-cta{ text-align:center }
  .offers-table td.col-logo a{ display:block; width:100%; text-align:center }
  .offers-table td.col-cta .cta{ margin:0 auto; display:inline-flex }
}
@media (max-width: 720px){
  .calc-grid{grid-template-columns:1fr}
  .offers-table, .offers-table tbody, .offers-table tr, .offers-table td{display:block;width:100%}
  .offers-table tr{border-bottom:1px solid rgba(124,107,255,.18)}
  .offers-table tr:last-child{border-bottom:0}
  /*
    На мобильных не используем flex в td: текстовые узлы в flex могут визуально "липнуть" к левому краю.
    Центрируем через text-align + авто-маргины.
  */
  .offers-table td{
    padding:10px 12px;
    text-align:center;
  }
  .offers-table td.col-logo,
  .offers-table td.col-offer,
  .offers-table td.col-cta{
    text-align:center !important;
  }
  /*
    В базовых стилях у .col-logo задана фиксированная ширина (190px).
    Она выигрывает по специфичности и оставляет логотип «притянутым» влево.
    На мобилке явно переопределяем ширину для td.col-logo.
  */
  .offers-table td.col-logo{width:100% !important;}
  .offers-table td.col-logo a{
    display:block;
    width:100%;
    text-align:center;
  }
  .offers-table td.col-cta{
    width:100%;
  }
  .offers-table td.col-cta .cta{
    display:inline-flex;
    margin:0 auto;
  }
  .offers-table .offer-logo{
    display:block;
    margin:0 auto;
  }
  .offers-table .col-logo{padding-top:14px}
  .offers-table .col-cta{padding-bottom:14px}
}