:root {
  --bg: #070b1c;
  --bg-soft: #0b1028;
  --card: rgba(15, 22, 52, 0.74);
  --card-strong: #101936;
  --text: #f7f8ff;
  --muted: #aab1ce;
  --line: rgba(255, 255, 255, 0.1);
  --primary: #5a7cff;
  --primary-2: #7e5cff;
  --cyan: #36d8ff;
  --success: #65e5a4;
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 10%, rgba(71, 78, 220, 0.16), transparent 31%),
    radial-gradient(circle at 85% 20%, rgba(50, 196, 255, 0.11), transparent 26%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

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

button {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.page-glow {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.page-glow--one {
  width: 340px;
  height: 340px;
  left: -170px;
  top: 35%;
  background: rgba(102, 65, 255, 0.2);
}

.page-glow--two {
  width: 320px;
  height: 320px;
  right: -170px;
  top: 70%;
  background: rgba(54, 216, 255, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(7, 11, 28, 0.74);
  backdrop-filter: blur(20px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(90, 124, 255, 0.35);
  font-size: 28px;
  line-height: 1;
}

.brand-name {
  font-size: 21px;
  letter-spacing: -0.04em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a,
.header-telegram,
.text-link,
.service-card button {
  transition: color 0.2s ease, opacity 0.2s ease;
}

.desktop-nav a:hover,
.text-link:hover,
.service-card button:hover {
  color: white;
}

.header-telegram {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #dbe2ff;
  font-size: 14px;
  font-weight: 700;
}

.header-telegram:hover {
  border-color: rgba(90, 124, 255, 0.6);
  background: rgba(90, 124, 255, 0.09);
}

.hero {
  padding: 88px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, 0.8fr);
  align-items: center;
  gap: 70px;
}

.eyebrow,
.section-kicker {
  color: #9fb3ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  padding: 8px 12px;
  border: 1px solid rgba(101, 229, 164, 0.16);
  border-radius: 999px;
  background: rgba(101, 229, 164, 0.06);
  color: #a7f3cb;
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 18px var(--success);
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.hero h1 span {
  display: block;
  background: linear-gradient(95deg, #94adff, #6de2ff 58%, #9b86ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 680px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(90, 124, 255, 0.3);
  color: white;
}

.button--primary:hover {
  box-shadow: 0 22px 50px rgba(90, 124, 255, 0.42);
}

.button--secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: #e8ebff;
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
}

.button--light {
  flex-shrink: 0;
  background: white;
  color: #11172f;
}

.button--wide {
  width: 100%;
  margin-top: 22px;
}

.telegram-icon {
  font-size: 18px;
  transform: rotate(-12deg);
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 45px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.trust-item span {
  color: #7f88aa;
  font-size: 12px;
}

.hero-card-wrap {
  position: relative;
}

.hero-card {
  position: relative;
  z-index: 2;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(21, 31, 73, 0.94), rgba(10, 16, 39, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 70% -10%, rgba(77, 207, 255, 0.2), transparent 35%);
}

.hero-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.card-label {
  display: block;
  margin-bottom: 6px;
  color: #8f9abc;
  font-size: 12px;
  font-weight: 700;
}

.hero-card h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.035em;
}

.card-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(101, 229, 164, 0.08);
  color: #a5efc8;
  font-size: 11px;
  font-weight: 800;
}

.card-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 12px var(--success);
}

.service-search {
  margin-top: 28px;
}

.service-search label {
  display: block;
  margin-bottom: 10px;
  color: #bcc4df;
  font-size: 12px;
  font-weight: 700;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  color: #7580a7;
  font-size: 21px;
}

.input-wrap input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px 0 49px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  outline: none;
  border-radius: 15px;
  background: rgba(5, 9, 24, 0.55);
  color: white;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.input-wrap input::placeholder {
  color: #697394;
}

.input-wrap input:focus {
  border-color: rgba(90, 124, 255, 0.75);
  box-shadow: 0 0 0 4px rgba(90, 124, 255, 0.11);
}

.quick-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.quick-services button {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: #abb5d7;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.quick-services button:hover,
.quick-services button.active {
  border-color: rgba(90, 124, 255, 0.65);
  background: rgba(90, 124, 255, 0.13);
  color: white;
}

.card-note {
  margin: 16px 0 0;
  color: #7781a1;
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
}

.floating-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(13, 20, 48, 0.88);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 800;
}

.floating-badge--left {
  left: -42px;
  bottom: 42px;
}

.floating-badge--right {
  right: -34px;
  top: 52px;
}

.logos-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.logos-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  overflow: hidden;
  color: #5d6684;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.section {
  padding: 110px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 42px;
}

.section-heading h2,
.faq-intro h2,
.wide-cta h2 {
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.05em;
}

.section-heading p,
.faq-intro p,
.wide-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.section-heading--center {
  display: block;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center p {
  margin-top: 15px;
}

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

.service-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(17, 24, 57, 0.72), rgba(10, 15, 35, 0.55));
  transition: transform 0.25s ease, border 0.25s ease, background 0.25s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90, 124, 255, 0.38);
  background: linear-gradient(145deg, rgba(23, 34, 80, 0.86), rgba(12, 18, 42, 0.7));
}

.service-card--accent {
  background:
    radial-gradient(circle at 90% 0%, rgba(81, 213, 255, 0.15), transparent 36%),
    linear-gradient(145deg, rgba(45, 42, 110, 0.65), rgba(13, 20, 51, 0.75));
}

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 27px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.055);
  font-size: 23px;
}

.service-card h3 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.service-card p {
  margin: 12px 0 22px;
  color: #8f99b9;
  font-size: 14px;
  line-height: 1.7;
}

.service-card button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding: 0;
  border: 0;
  background: none;
  color: #bcc8ff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.process-section {
  position: relative;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.018), transparent);
}

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

.step-card {
  position: relative;
  min-height: 275px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(13, 19, 45, 0.64);
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 17px;
  right: 21px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 54px;
  font-weight: 800;
}

.step-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(90, 124, 255, 0.2), rgba(126, 92, 255, 0.1));
  font-size: 21px;
}

.step-card h3 {
  margin: 0;
  font-size: 20px;
}

.step-card p {
  margin: 12px 0 0;
  color: #8e97b6;
  font-size: 14px;
  line-height: 1.7;
}

.wide-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  padding: 55px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(50, 218, 255, 0.18), transparent 32%),
    linear-gradient(135deg, #283e9e, #5b39a8);
  box-shadow: 0 30px 80px rgba(27, 34, 113, 0.34);
  overflow: hidden;
}

.wide-cta-copy {
  max-width: 720px;
}

.wide-cta .section-kicker {
  color: #d6dcff;
}

.wide-cta h2 {
  font-size: clamp(30px, 3.8vw, 48px);
}

.wide-cta p {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 85px;
}

.faq-intro {
  position: sticky;
  top: 115px;
  align-self: start;
}

.faq-intro p {
  margin-top: 16px;
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  color: #9fb2ff;
  font-size: 14px;
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 46px 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  color: #8fa4f9;
  font-size: 25px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 760px;
  margin: -5px 0 25px;
  color: #8f99b9;
  line-height: 1.75;
}

.site-footer {
  padding: 38px 0 105px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner p {
  color: #717b9d;
  font-size: 13px;
  text-align: center;
}

.footer-inner > a:last-child {
  color: #aebeff;
  font-size: 14px;
  font-weight: 800;
}

.mobile-telegram-bar {
  display: none;
}

@media (max-width: 1050px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-card-wrap {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .floating-badge--left {
    left: -25px;
  }

  .floating-badge--right {
    right: -20px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 66px;
  }

  .desktop-nav,
  .header-telegram {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 24px;
  }

  .hero {
    padding: 48px 0 50px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 60px);
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-card {
    padding: 22px;
    border-radius: 24px;
  }

  .hero-card-top {
    display: block;
  }

  .card-status {
    margin-top: 12px;
  }

  .floating-badge {
    display: none;
  }

  .logos-inner {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .logos-inner::-webkit-scrollbar {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 30px;
  }

  .section-heading p {
    margin-top: 17px;
  }

  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
  }

  .wide-cta {
    display: block;
    padding: 34px 25px;
    border-radius: 25px;
  }

  .wide-cta .button {
    width: 100%;
    margin-top: 28px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .faq-intro {
    position: static;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer {
    padding-bottom: 110px;
  }

  .mobile-telegram-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: block;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(7, 11, 28, 0.88);
    backdrop-filter: blur(20px);
  }

  .mobile-telegram-bar a {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 13px 30px rgba(90, 124, 255, 0.32);
    font-size: 14px;
    font-weight: 800;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 39px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-card h2 {
    font-size: 23px;
  }

  .quick-services button {
    flex-grow: 1;
  }

  .section-heading h2,
  .faq-intro h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* SEO pages and shared utility styles */
.logos-inner a { color: inherit; text-decoration: none; }
.logos-inner a:hover { color: #fff; }
.card-link { display:inline-flex; align-items:center; gap:.5rem; margin-top:auto; color:#fff; text-decoration:none; font-weight:700; }
.service-card .card-link:hover { opacity:.8; }
.footer-links { display:flex; gap:18px; flex-wrap:wrap; }
.footer-links a { color:inherit; }
.service-page { min-height:70vh; }
.service-hero { padding-top:140px; }
.service-hero-grid { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr); gap:56px; align-items:center; }
.breadcrumbs { display:flex; gap:10px; margin-bottom:24px; color:rgba(255,255,255,.62); font-size:.92rem; }
.breadcrumbs a { color:inherit; }
.service-summary-card { position:relative; }
.service-page-icon { font-size:3.25rem; margin-bottom:18px; }
.clean-list { margin:22px 0 28px; padding:0; list-style:none; display:grid; gap:13px; }
.clean-list li { position:relative; padding-left:28px; color:rgba(255,255,255,.76); }
.clean-list li::before { content:'✓'; position:absolute; left:0; color:#8f7cff; font-weight:800; }
.compact-grid { grid-template-columns:repeat(3,1fr); }
.legal-page { padding:150px 0 90px; min-height:80vh; }
.narrow { max-width:820px; }
.legal-page h1 { font-size:clamp(2.2rem,5vw,4rem); margin-bottom:30px; }
.legal-page h2 { margin-top:36px; margin-bottom:12px; }
.legal-page p { color:rgba(255,255,255,.74); line-height:1.8; }
.error-page { min-height:100vh; display:grid; place-items:center; padding:24px; }
.error-page .hero-card { max-width:620px; text-align:center; }
.error-page h1 { font-size:clamp(2.2rem,6vw,4.5rem); margin:16px 0; }
.error-page p { color:rgba(255,255,255,.7); margin-bottom:28px; }
@media (max-width: 900px) {
  .service-hero-grid { grid-template-columns:1fr; }
  .service-hero { padding-top:110px; }
  .compact-grid { grid-template-columns:1fr; }
}
