.h2, .lead{text-align: center;}
.h2{padding-top: 40px;}
.lead{padding-bottom: 0px;}
/* Icons and reveals consistent with index */
.reveal { opacity: 0; transform: translateY(30px) translateZ(0); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0) translateZ(0); transition: opacity .6s ease, transform .6s ease; }

main .icon { width: 20px; height: 20px; }
main .icon-lg { width: 32px; height: 32px; }
main .icon-hero { width: 64px; height: 64px; transition: transform .3s ease; }
main .group:hover .icon-hero { transform: scale(1.1); }

.card { border-radius: 16px; border: 1px solid rgba(51,65,85,.6); transition: box-shadow .3s ease, border-color .3s ease, transform .25s ease; padding: 14px 20px;}
.hover-up:hover { transform: translateY(-3px); box-shadow: 0 20px 60px -20px rgba(119,119,255,.12); }
.glass { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); backdrop-filter: blur(10px); }
/* Базовые цвета под тёмную тему */
:root {
  --bg: #0b1020;              /* общий тёмный фон страницы */
  --card: rgba(255,255,255,0.04);
  --card-foreground: #e5e7eb; /* text-card-foreground */
  --slate-800: #1f2937;
  --slate-700: #334155;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --white: #ffffff;
  --accent: #7777ff;
  --accent-hover: #6666ee;
  --green: #22c55e;
  --blue-400: #60a5fa;
}
ul{list-style: none; margin: 0; padding: 0;}
/* Стеклянная карточка + бордер и тени в стиле services */
.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  backdrop-filter: blur(10px);
}

.bg-card { background-color: var(--card); }
.text-card-foreground { color: var(--card-foreground); }

.rounded-lg { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.shadow-sm { box-shadow: 0 1px 2px rgba(0,0,0,.3); }
.hover\:shadow-lg:hover { box-shadow: 0 20px 60px -20px rgba(119,119,255,.18); }

/* Бордеры и переходы */
.border { border-width: 1px; }
.border-slate-800 { border-color: var(--slate-800); }
.hover\:border\[\#7777ff\]\/30:hover { border-color: rgba(119,119,255,.3); }
.transition-all { transition: all .3s ease; }
.duration-300 { transition-duration: .3s; }

/* Отступы и сетки (минимум нужного под этот блок) */
.p-6 { padding: 1.5rem; }
.pb-8 { padding-bottom: 0; }
.pt-0 { padding-top: 0; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.space-y-1\.5 > * + * { margin-top: .375rem; }
.space-y-2 > * + * { margin-top: .5rem; }
.space-y-3 > * + * { margin-top: .75rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.lg\:grid-cols-2 { grid-template-columns: 1fr; }
@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
.gap-8 { gap: 2rem; }

/* Флекс-утилиты, соответствующие HTML */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.inline-flex { display: inline-flex; }
.justify-center { justify-content: center; }
.whitespace-nowrap { white-space: nowrap; }
.flex-shrink-0 { flex-shrink: 0; }

/* Типографика под карточку */
.text-white { color: var(--white); }
.text-slate-400 { color: var(--slate-400); }
.text-slate-300 { color: var(--slate-300); }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-sm { font-size: .875rem; line-height: 1.25rem; }
.text-xs { font-size: .75rem; line-height: 1rem; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.tracking-tight { letter-spacing: -0.01em; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.md\:text-3xl { font-size: 1.75rem; line-height: 2.25rem; }
@media (min-width: 768px) {
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
}

/* Иконки и маркеры */
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-2 { width: .5rem; } .h-2 { height: .5rem; }
.w-1\.5 { width: .375rem; } .h-1\.5 { height: .375rem; }
.mr-3 { margin-right: .75rem; }
.mt-2 { margin-top: .5rem; }
.text-\[\#7777ff\] { color: var(--accent); }
.bg-\[\#7777ff\] { background: var(--accent); }
.bg-blue-400 { background: var(--blue-400); }
.bg-green-400 { background: var(--green); }

/* Градиентные подложки под ведущие иконки */
.bg-gradient-to-br { background-image: linear-gradient(135deg, var(--g-from, transparent), var(--g-to, transparent)); }
.from-\[\#7777ff\]\/10 { --g-from: rgba(119,119,255,.10); }
.to-blue-500\/10 { --g-to: rgba(59,130,246,.10); }

/* Чипы технологий */
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: .5rem; }
.bg-slate-800\/50 { background: rgba(30,41,59,.5); }
.border-slate-700 { border-color: var(--slate-700); }
.px-3 { padding-left: .75rem; padding-right: .75rem; }
.py-1 { padding-top: .25rem; padding-bottom: .25rem; }
.rounded-full { border-radius: 9999px; }

/* Кнопка CTA (Get Quote) в стиле страницы */
.h-10 { height: 2.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-2 { padding-top: .5rem; padding-bottom: .5rem; }
.group { position: relative; }
.bg-\[\#7777ff\] { background-color: var(--accent); }
.hover\:bg-\[\#6666ee\]:hover { background-color: var(--accent-hover); }
.text-white { color: #fff; }
.ring-offset-background { --ring-offset-color: transparent; }
.focus-visible\:outline-none:focus-visible { outline: none; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px rgba(119,119,255,.6); }
.focus-visible\:ring-ring:focus-visible { /* совместимо с общей схемой */ }
.focus-visible\:ring-offset-2:focus-visible { box-shadow: 0 0 0 2px rgba(119,119,255,.6), 0 0 0 4px var(--ring-offset-color); }
.disabled\:pointer-events-none:disabled { pointer-events: none; }
.disabled\:opacity-50:disabled { opacity: .5; }

/* Анимация стрелки в кнопке */
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.transition-transform { transition: transform .2s ease; }

/* Хелперы контейнеров в секции фич/что получаете */
.space-y-6 > .glass { border: 1px solid var(--slate-800); }
.card .glass { background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); }

/* Если используете класс .card поверх — аккуратная рамка и плавный hover */
.card { border-radius: 16px; border: 1px solid var(--slate-800); transition: box-shadow .3s ease, border-color .3s ease, transform .25s ease; }
.card:hover { transform: translateY(-2px); box-shadow: 0 20px 60px -20px rgba(119,119,255,.12); border-color: rgba(119,119,255,.3); }

/* Семантические селекторы для маркеров списков “What You Get” — уже в HTML заданы div-точки, здесь лишь выравнивание */
li.text-slate-300.text-sm.flex.items-start { line-height: 1.4; }

/* Подсветка ценового блока внутри .glass */
.text-\[\#7777ff\] { color: var(--accent); }

/* Сетка инфо-блока (цена/сроки) */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

/* Совместимость с lucide svg (размеры уже заданы в HTML классами w-4/w-8) */
.lucide { display: inline-block; vertical-align: middle; }

/* Утилиты для компоновки из кода */
.w-full { width: 100%; }

/* Дополнительно: мягкая подсветка карточки при hover */
.hover\:shadow-\[\#7777ff\]\/10:hover {
  box-shadow: 0 16px 40px -20px rgba(119,119,255, .1);
}

/* Small utilities reused here */
.gradient-text { background: linear-gradient(90deg,#9aa0ff,#6ee7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bullets-tight { display:grid; gap:8px; color:#cbd5e1; font-size:.95rem; }
.bullets-tight li { position: relative; padding-left: 14px; }
.bullets-tight li::before { content:""; position:absolute; left:0; top:.6em; width:6px; height:6px; border-radius:9999px; background:#22c55e; }
.dot { width:8px; height:8px; border-radius:9999px; display:inline-block; background:#7777ff; }
.dot-blue { background:#60a5fa; } .dot-green { background:#22c55e; } .dot-accent { background:#7777ff; }

.tech-chips { display:flex; flex-wrap:wrap; gap:8px; }
.tech-chips span { font-size:.75rem; color:#cbd5e1; background: rgba(15,23,42,.5); border:1px solid #334155; padding:.25rem .6rem; border-radius:9999px; }

/* Inline check items */
.check { display:flex; align-items:flex-start; color:#cbd5e1; }
.check::before { content:""; display:inline-block; width:20px; height:20px; margin-right:.5rem;
  background: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 fill=%22none%22 stroke=%22%237777ff%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><path d=%22M20 6 9 17l-5-5%22/></svg>') no-repeat center/16px; filter:none; }
.check-inline { gap:.5rem; }
.check-inline::before { content:""; width:16px; height:16px; background:
  url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%2220%22 height=%2220%22 fill=%22none%22 stroke=%22%237777ff%22 stroke-width=%222%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22><path d=%22M20 6 9 17l-5-5%22/></svg>') no-repeat center/14px; }

/* Pricing badge ribbon */
.ribbon { position:absolute; left:50%; transform: translate(-50%,-0.75rem); top:-1rem;
  background:#7777ff; color:#fff; padding:.5rem .9rem; border-radius:9999px; font-weight:600; font-size:.9rem; display:flex; align-items:center; gap:.4rem; }

/* List item with leading icon helper */
.li-icon { display:flex; align-items:center; color:#cbd5e1; }
.li-icon .li-ico { width:16px; height:16px; margin-right:.75rem; flex-shrink:0; }

/**************************************************/
:root{
  --accent:#7777ff;
  --accent-600:#6666ee;
  --slate-700:#334155;
  --panel:rgba(255,255,255,.04);
  --panel-2:rgba(255,255,255,.02);
}

/* Hover эффекты карточек */
.hover\:shadow-lg:hover{ box-shadow: 0 20px 60px -20px rgba(119,119,255,.18); }
.hover\:shadow-\[\#7777ff\]\/10:hover{ box-shadow: 0 16px 40px -20px rgba(119,119,255,.10); }
.transition-all{ transition: all .3s ease; }
.duration-300{ transition-duration:.3s; }

/* “Most Popular” — бейдж над центральной картой */
.relative{ position:relative; }
.absolute{ position:absolute; }
.-top-4{ top:-1rem; }
.left-1\/2{ left:50%; }
.transform{ transform: translate(0,0); }
.-translate-x-1\/2{ transform: translate(-50%,0); }
.z-10{ z-index:10; }
.bg-\[\#7777ff\]{ background-color: var(--accent); }
.text-white{ color:#fff; }
.px-4{ padding-left:1rem; padding-right:1rem; }
.py-2{ padding-top:.5rem; padding-bottom:.5rem; }
.rounded-full{ border-radius:9999px; }
.text-sm{ font-size:.875rem; line-height:1.25rem; }
.font-semibold{ font-weight:600; }
.flex{ display:flex; }
.items-center{ align-items:center; }
.mr-1{ margin-right:.25rem; }

/* Усиление средней карточки */
.border-\[\#7777ff\]{ border-color: var(--accent); }
.scale-105{ transform: scale(1.05); }
.glow{ box-shadow: 0 0 0 0 rgba(119,119,255,.5); animation: glowPulse 2.6s infinite; }
@keyframes glowPulse{
  0%{ box-shadow: 0 0 0 0 rgba(119,119,255,.45); }
  100%{ box-shadow: 0 0 0 18px rgba(119,119,255,0); }
}

/* Заголовок/подзаголовок/цена */
.tracking-tight{ letter-spacing: -0.01em; }
.text-2xl{ font-size:1.5rem; line-height:2rem; }
.font-bold{ font-weight:700; }
.text-slate-300{ color:#cbd5e1; }
.text-slate-400{ color:#94a3b8; }
.ml-2{ margin-left:.5rem; }
.pt-4{ padding-top:1rem; }
.text-4xl{ font-size:2.25rem; line-height:2.5rem; }
.md\:text-5xl{ font-size:2.25rem; line-height:2.5rem; }
@media(min-width:768px){ .md\:text-5xl{ font-size:3rem; line-height:1; } }
/* Градиентный текст цены */
.gradient-text{
  background: linear-gradient(90deg,#9aa0ff,#6ee7ff);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}

/* Внутренние отступы и компоновка */
.p-6{ padding:1.5rem; }
.pb-6{ padding-bottom:1.5rem; }
.pt-0{ padding-top:0; }
.flex-1{ flex:1 1 0%; }
.mb-8{ margin-bottom:2rem; }

/* Список фич с галочками */
.space-y-4 > * + *{ margin-top:1rem; }
.items-start{ align-items:flex-start; }
.lucide{ display:inline-block; vertical-align:middle; }
.w-5{ width:1.25rem; } .h-5{ height:1.25rem; }
.text-\[\#7777ff\]{ color: var(--accent); }
.mr-3{ margin-right:.75rem; }
.flex-shrink-0{ flex-shrink:0; }
.mt-0\.5{ margin-top:.125rem; }

/* Кнопки “Get Started” */
.inline-flex{ display:inline-flex; }
.justify-center{ justify-content:center; }
.whitespace-nowrap{ white-space:nowrap; }
.font-medium{ font-weight:500; }
.ring-offset-background{ --ring-offset-color: transparent; }
.focus-visible\:outline-none:focus-visible{ outline:none; }
.focus-visible\:ring-2:focus-visible{ box-shadow: 0 0 0 2px rgba(119,119,255,.6); }
.focus-visible\:ring-ring:focus-visible{ /* визуально уже покрыто строкой выше */ }
.focus-visible\:ring-offset-2:focus-visible{ box-shadow: 0 0 0 2px rgba(119,119,255,.6), 0 0 0 4px var(--ring-offset-color); }
.disabled\:pointer-events-none:disabled{ pointer-events:none; }
.disabled\:opacity-50:disabled{ opacity:.5; }

.h-10{ height:2.5rem; }
.w-full{ width:100%; }
.rounded-full{ border-radius:9999px; }

/* Вариант: обводочная кнопка (Starter/Enterprise) */
.border-\[\#7777ff\]{ border-color: var(--accent); }
.text-\[\#7777ff\]{ color: var(--accent); }
.hover\:bg-\[\#7777ff\]\/10:hover{ background-color: rgba(119,119,255,.10); }

/* Вариант: заливка (Professional) */
.bg-\[\#7777ff\]{ background-color: var(--accent); }
.hover\:bg-\[\#6666ee\]:hover{ background-color: var(--accent-600); }
.text-white{ color:#fff; }

/* Анимация стрелки внутри кнопки */
.ml-2{ margin-left:.5rem; }
.w-4{ width:1rem; } .h-4{ height:1rem; }
.group:hover .group-hover\:translate-x-1{ transform: translateX(.25rem); }
.transition-transform{ transition: transform .2s ease; }
/*************************************************/
/**************************************************/
/**************************************************/
.bg-2{background-color: #152450;}
.p-3{padding: 4px 10px 0 0;}
.reveal{margin: 20px 0;}
.grid-prices{grid-template-columns: 1fr 1fr 1fr;}
.b-w80{width: 80%; margin: 20px auto; text-align: center;}
.b-w80 .grid{grid-template-columns: 1fr 1fr 1fr 1fr;}
@media (max-width: 640px){
.grid-prices{grid-template-columns: 1fr;}
.b-w80 .grid{grid-template-columns: 1fr;}

}