:root {
  --bg: #0f141c;
  --bg-2: #131a24;
  --panel: #151c27;
  --panel-2: #1b2331;
  --ink: #e7ecf3;
  --muted: #a5afbf;
  --line: rgba(255, 255, 255, 0.12);
  --accent: #e2e8f0;
  --accent-2: #9aa3b2;
  --cta-a: #2ea8ff;
  --cta-b: #cf2bff;
  --cta-glow: rgba(142, 64, 255, 0.42);
  --radius: 18px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: radial-gradient(circle at top, #1a2230 0%, #0f141c 55%);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: calc(var(--radius) - 6px); }

a { color: inherit; text-decoration: none; }

a:hover { color: var(--accent); }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 20, 28, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.logo img { height: 44px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav a.active {
  border-bottom-color: var(--accent);
}

.nav-cta { display: flex; gap: 10px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: flex-end;
  padding: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 12, 18, 0.35) 0%, rgba(8, 12, 18, 0.7) 65%, rgba(8, 12, 18, 0.88) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 120px 0 56px;
  max-width: 760px;
}

.hero h1,
.page-hero h1,
.section h2 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: 1.18;
  margin-bottom: 18px;
}

.page-hero {
  padding: 80px 0 30px;
}

.page-hero h1 {
  font-size: clamp(44px, 5.6vw, 70px);
  line-height: 1.18;
  margin: 10px 0 16px;
}

.section h2 {
  font-size: clamp(35px, 4.3vw, 56px);
  line-height: 1.2;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.32em;
  font-size: 12px;
  color: var(--accent);
}

.lead {
  color: #e1ebfa;
  font-size: 20px;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 30px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, filter 0.2s ease;
}

.btn-premium {
  background: linear-gradient(135deg, var(--cta-a) 0%, var(--cta-b) 100%);
  color: #f6f9ff;
  border-color: transparent;
  box-shadow: 0 16px 34px var(--cta-glow), 0 0 0 2px rgba(46, 168, 255, 0.18), 0 0 22px rgba(46, 168, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(200, 210, 223, 0.55);
}

.btn-offer-accent {
  border-color: rgba(116, 196, 255, 0.85);
  box-shadow: 0 0 0 1px rgba(116, 196, 255, 0.28), 0 0 18px rgba(129, 102, 255, 0.22);
  background: rgba(13, 24, 42, 0.72);
  color: #f6f9ff;
  font-weight: 800;
}

.btn-offer-accent:hover {
  border-color: rgba(194, 92, 255, 0.95);
  box-shadow: 0 0 0 1px rgba(194, 92, 255, 0.35), 0 0 22px rgba(110, 186, 255, 0.38);
}

.btn-call {
  background: rgba(50, 22, 79, 0.68);
  color: #f4ecff;
  border-color: rgba(204, 127, 255, 0.65);
  box-shadow: 0 14px 28px rgba(140, 69, 255, 0.28);
}

.btn-messenger {
  background: rgba(255, 255, 255, 0.04);
  color: #d7e1f0;
  border-color: rgba(255, 255, 255, 0.2);
  padding: 12px 18px;
  font-size: 14px;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
  box-shadow: 0 20px 36px var(--cta-glow), 0 0 18px rgba(207, 43, 255, 0.33);
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.pill {
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.price-pill {
  display: inline-flex;
  margin: 12px 0;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: 0;
  padding: 0;
  background: #000;
}

.hero-media img {
  border-radius: calc(var(--radius) - 6px);
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-media video {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: auto;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: auto auto 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 20, 28, 0.55);
  color: #e7ecf3;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  cursor: pointer;
  z-index: 2;
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(10, 18, 32, 0.78);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.45), 0 0 22px rgba(255, 255, 255, 0.28);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.9), 0 0 16px rgba(255, 255, 255, 0.55);
}

.section {
  padding: 70px 0;
}

.section-dark {
  background: linear-gradient(180deg, #131a24 0%, #0f141c 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-seo {
  background: #101622;
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section p { color: var(--muted); }
.section-head p { color: #b7c7dc; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.card {
  display: block;
  background: var(--panel);
  border-radius: var(--radius);
  padding: 22px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px) scale(1.03);
  border-color: rgba(112, 173, 255, 0.78);
  box-shadow: 0 22px 34px rgba(62, 112, 208, 0.26), 0 0 0 1px rgba(46, 168, 255, 0.35);
}

.card-media img {
  margin-bottom: 18px;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card.card-media {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-actions {
  margin-top: auto;
}

.utp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.utp-item {
  background: rgba(16, 24, 39, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.utp-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.utp-item p {
  margin: 0;
  color: var(--muted);
}

.card h3,
.panel h3 {
  margin-top: 0;
  font-size: 18px;
}

.panel {
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}

.media-frame {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 10px;
  background: rgba(21, 28, 39, 0.8);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.steps {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 18px;
  background: rgba(21, 28, 39, 0.8);
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #0f141c;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  padding: 12px 14px;
  font-family: inherit;
}

.contact-form .full { grid-column: span 2; }

.form-note {
  grid-column: span 2;
  font-size: 12px;
  color: var(--muted);
}

.cta-main {
  grid-column: span 2;
  min-height: 52px;
  font-size: 16px;
  font-weight: 800;
}

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

.trust-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(20, 31, 50, 0.75);
  padding: 18px;
}

.trust-item b {
  display: block;
  font-size: 34px;
  line-height: 1;
  margin-bottom: 6px;
  color: #f0f6ff;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.logo-chip {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(20, 31, 50, 0.55);
  padding: 14px 16px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e5eefc;
}

.cta-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #121927 0%, #0f141c 100%);
}

.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#calc-result {
  font-size: 14px;
  color: #dce6f7;
}

.is-calc-hidden {
  opacity: 0.35;
  pointer-events: none;
  filter: grayscale(0.15);
}

.is-calc-hidden.is-ready {
  opacity: 1;
  pointer-events: auto;
  filter: none;
}

.contact-channels {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.form-alert {
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
}

.form-alert-success {
  background: rgba(29, 78, 53, 0.35);
  border-color: rgba(74, 222, 128, 0.5);
  color: #dcfce7;
}

.form-alert-error {
  background: rgba(127, 29, 29, 0.35);
  border-color: rgba(248, 113, 113, 0.55);
  color: #fee2e2;
}

.hp-input {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.meta-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.meta-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.meta-value { color: var(--ink); font-weight: 500; }

.site-footer {
  border-top: 1px solid var(--line);
  background: #0b1018;
  padding: 50px 0 20px;
  color: #e2e8f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid p { color: #cbd5e1; display: block; margin-bottom: 8px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 16px;
  font-size: 12px;
  color: #cbd5e1;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 40;
  display: flex;
  gap: 8px;
  align-items: center;
}

.floating-calc,
.floating-call,
.floating-msg {
  background: linear-gradient(135deg, #e3e7ef 0%, #aebbd4 100%);
  color: #0b0f14;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 24px rgba(3, 8, 18, 0.4);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.floating-msg {
  min-width: 44px;
  text-align: center;
  padding: 10px 12px;
}

@media (max-width: 980px) {
  .hero,
  .grid-2,
  .grid-3,
  .grid-5,
  .utp-grid,
  .trust-grid,
  .footer-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    right: 4vw;
    top: 76px;
    background: #0b0f14;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .nav.open { display: flex; }

  .nav-toggle { display: inline-flex; }

  .nav-cta { display: none; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .hero { min-height: calc(100vh - 70px); }
  .hero-content { padding: 92px 0 36px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .contact-channels .btn { width: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr 52px 52px;
  }
  .floating-calc,
  .floating-call,
  .floating-msg {
    text-align: center;
  }
}
