:root {
  --ink: #111827;
  --muted: #657084;
  --paper: #f5f3ef;
  --surface: #ffffff;
  --navy: #0b1324;
  --navy-soft: #14213a;
  --orange: #f47a1f;
  --red: #d92d26;
  --line: rgba(17, 24, 39, .11);
  --radius: 22px;
  --shadow: 0 26px 70px rgba(9, 18, 36, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.page-glow { position: fixed; width: 460px; height: 460px; border-radius: 50%; filter: blur(110px); opacity: .13; pointer-events: none; z-index: -1; }
.page-glow--one { top: 10%; right: -220px; background: var(--orange); }
.page-glow--two { top: 55%; left: -260px; background: #3856a8; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.header-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.brand { display: inline-flex; border-radius: 8px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,.2); }
.brand img { display: block; width: 230px; height: auto; }

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 23px;
  border: 0;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; }
.button--small { min-height: 44px; padding-inline: 18px; border-radius: 12px; }
.button--small svg { fill: currentColor; stroke: none; }
.button--ghost { border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); backdrop-filter: blur(12px); }
.button--ghost:hover { background: rgba(255,255,255,.12); }
.button--primary { color: #fff; background: linear-gradient(135deg, var(--orange), var(--red)); box-shadow: 0 18px 34px rgba(217,45,38,.24); }
.button--telegram { color: #fff; border-color: #229ed9; background: #229ed9; box-shadow: 0 16px 34px rgba(34,158,217,.25); }
.button--telegram:hover { background: #168bc4; box-shadow: 0 18px 38px rgba(34,158,217,.32); }
.button .icon-telegram { fill: currentColor; stroke: none; }
.button--hero-email { color: var(--navy); background: #fff; box-shadow: 0 18px 34px rgba(0,0,0,.16); }
.button .icon-email { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.button--secondary { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button--secondary:hover { background: rgba(255,255,255,.15); box-shadow: 0 14px 30px rgba(0,0,0,.16); }
.button--email { color: #fff; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.08); }
.button--email:hover { background: rgba(255,255,255,.14); }

.hero { min-height: 760px; display: flex; align-items: center; padding: 152px 0 86px; color: #fff; background:
  radial-gradient(circle at 68% 22%, rgba(244,122,31,.16), transparent 30%),
  linear-gradient(135deg, #090f1d 0%, #111d35 60%, #0b1324 100%);
  position: relative;
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .22; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 60px 60px; mask-image: linear-gradient(to right, transparent, #000 45%, transparent); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(48px, 7vw, 96px); }
.hero-copy, .hero-panel { min-width: 0; }
.eyebrow { margin: 0 0 20px; display: flex; align-items: center; gap: 10px; color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow span { width: 26px; height: 2px; background: currentColor; }
.hero .eyebrow { color: #ff9451; }
.hero h1 { max-width: 690px; margin: 0; font-size: clamp(58px, 7vw, 98px); line-height: .91; letter-spacing: -.065em; font-weight: 800; }
.hero h1 em { display: block; color: #ff8840; font-family: Georgia, serif; font-weight: 400; letter-spacing: -.04em; }
.hero-price { width: fit-content; margin-top: 27px; padding: 17px 24px 16px; display: flex; align-items: baseline; gap: 14px; border: 1px solid rgba(255,255,255,.22); border-radius: 18px; background: linear-gradient(135deg, #f47a1f, #d92d26); box-shadow: 0 20px 44px rgba(217,45,38,.34); }
.hero-price strong { color: #fff; font-size: clamp(44px, 5vw, 66px); line-height: .9; letter-spacing: -.055em; }
.hero-price span { color: rgba(255,255,255,.88); font-size: 16px; font-weight: 750; letter-spacing: .02em; }
.hero-lead { max-width: 610px; margin: 26px 0 0; color: #b8c2d3; font-size: clamp(18px, 2vw, 21px); line-height: 1.55; }
.hero-actions { margin-top: 36px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-line { margin-top: 46px; padding-top: 27px; display: flex; align-items: center; gap: 16px; border-top: 1px solid rgba(255,255,255,.11); }
.trust-line p { margin: 0; color: #8e9bb0; font-size: 12px; line-height: 1.6; }
.trust-line strong { color: #dbe2ec; font-weight: 650; }
.trust-avatars { display: flex; }
.trust-avatars i { width: 34px; height: 34px; display: grid; place-items: center; margin-left: -7px; border: 2px solid var(--navy); border-radius: 50%; color: #fff; background: linear-gradient(145deg, #40506b, #1b2942); font-size: 11px; font-style: normal; font-weight: 800; }
.trust-avatars i:first-child { margin-left: 0; }

.hero-panel { position: relative; min-height: 470px; padding: 28px; border: 1px solid rgba(255,255,255,.13); border-radius: 30px; background: linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.035)); backdrop-filter: blur(22px); box-shadow: 0 36px 80px rgba(0,0,0,.28); }
.hero-panel::after { content: ""; position: absolute; right: -40px; bottom: -50px; width: 180px; height: 180px; border-radius: 50%; background: var(--orange); filter: blur(80px); opacity: .23; pointer-events: none; }
.panel-topline { display: flex; align-items: center; gap: 10px; color: #c5cedd; font-size: 12px; letter-spacing: .06em; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #55d68b; box-shadow: 0 0 0 6px rgba(85,214,139,.1); }
.panel-tag { margin-left: auto; padding: 6px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 7px; color: #8f9db2; font-size: 9px; font-weight: 800; letter-spacing: .15em; }
.metric-grid { min-height: 184px; display: grid; padding: 33px 5px 25px; }
.metric { min-width: 0; display: flex; flex-direction: column; justify-content: end; }
.metric strong { white-space: nowrap; font-size: clamp(54px, 5vw, 72px); line-height: .86; letter-spacing: -.075em; }
.metric sup { color: #ff8840; font-size: .38em; vertical-align: top; }
.metric span { margin-top: 14px; color: #9da9ba; font-size: 12px; line-height: 1.4; }
.coverage { display: grid; grid-template-columns: 116px 1fr; align-items: center; gap: 22px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.1); }
.coverage strong { display: block; font-size: 15px; }
.coverage p { margin: 7px 0 0; color: #8795a9; font-size: 12px; line-height: 1.45; }
.coverage-map { height: 64px; position: relative; }
.coverage-map span { position: absolute; width: 19px; height: 14px; border-radius: 8px 3px 7px 4px; background: #ff8840; opacity: .72; transform: rotate(-8deg); }
.coverage-map span:nth-child(1) { left: 4px; top: 26px; }.coverage-map span:nth-child(2) { left: 23px; top: 16px; width: 30px; }.coverage-map span:nth-child(3) { left: 50px; top: 19px; width: 23px; }.coverage-map span:nth-child(4) { left: 72px; top: 11px; width: 35px; }.coverage-map span:nth-child(5) { left: 39px; top: 35px; width: 34px; }.coverage-map span:nth-child(6) { left: 72px; top: 32px; width: 25px; }.coverage-map span:nth-child(7) { left: 97px; top: 28px; width: 17px; }.coverage-map span:nth-child(8) { left: 21px; top: 43px; width: 22px; }
.panel-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 11px; padding: 17px 18px; border-radius: 13px; color: #a9b4c4; background: rgba(0,0,0,.16); font-size: 11px; }
.checkmark { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; color: #132038; background: #55d68b; font-weight: 900; }

.benefits, .databases { padding: 112px 0; }
.section-heading { max-width: 650px; margin-bottom: 48px; }
.section-heading h2, .contact h2 { margin: 0; font-size: clamp(38px, 5vw, 62px); line-height: 1.03; letter-spacing: -.05em; }
.section-heading > p:last-child { margin: 20px 0 0; color: var(--muted); line-height: 1.65; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefit-card { min-height: 250px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.74); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit-card:hover { transform: translateY(-6px); border-color: rgba(244,122,31,.28); box-shadow: var(--shadow); }
.icon-wrap { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; color: var(--orange); background: #fff4eb; }
.icon-wrap svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.benefit-card h3 { margin: 31px 0 10px; font-size: 19px; letter-spacing: -.02em; }
.benefit-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.6; }
.benefit-card--accent { color: #fff; border-color: transparent; background: linear-gradient(145deg, #ef7725, #d83327); box-shadow: 0 22px 50px rgba(217,45,38,.2); }
.benefit-card--accent .icon-wrap { color: #fff; background: rgba(255,255,255,.16); }
.benefit-card--accent p { color: rgba(255,255,255,.76); }

.databases { color: #fff; background: linear-gradient(145deg, #0a1222, #142441); }
.databases .section-heading > p:last-child { color: #9ba8ba; }
.databases .section-heading h2 { color: #fff; }
.database-accordions { border-top: 1px solid rgba(255,255,255,.14); }
.database-accordion { border-bottom: 1px solid rgba(255,255,255,.14); }
.database-accordion summary { min-height: 94px; padding: 24px 4px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #fff; font-size: clamp(19px, 2vw, 25px); font-weight: 720; letter-spacing: -.025em; cursor: pointer; list-style: none; }
.database-accordion summary::-webkit-details-marker { display: none; }
.database-accordion summary:hover { color: #ff9554; }
.accordion-icon { width: 42px; height: 42px; flex: 0 0 42px; position: relative; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; transition: transform .25s ease, background .25s ease; }
.accordion-icon::before, .accordion-icon::after { content: ""; width: 14px; height: 2px; position: absolute; top: 19px; left: 13px; background: currentColor; }
.accordion-icon::after { transform: rotate(90deg); transition: transform .25s ease; }
.database-accordion[open] .accordion-icon { color: #fff; background: var(--orange); transform: rotate(180deg); }
.database-accordion[open] .accordion-icon::after { transform: rotate(0); }
.database-content { padding: 2px 4px 34px; }
.database-list { margin: 0; padding: 0; columns: 2; column-gap: 54px; list-style: none; }
.database-list li { break-inside: avoid; position: relative; padding: 9px 12px 9px 21px; color: #b9c3d1; font-size: 14px; line-height: 1.5; }
.database-list li::before { content: ""; width: 5px; height: 5px; position: absolute; top: 17px; left: 1px; border-radius: 50%; background: var(--orange); }

.contact { padding: 24px 0 100px; background: #fff; }
.contact-card { min-height: 390px; padding: clamp(36px, 6vw, 72px); display: grid; grid-template-columns: 1fr .72fr; align-items: center; gap: 80px; overflow: hidden; position: relative; border-radius: 30px; color: #fff; background: linear-gradient(130deg, #0a1222, #172744); box-shadow: var(--shadow); }
.contact-card::before { content: "+"; position: absolute; right: -20px; top: -95px; color: rgba(244,122,31,.12); font-size: 360px; font-weight: 300; line-height: 1; }
.eyebrow--light { color: #ff9451; }
.contact-action { position: relative; z-index: 1; }
.contact-action p { margin: 0 0 28px; color: #aeb9ca; font-size: 15px; line-height: 1.7; }
.contact-buttons { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-footer { padding: 0 0 34px; color: #7d8797; background: #fff; }
.footer-inner { padding-top: 27px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 11px; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 700px; }
  .hero-panel { min-height: 420px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1180px); }
  .header-inner { min-height: 74px; }
  .brand img { width: 178px; }
  .button--small { min-height: 40px; padding-inline: 12px; font-size: 0; }
  .button--small svg { width: 20px; height: 20px; }
  .header-actions { gap: 7px; }
  .hero { padding: 126px 0 68px; }
  .hero h1 { font-size: clamp(43px, 12.8vw, 51px); }
  .hero-price { margin-top: 22px; padding: 14px 18px 13px; gap: 10px; border-radius: 15px; }
  .hero-price strong { font-size: clamp(40px, 12vw, 50px); }
  .hero-price span { font-size: 13px; }
  .hero-lead { margin-top: 24px; font-size: 17px; }
  .hero-actions { align-items: stretch; gap: 20px; }
  .hero-actions .button { width: 100%; }
  .trust-line { margin-top: 36px; }
  .hero-panel { min-height: 380px; padding: 22px; }
  .metric-grid { min-height: 155px; padding-inline: 0; }
  .metric strong { font-size: clamp(45px, 13vw, 52px); }
  .metric span { font-size: 10px; }
  .coverage { grid-template-columns: 94px 1fr; gap: 13px; }
  .coverage-map { transform: scale(.82); transform-origin: left center; }
  .benefits, .databases { padding: 78px 0; }
  .section-heading { margin-bottom: 34px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 220px; }
  .database-accordion summary { min-height: 78px; font-size: 18px; }
  .accordion-icon { width: 36px; height: 36px; flex-basis: 36px; }
  .accordion-icon::before, .accordion-icon::after { top: 16px; left: 10px; }
  .database-list { columns: 1; }
  .database-list li { padding-block: 8px; font-size: 13px; }
  .contact { padding-bottom: 70px; }
  .contact-card { min-height: 430px; padding: 34px 26px; border-radius: 22px; }
  .contact-buttons .button { flex: 1 1 130px; }
  .footer-inner { gap: 18px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
