/* =========================================================
   DIGITAL TECHNOLOGIES — Modern Design System
   ========================================================= */

:root {
  /* Brand */
  --primary: #0a84ff;
  --primary-600: #0071e3;
  --primary-700: #0060b0;
  --violet: #5e5ce6;
  --pink: #bf5af2;
  --green: #30d158;
  --cyan: #64d2ff;

  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f5f5f7;
  --bg-dark: #05060a;
  --bg-dark-2: #0b0d14;

  /* Text */
  --text: #1d1d1f;
  --text-2: #6e6e73;
  --text-3: #86868b;
  --text-on-dark: #f5f5f7;
  --text-on-dark-2: rgba(245, 245, 247, 0.68);

  /* Lines */
  --border: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(255, 255, 255, 0.10);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 1px 2px rgba(0,0,0,.04), 0 2px 8px rgba(0,0,0,.04);
  --sh-md: 0 4px 12px rgba(0,0,0,.05), 0 12px 32px rgba(0,0,0,.06);
  --sh-lg: 0 12px 32px rgba(0,0,0,.08), 0 32px 64px rgba(0,0,0,.10);
  --sh-glow: 0 10px 40px rgba(10, 132, 255, .35);

  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter',
               'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   HEADER
   ========================================================= */
.global-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.global-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  padding-bottom: 14px;
}

.logo {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: conic-gradient(from 200deg, var(--primary), var(--violet), var(--pink), var(--primary));
  box-shadow: 0 4px 12px rgba(10, 132, 255, .35);
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 4px;
}

.nav-menu li a {
  display: inline-block;
  padding: 8px 14px;
  font-size: .875rem;
  color: var(--text-2);
  border-radius: var(--r-pill);
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.nav-menu li a:hover {
  color: var(--text);
  background: rgba(0, 0, 0, .05);
}

.nav-menu li a.active {
  color: var(--primary-600);
  background: rgba(10, 132, 255, .10);
}

/* =========================================================
   HERO (главная) — тёмный, с canvas
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  text-align: center;
  padding: 140px 0 140px;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero::before {
  /* виньетка + нижнее затемнение */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(5,6,10,.35) 0%, rgba(5,6,10,.85) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero-content { animation: fadeInUp .8s ease-out both; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text-on-dark);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.hero h1 {
  font-size: clamp(2rem, 5.2vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(180deg, #ffffff 0%, #a8b6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero p,
.hero .subtitle {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-on-dark-2);
  max-width: 680px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   PAGE HERO (внутренние страницы) — тот же тёмный стиль
   ========================================================= */
.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  text-align: center;
  padding: 110px 0 90px;
}

.page-header .hero-canvas { position: absolute; inset: 0; z-index: 0; }

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(180deg, rgba(5,6,10,.25) 0%, rgba(5,6,10,.85) 100%);
  pointer-events: none;
}

.page-header .container { position: relative; z-index: 2; }

.page-header h1 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-header h1 span { color: var(--primary); }
.page-header p {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--text-on-dark-2);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: .9375rem;
  font-weight: 500;
  border-radius: var(--r-pill);
  transition: transform .2s ease, background .2s ease,
              color .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}

.cta-button.primary {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-600) 100%);
  color: #fff;
  box-shadow: var(--sh-glow);
}
.cta-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(10, 132, 255, .45);
}

.cta-button.outline {
  background: transparent;
  color: var(--primary-600);
  border: 1px solid rgba(10, 132, 255, .35);
}
.cta-button.outline:hover {
  background: rgba(10, 132, 255, .08);
  border-color: var(--primary);
  transform: translateY(-2px);
}

/* светлая версия outline для тёмного фона */
.hero .cta-button.outline,
.page-header .cta-button.outline {
  color: var(--text-on-dark);
  border-color: rgba(255, 255, 255, .35);
}
.hero .cta-button.outline:hover,
.page-header .cta-button.outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
}

/* =========================================================
   SECTIONS — общие
   ========================================================= */
.section-header { margin-bottom: 56px; }

.section-header h2,
.page-title-center {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: center;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  font-size: clamp(.95rem, 1.2vw, 1.125rem);
  color: var(--text-2);
  max-width: 640px;
  margin: 14px auto 0;
}

section[id] { scroll-margin-top: 100px; }

/* =========================================================
   STATS STRIP
   ========================================================= */
.stats {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item .stat-value {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--primary-600), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item .stat-label {
  margin-top: 6px;
  color: var(--text-2);
  font-size: .95rem;
}

/* =========================================================
   SERVICES
   ========================================================= */
.services { padding: 110px 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  background: var(--bg);
  padding: 32px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(10,132,255,.5), rgba(191,90,242,.35), transparent 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}
.service-card:hover::after { opacity: 1; }

.icon-bg {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 1.35rem;
  color: var(--primary-600);
  background: linear-gradient(135deg, rgba(10,132,255,.12), rgba(94,92,230,.10));
  margin-bottom: 22px;
  transition: transform .3s ease, background .3s ease;
}

.service-card:hover .icon-bg {
  transform: scale(1.06) rotate(-3deg);
  background: linear-gradient(135deg, rgba(10,132,255,.2), rgba(191,90,242,.18));
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.service-card p {
  font-size: .9rem;
  line-height: 1.6;
  color: var(--text-2);
}

/* =========================================================
   PORTFOLIO
   ========================================================= */
.portfolio {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.portfolio-card {
  position: relative;
  background: var(--bg);
  padding: 36px 28px;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}

.portfolio-card::before {
  /* декоративный градиентный "уголок" */
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10,132,255,.14), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(10,132,255,.2);
}
.portfolio-card:hover::before { opacity: 1; }

.portfolio-card .icon-bg { margin-bottom: 20px; }

.portfolio-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.portfolio-card p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 500;
  color: var(--primary-600);
  border: 1px solid rgba(10,132,255,.35);
  border-radius: var(--r-pill);
  transition: all .2s ease;
  margin: 0 auto;
}
.portfolio .container > .view-all-button {
  display: flex;
  width: max-content;
}
.view-all-button:hover {
  background: var(--primary-600);
  color: #fff;
  border-color: var(--primary-600);
  transform: translateY(-2px);
  box-shadow: var(--sh-glow);
}

/* =========================================================
   PROCESS (шаги)
   ========================================================= */
.process { padding: 110px 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.process-step {
  position: relative;
  padding: 32px 24px;
  border-radius: var(--r-lg);
  background: var(--bg-soft);
  border: 1px solid var(--border);
}
.process-step .num {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--primary-600), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.process-step h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}

/* =========================================================
   INFO / ABOUT
   ========================================================= */
.about-block { margin: 40px 0; }

.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--sh-sm);
}

.info-card h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
  color: var(--text);
}
.info-card h2 i { color: var(--primary-600); margin-right: 10px; }

/* =========================================================
   CONTACTS
   ========================================================= */
.contacts-top-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
  margin: 60px 0;
}

.contact-info, .contact-map { display: flex; flex-direction: column; }

.info-card, .map-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.map-card { padding: 32px; }

.map-container {
  flex: 1;
  min-height: 320px;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-top: 16px;
  box-shadow: inset 0 0 0 1px var(--border);
}
.map-container iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-note {
  font-size: .85rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 14px;
}

.info-block { display: flex; flex-direction: column; gap: 24px; }

.info-item { display: flex; gap: 18px; align-items: flex-start; }
.info-item .icon {
  font-size: 1.35rem;
  color: var(--primary-600);
  min-width: 40px;
  padding-top: 2px;
}
.info-text h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.info-text p { color: var(--text-2); font-size: .9375rem; line-height: 1.55; }
.info-text .small { font-size: .82rem; color: var(--text-3); margin-top: 4px; }
.info-text a { color: var(--primary-600); font-weight: 500; }
.info-text a:hover { text-decoration: underline; }

/* =========================================================
   LEGAL / Реквизиты
   ========================================================= */
.legal-wrapper { margin-bottom: 40px; }

.legal-details {
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 24px;
  margin-top: 8px;
}
.legal-details p { margin: 6px 0; font-size: .9375rem; color: var(--text-2); }
.legal-details p strong { color: var(--text); }

/* =========================================================
   SOCIAL
   ========================================================= */
.social-links, .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}
.social-links a, .social-icons a {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,0,0,.05);
  color: var(--primary-600);
  font-size: 1.1rem;
  transition: all .2s ease;
}
.social-links a:hover, .social-icons a:hover {
  background: var(--primary-600);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--sh-glow);
}

/* =========================================================
   PRODUCT / DOWNLOADS / PRICING
   ========================================================= */
.product-description .info-card { padding: 48px; }

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0 60px;
}

.download-card {
  text-align: center;
  padding: 32px 24px !important;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.download-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(10,132,255,.2);
}
.download-card .icon-bg { margin: 0 auto 20px; }
.download-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.download-card p { color: var(--text-2); font-size: .9rem; margin-bottom: 20px; }

.pricing-wrapper { margin: 40px 0 60px; }

.pricing-card {
  background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 100%) !important;
  border: 1px solid rgba(10,132,255,.2) !important;
  text-align: center;
  padding: 56px 32px !important;
}
.pricing-card h2 { font-size: clamp(1.4rem, 2.4vw, 2rem) !important; }
.pricing-card .price {
  font-size: clamp(2.25rem, 5vw, 3.25rem) !important;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--primary-600);
  margin: 20px 0 14px;
  line-height: 1;
}

/* =========================================================
   CTA CONTACT
   ========================================================= */
.cta-contact {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 100px 0;
  text-align: center;
}
.cta-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 80% at 20% 0%, rgba(10,132,255,.35), transparent 60%),
    radial-gradient(60% 80% at 80% 100%, rgba(191,90,242,.28), transparent 60%);
  pointer-events: none;
}
.cta-contact .container { position: relative; z-index: 1; }
.cta-contact h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.cta-contact p {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--text-on-dark-2);
  max-width: 620px;
  margin: 0 auto 32px;
}

/* =========================================================
   FOOTER
   ========================================================= */
.global-footer {
  background: #0a0b10;
  color: #d8d8dc;
  padding: 64px 0 24px;
}

.footer-info { margin-bottom: 32px; }
.footer-info h4,
.logo-footer {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.address-footer {
  font-size: .9rem;
  color: #86868b;
  margin-bottom: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.address-footer i { color: var(--primary); margin-top: 4px; }
.footer-info p:last-child { font-size: .82rem; color: #6e6e73; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-links a {
  color: #86868b;
  font-size: .875rem;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.footer-bottom p {
  font-size: .8rem;
  color: #6e6e73;
  text-align: center;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.service-card, .portfolio-card, .process-step, .download-card, .stat-item {
  animation: fadeInUp .6s ease-out both;
}
.service-card:nth-child(1) { animation-delay: .05s; }
.service-card:nth-child(2) { animation-delay: .10s; }
.service-card:nth-child(3) { animation-delay: .15s; }
.service-card:nth-child(4) { animation-delay: .20s; }
.service-card:nth-child(5) { animation-delay: .25s; }
.service-card:nth-child(6) { animation-delay: .30s; }
.service-card:nth-child(7) { animation-delay: .35s; }
.service-card:nth-child(8) { animation-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .contacts-top-grid { grid-template-columns: 1fr; }
  .hero { padding: 120px 0; min-height: 70vh; }
  .page-header { padding: 90px 0 70px; }
}

@media (max-width: 720px) {
  .global-header .container {
    flex-direction: column;
    gap: 12px;
  }
  .nav-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
  }
  .nav-menu li a { padding: 7px 11px; font-size: .8rem; }

  .services-grid,
  .portfolio-grid,
  .process-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero { padding: 100px 0; }
  .cta-contact { padding: 80px 0; }
  .info-card { padding: 28px; }
  .product-description .info-card { padding: 28px; }
  .map-container { min-height: 260px; }
}

/* Утилиты */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }

/* About page */
.about-text p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-2);
  margin-bottom: 8px;
}
.about-text strong { color: var(--text); }
.about-text a { color: var(--primary-600); font-weight: 500; }
.about-text a:hover { text-decoration: underline; }

.about-note {
  font-size: .875rem;
  color: var(--text-3);
  margin-bottom: 16px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 18px;
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text-2);
}
.about-list li .num {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-600);
  font-weight: 600;
}

.info-card.soft { background: var(--bg-soft); }
.info-card.accent {
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, rgba(10,132,255,.05), rgba(94,92,230,.03));
}
/* =========================================================
   PRODUCT PAGES — общие стили
   ========================================================= */
.product-description {
  margin: 60px 0 40px;
}

.product-description .info-card {
  padding: 48px;
}

.product-description .lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 20px;
}

.product-description p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 16px;
}
.product-description p:last-child { margin-bottom: 0; }
.product-description strong { color: var(--text); }

.product-features {
  margin-top: 40px;
}
.product-features .services-grid {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* Баннер реестра */
.registry-banner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 28px 32px;
  margin: 20px 0 60px;
  border-radius: var(--r-lg);
  border-left: 4px solid var(--primary);
  background: linear-gradient(135deg, rgba(10,132,255,.06), rgba(94,92,230,.03));
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.6;
}
.registry-banner i {
  font-size: 1.5rem;
  color: var(--primary-600);
  margin-top: 2px;
}
.registry-banner strong { color: var(--text); }

.registry-badge {
  display: inline-block;
  padding: 4px 14px;
  margin-left: 8px;
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-600));
  border-radius: var(--r-pill);
  box-shadow: 0 4px 12px rgba(10,132,255,.3);
}

/* Загрузки */
.product-downloads .section-header { margin-bottom: 0; }

/* Стоимость */
.pricing-wrapper { margin: 40px 0 60px; }

.pricing-card h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.pricing-card h2 i { color: var(--primary-600); margin: 0; }

.price-note {
  font-size: 1rem;
  color: var(--text-2);
  margin-bottom: 4px;
}
.price-note-sm {
  font-size: .9rem;
  color: var(--text-3);
  margin-bottom: 8px;
}

.pricing-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0 8px;
}

.price-disclaimer {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: 16px;
}

/* Общие внутренние страницы */
.about-page .container > .about-block:first-child,
.product-page .container > .product-description:first-child,
.contacts-page .container > .contacts-top-grid:first-child {
  margin-top: 60px;
}

@media (max-width: 720px) {
  .registry-banner {
    flex-direction: column;
    padding: 22px;
    font-size: .9375rem;
  }
  .registry-badge {
    display: block;
    margin: 8px 0 0;
    width: max-content;
  }
  .pricing-actions {
    flex-direction: column;
  }
  .pricing-actions .cta-button { width: 100%; }
}