:root {
  --bg: #07111f;
  --bg-soft: #0b1728;
  --panel: #0f1c31;
  --panel-2: #13233d;
  --card: #ffffff;
  --card-soft: #f6f8fc;
  --text: #0f172a;
  --text-soft: #5b6475;
  --text-inv: #f8fbff;
  --text-inv-soft: #aab7cc;
  --line: #dbe3ef;
  --line-dark: rgba(255, 255, 255, 0.1);
  --primary: #6d5efc;
  --primary-2: #28c7b7;
  --accent: #8ea3ff;
  --success: #0ea56b;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1200px;
  --shadow: 0 20px 60px rgba(7, 17, 31, 0.08);
  --shadow-dark: 0 30px 80px rgba(4, 8, 16, 0.35);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(109, 94, 252, 0.12), transparent 30%),
    radial-gradient(circle at top right, rgba(40, 199, 183, 0.12), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #eef3fb 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
}

:focus-visible {
  outline: 2px solid rgba(109, 94, 252, 0.6);
  outline-offset: 2px;
}

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

.section {
  padding: 96px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-light {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(2px);
}

.page-section {
  background: rgba(255, 255, 255, 0.45);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d4a8f;
  border: 1px solid rgba(109, 94, 252, 0.3);
  background: rgba(255, 255, 255, 0.85);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 20px;
  min-height: 50px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), #7d72ff 45%, var(--primary-2));
  box-shadow: 0 16px 36px rgba(109, 94, 252, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(109, 94, 252, 0.35);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(15, 23, 42, 0.1);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  color: var(--primary);
  border-color: rgba(109, 94, 252, 0.4);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(109, 94, 252, 0.08);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0b1220;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, rgba(255, 255, 255, 0.9) 20%, transparent 21%),
    linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 30px rgba(109, 94, 252, 0.28);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: 600;
  color: #4f5b6d;
}

.nav-links a,
.dropdown > button {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after,
.dropdown > button::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.dropdown > button:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: white;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #0f172a;
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
  padding: 12px;
  display: none;
  flex-direction: column;
  gap: 6px;
}

.dropdown:hover .dropdown-content {
  display: flex;
}

main {
  overflow: hidden;
}

.hero {
  padding: 36px 0 0;
}

.hero-shell {
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 10%, rgba(142, 163, 255, 0.22), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(40, 199, 183, 0.18), transparent 22%),
    linear-gradient(135deg, #08111f 0%, #0d1830 55%, #12213f 100%);
  color: var(--text-inv);
  box-shadow: var(--shadow-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  padding: 64px;
  align-items: center;
}

.hero-copy h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.hero .lead {
  color: var(--text-inv-soft);
  font-size: 18px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #dbe7fb;
  font-weight: 600;
  font-size: 13px;
}

.hero-note {
  margin-top: 18px;
  font-size: 14px;
  color: var(--text-inv-soft);
}

.hero-card {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dashboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dashboard-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dashboard-title {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d8e3f5;
}

.dashboard-sub {
  margin: 4px 0 0;
  color: #9fb0c9;
  font-size: 13px;
}

.status {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(14, 165, 107, 0.18);
  border: 1px solid rgba(142, 240, 195, 0.24);
  color: #8ef0c3;
  font-size: 12px;
  font-weight: 700;
}

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

.metric {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.metric strong {
  display: block;
  font-size: 30px;
  margin-bottom: 6px;
  color: white;
}

.metric span {
  color: #aebbd0;
  font-size: 12px;
}

.agent-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #eaf1ff;
  font-size: 14px;
}

.agent-row small {
  display: block;
  color: #9fb0c9;
  font-size: 12px;
}

.hero-belt {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  padding: 0 64px 48px;
}

.belt-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  padding: 20px;
  color: #dce7f8;
}

.belt-title {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #95a7c1;
  text-transform: uppercase;
}

.belt-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.belt-item {
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
}

.stats-strip {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.stats-panel {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-box strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.stat-box span {
  color: var(--text-soft);
  font-size: 14px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 36px;
}

.section-head h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-head p {
  margin: 0;
  max-width: 560px;
  color: var(--text-soft);
}

.cards-3,
.job-grid,
.process-grid,
.modules-grid,
.placeholder-grid,
.pricing-grid,
.flow-grid,
.testimonials-grid,
.roadmap-grid,
.faq-list {
  display: grid;
  gap: 18px;
}

.cards-3,
.pricing-grid,
.testimonials-grid,
.roadmap-grid,
.modules-grid,
.placeholder-grid,
.flow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.job-grid,
.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.card {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  padding: 28px;
}

.problem-card .icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.14), rgba(40, 199, 183, 0.16));
}

.problem-flow {
  margin: 12px 0 0;
  font-weight: 600;
  color: #1f2937;
}

.problem-flow span {
  display: block;
  color: var(--primary);
}

.job-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.job-visual {
  position: relative;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.job-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto;
}

.process-card {
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 28px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.05);
}

.step {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  margin-bottom: 20px;
}

.module-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.module-card.featured {
  border-width: 2px;
  border-color: var(--primary);
}

.module-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: var(--primary);
  color: white;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.module-header {
  padding: 28px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.06), rgba(40, 199, 183, 0.08));
  display: flex;
  align-items: center;
  gap: 16px;
}

.module-visual {
  margin: 0 28px;
  border-radius: 24px;
  min-height: 180px;
}

.module-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.module-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.module-features,
.feature-list,
.placeholder-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text);
}

.module-features li,
.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-soft);
}

.module-features li::before,
.feature-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  position: absolute;
  left: 0;
  top: 9px;
}

.module-price {
  font-size: 22px;
  font-weight: 700;
}

.module-price .price {
  font-size: 30px;
}

.placeholder-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.placeholder-tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(109, 94, 252, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-panel {
  border-radius: 22px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  padding: 28px;
  text-align: center;
  font-weight: 600;
  color: var(--text-soft);
  background: rgba(15, 23, 42, 0.02);
}

.placeholder-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 32px;
  background: white;
  text-align: center;
  box-shadow: var(--shadow);
}

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 24px 50px rgba(109, 94, 252, 0.2);
}

.pricing-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-price .price {
  font-size: 42px;
}

.flow-card {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-step {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.link-arrow {
  margin-top: auto;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.link-arrow::after {
  content: '→';
  font-size: 16px;
}

.testimonial-card {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 26px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-head strong {
  display: block;
}

.testimonial-head small {
  color: var(--text-soft);
  font-size: 13px;
}

.testimonial-avatar {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.2), rgba(40, 199, 183, 0.25));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1f2937;
}

.testimonial-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}

.roadmap-phase {
  border-radius: 26px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 28px;
  background: white;
}

.phase-badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(109, 94, 252, 0.08);
  color: var(--primary);
  margin-bottom: 12px;
}

.phase-active .phase-badge {
  background: rgba(40, 199, 183, 0.12);
  color: var(--primary-2);
}

.phase-planned .phase-badge {
  background: rgba(255, 193, 59, 0.16);
  color: #b45309;
}

.progress-bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.08);
  margin: 12px 0 16px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.faq-item {
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  padding: 18px 22px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question.active span {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 200px;
}

.faq-answer p {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.contact-section {
  background: rgba(255, 255, 255, 0.6);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  border-radius: var(--radius-xl);
  padding: 48px;
  background: white;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.contact-copy h2 {
  margin-top: 16px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-list strong {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-list span {
  font-size: 16px;
}

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

.contact-card {
  padding: 32px;
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.04), rgba(40, 199, 183, 0.08));
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.contact-meta div {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-meta strong {
  display: block;
  font-size: 20px;
}

.contact-meta span {
  font-size: 13px;
  color: var(--text-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-weight: 600;
  font-size: 14px;
}

.contact-form textarea {
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 14px;
  min-height: 140px;
  resize: vertical;
  background: rgba(255, 255, 255, 0.8);
}

.contact-form textarea:disabled {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-soft);
}

.contact-card small {
  font-size: 12px;
  color: var(--text-soft);
}

.footer {
  padding: 40px 0 60px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 24px;
  color: #6b7280;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 6px;
}

.chat-widget-note {
  max-width: 360px;
  margin: 0 auto 18px;
  padding: 16px 20px;
  border-radius: 20px;
  border: 1px dashed rgba(15, 23, 42, 0.15);
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-soft);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.chat-widget-note strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
}

.chat-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.chat-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 320px;
  border-radius: 24px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  background: white;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
}

.chat-window.active {
  display: flex;
}

.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-messages {
  max-height: 260px;
  overflow-y: auto;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.05);
}

.message.bot {
  background: rgba(109, 94, 252, 0.08);
}

.chat-input {
  display: flex;
  gap: 8px;
  padding: 16px 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.chat-input input {
  flex: 1;
  border-radius: 12px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  padding: 10px 12px;
}

.chat-input button {
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  width: 46px;
}

.page-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.page-head h1 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  letter-spacing: -0.03em;
}

.page-head p {
  margin: 0;
  max-width: 720px;
  color: var(--text-soft);
}

.detail-grid {
  display: grid;
  gap: 20px;
}

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

.detail-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.detail-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 32px;
  background: white;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-subline {
  margin: 0;
  color: var(--text-soft);
}

.detail-price {
  font-size: 18px;
  font-weight: 600;
}

.detail-price span {
  font-size: 36px;
  font-weight: 800;
  margin-right: 6px;
}

.detail-badge {
  align-self: flex-start;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(109, 94, 252, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.disclaimer-card {
  margin-top: 32px;
  padding: 18px 24px;
  border-radius: 20px;
  border: 1px dashed rgba(15, 23, 42, 0.2);
  background: rgba(15, 23, 42, 0.02);
  color: var(--text-soft);
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(260px, 1fr);
  gap: 24px;
}

.legal-card {
  border-radius: 28px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: white;
  padding: 32px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.08);
}

.legal-card h3 {
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-card p {
  margin: 0 0 6px;
  color: var(--text-soft);
}

.legal-aside {
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.legal-aside h4 {
  margin: 0 0 12px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--text-soft);
}

.legal-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-list strong {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.image-placeholder {
  --placeholder-url: none;
  position: relative;
  border-radius: 30px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.0)),
    var(--placeholder-url, none);
  background-color: rgba(255, 255, 255, 0.05);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  min-height: 140px;
  overflow: hidden;
}

.module-visual.image-placeholder,
.job-visual.image-placeholder {
  border-color: rgba(15, 23, 42, 0.08);
  background-color: rgba(15, 23, 42, 0.02);
}

.image-placeholder::after {
  content: attr(data-label);
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(7, 17, 31, 0.65);
  color: white;
}

.image-placeholder.small {
  min-height: 120px;
  border-radius: 22px;
}

.image-placeholder.medium {
  min-height: 180px;
}

.hero-visual {
  min-height: 220px;
}

.job-visual.image-placeholder::after {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.chat-widget-note,
.placeholder-panel,
.disclaimer-card {
  font-size: 14px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .hero-belt,
  .cards-3,
  .process-grid,
  .modules-grid,
  .pricing-grid,
  .testimonials-grid,
  .roadmap-grid,
  .flow-grid,
  .placeholder-grid,
  .legal-shell {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .legal-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-menu {
    display: none;
    position: relative;
  }

  .site-header.open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    border-radius: 24px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 20px;
    gap: 18px;
    background: rgba(247, 250, 255, 0.97);
    box-shadow: var(--shadow);
  }

  .site-header.open .nav-links,
  .site-header.open .nav-actions,
  .nav-links,
  .nav-actions {
    flex-direction: column;
    gap: 14px;
  }

  .nav-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-grid,
  .hero-belt,
  .stats-panel,
  .cards-3,
  .process-grid,
  .modules-grid,
  .pricing-grid,
  .testimonials-grid,
  .roadmap-grid,
  .faq-list,
  .flow-grid,
  .placeholder-grid,
  .legal-shell {
    grid-template-columns: 1fr;
  }

  .detail-grid.two,
  .detail-grid.three {
    grid-template-columns: 1fr;
  }

  .stats-panel {
    grid-template-columns: 1fr 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    padding: 32px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero-grid {
    padding: 32px;
  }

  .hero-belt {
    padding: 0 32px 32px;
  }

  .stats-panel {
    grid-template-columns: 1fr;
  }

  .job-grid {
    grid-template-columns: 1fr;
  }

  .contact-shell,
  .contact-card {
    padding: 24px;
  }

  .contact-meta {
    grid-template-columns: 1fr;
  }

  .nav {
    gap: 12px;
  }
}
