:root {
  --bg: #050509;
  --bg-soft: #0b0b11;
  --bg-softer: #101019;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --accent: #7c3aed;
  --accent-soft: rgba(124, 58, 237, 0.18);
  --accent-2: #22c55e;
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.55);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  background:
    radial-gradient(circle at top, rgba(124, 58, 237, 0.18), transparent 30%),
    radial-gradient(circle at bottom, rgba(34, 197, 94, 0.12), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

button,
input,
textarea {
  font: inherit;
}

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

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-soft {
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.08), transparent 55%),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.8), transparent 55%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
}

.bg-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(90px);
  z-index: -2;
  opacity: 0.35;
  pointer-events: none;
}

.glow-1 {
  background: rgba(124, 58, 237, 0.45);
  top: -180px;
  right: -120px;
}

.glow-2 {
  background: rgba(34, 197, 94, 0.3);
  left: -160px;
  bottom: -120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.96), rgba(3, 7, 18, 0.82));
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.logo-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #22c55e);
  box-shadow: 0 0 24px rgba(124, 58, 237, 0.8);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #22c55e);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(15, 23, 42, 0.9);
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: #e4e4e7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease,
    color 0.18s ease;
  font-weight: 600;
  font-size: 14px;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.55);
}

.btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border-color: rgba(139, 92, 246, 0.65);
  color: #f9fafb;
  box-shadow: 0 18px 45px rgba(124, 58, 237, 0.55);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #4c1d95);
  box-shadow: 0 22px 60px rgba(124, 58, 237, 0.7);
}

.btn-secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.5);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--muted);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 0.8);
  border-color: var(--border-subtle);
  color: var(--text);
}

.hero {
  padding-top: 84px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 52px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d4d4d8;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.9);
}

.hero h1 {
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.06em;
  margin: 18px 0 16px;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #c4b5fd 40%, #a7f3d0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 20px;
}

.hero-trust {
  color: var(--muted);
  font-size: 14px;
}

.glass {
  background:
    linear-gradient(135deg, rgba(148, 163, 184, 0.13), rgba(15, 23, 42, 0.98)),
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.14), transparent 55%);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.dashboard-card {
  padding: 26px 24px 24px;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.small-label {
  color: var(--muted);
  font-size: 12px;
  margin: 0 0 4px;
}

.dashboard-top h3 {
  margin: 0;
  font-size: 18px;
}

.status-badge,
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.16);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #bbf7d0;
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.9);
}

.lead-card {
  margin-top: 12px;
  padding: 16px 16px 14px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.3);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.lead-card p {
  margin: 0;
}

.lead-card strong {
  display: block;
  margin: 4px 0 6px;
}

.lead-pill {
  font-size: 13px;
  color: #bbf7d0;
}

.graph-block {
  margin-top: 18px;
  padding: 16px 16px 18px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle at top, rgba(124, 58, 237, 0.2), rgba(15, 23, 42, 0.95));
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.graph-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.graph-header strong {
  font-size: 15px;
}

.bars {
  height: 160px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: flex-end;
  margin-top: 12px;
}

.bars span {
  border-radius: 999px 999px 10px 10px;
  background: linear-gradient(180deg, #a855f7, #312e81);
  box-shadow: 0 18px 35px rgba(124, 58, 237, 0.6);
}

.mini-panels {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.mini-panel {
  flex: 1;
  padding: 14px 14px 12px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.mini-panel p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.mini-panel strong {
  font-size: 16px;
}

.mini-panel span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.chatbot-widget-preview {
  margin-top: 18px;
  padding: 12px;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.45);
  display: flex;
  align-items: center;
  gap: 10px;
  background: radial-gradient(circle at left, rgba(124, 58, 237, 0.28), rgba(15, 23, 42, 0.96));
}

.chatbot-widget-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(191, 219, 254, 0.35);
  font-size: 13px;
}

.chatbot-widget-text p {
  margin: 0;
  font-size: 13px;
}

.chatbot-widget-text .muted {
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading.compact {
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 14px 0 10px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-item {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.32);
  background: radial-gradient(circle at top left, rgba(148, 163, 184, 0.16), rgba(15, 23, 42, 0.96));
}

.trust-item span {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.problem-solution {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.problem-solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.problem-card,
.solution-card {
  padding: 26px 24px 24px;
}

.problem-card h3,
.solution-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
}

.bullet-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.bullet-list li {
  position: relative;
  padding-left: 18px;
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8b5cf6, #22c55e);
  box-shadow: 0 0 16px rgba(124, 58, 237, 0.8);
}

.cards-grid {
  display: grid;
  gap: 22px;
}

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

.feature-card {
  padding: 26px 24px 22px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.6);
  color: #c4b5fd;
  font-weight: 700;
  font-size: 13px;
}

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

.feature-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 14px;
  color: #e5e7eb;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 22px 20px;
}

.timeline-item > span {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 18px;
  font-weight: 600;
}

.timeline-item h3 {
  margin: 4px 0 8px;
  font-size: 18px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
}

.chatbot-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: center;
}

.sales-points {
  display: grid;
  gap: 14px;
}

.sales-point {
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
}

.sales-point strong {
  display: block;
  margin-bottom: 6px;
}

.sales-point span {
  color: var(--muted);
  font-size: 14px;
}

.chatbot-card {
  padding: 22px 22px 18px;
  border-radius: 32px;
}

.chatbot-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.chatbot-header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.chat-window {
  min-height: 290px;
  max-height: 290px;
  overflow-y: auto;
  padding: 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.32), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(129, 140, 248, 0.55);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: #4b5563 #020617;
}

.chat-window::-webkit-scrollbar {
  width: 6px;
}

.chat-window::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 999px;
}

.message {
  max-width: 84%;
  padding: 11px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-break: break-word;
}

.message.bot {
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.55);
  color: #e5e7eb;
  border-radius: 18px 18px 18px 6px;
}

.message.bot.typing {
  width: fit-content;
  min-width: 62px;
  padding: 12px 14px;
}

.typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(229, 231, 235, 0.92);
  opacity: 0.35;
  animation: typing-dot-pulse 1.2s ease-in-out infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.16s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes typing-dot-pulse {
  0%,
  80%,
  100% {
    transform: translateY(0) scale(0.9);
    opacity: 0.35;
  }
  40% {
    transform: translateY(-2px) scale(1);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typing-dot {
    animation: none;
    opacity: 0.65;
  }
}

.message.user {
  margin-left: auto;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  border: 1px solid rgba(129, 140, 248, 0.8);
  color: #f9fafb;
  border-radius: 18px 18px 6px 18px;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.suggestion-chip {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  cursor: pointer;
  font-size: 13px;
}

.chat-input-wrap {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.chat-input-wrap input {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.96);
  color: #f9fafb;
  padding: 11px 14px;
  outline: none;
}

.chat-input-wrap input::placeholder {
  color: #6b7280;
}

.chat-helper {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: rgba(191, 219, 254, 0.65);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
}

.project-thumb {
  height: 170px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.project-thumb-beauty {
  background-image: linear-gradient(135deg, #0f172a, #4b5563);
}

.project-thumb-services {
  background-image: linear-gradient(135deg, #020617, #334155);
}

.project-thumb-restaurant {
  background-image: linear-gradient(135deg, #111827, #f97316);
}

.project-meta {
  padding: 18px 18px 16px;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #e5e7eb;
}

.project-meta h3 {
  margin: 10px 0 8px;
  font-size: 18px;
}

.project-meta p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}

.project-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.projects-cta {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.why-card {
  padding: 22px 20px 18px;
}

.why-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.testimonial-card {
  padding: 22px 20px 18px;
}

.testimonial-card blockquote {
  margin: 0 0 14px;
  font-size: 14px;
  color: #e5e7eb;
}

.testimonial-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.testimonial-role {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  width: 100%;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.96);
  padding: 14px 16px;
  color: inherit;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}

.faq-item span {
  font-size: 14px;
}

.faq-icon {
  font-size: 20px;
  line-height: 1;
}

.faq-content {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
}

.faq-content p {
  margin: 10px 0 4px;
  font-size: 14px;
  color: var(--muted);
}

.faq-item.is-open .faq-content {
  max-height: 260px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.quote-panel {
  border-radius: 36px;
  padding: 32px 28px 28px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: flex-start;
}

.quote-copy h2 {
  margin: 14px 0 10px;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.06;
}

.quote-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.quote-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.quote-benefits span {
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 13px;
}

.quote-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 14px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 13px;
}

label span {
  color: #e4e4e7;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.98);
  color: #f9fafb;
  padding: 11px 14px;
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 140px;
}

input::placeholder,
textarea::placeholder {
  color: #6b7280;
}

.full {
  grid-column: 1 / -1;
}

.full-width {
  width: 100%;
}

.form-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.form-note.success {
  color: #bbf7d0;
}

.site-footer {
  padding: 26px 0 40px;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(3, 7, 18, 0.98);
}

.footer-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo {
  margin-bottom: 10px;
}

.footer-content p {
  margin: 0;
  max-width: 440px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 36px;
  font-size: 14px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--muted);
}

.footer-links strong {
  color: #e5e7eb;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.footer-links a {
  font-size: 14px;
}

.page-hero {
  padding-top: 72px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.page-hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(32px, 3.6vw, 46px);
  letter-spacing: -0.05em;
}

.page-hero p {
  margin: 0 0 16px;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 26px;
  align-items: flex-start;
}

.content-block {
  padding: 22px 20px 18px;
}

.content-block h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

.content-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.stacked-list {
  display: grid;
  gap: 12px;
}

.stacked-item {
  padding: 16px 14px 12px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.96);
}

.stacked-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.stacked-item span {
  font-size: 14px;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  padding: 18px 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.96);
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.blog-meta span {
  font-size: 12px;
  color: var(--muted);
}

.blog-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
}

.blog-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.blog-card a {
  font-size: 13px;
  color: #e5e7eb;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 26px;
}

.contact-details {
  padding: 22px 20px 18px;
}

.contact-details p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

.contact-lines {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  padding: 3px 8px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.chat-floating {
  position: fixed;
  inset-inline-end: 24px;
  inset-block-end: 24px;
  z-index: 70;
}

.chat-launcher {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background:
    radial-gradient(circle at top left, rgba(148, 163, 184, 0.22), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  cursor: pointer;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
}

.chat-launcher-dot {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #8b5cf6, #22c55e);
  box-shadow: 0 0 22px rgba(124, 58, 237, 0.9);
  font-size: 12px;
  font-weight: 600;
}

.chat-launcher-label {
  font-size: 13px;
  font-weight: 500;
}

.chat-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.78), rgba(3, 7, 18, 0.96));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
  z-index: 60;
}

.chat-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.chat-popup {
  position: fixed;
  inset-inline-end: 24px;
  inset-block-end: 88px;
  width: 360px;
  max-height: 520px;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 70;
}

.chat-popup.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.chat-popup-inner {
  border-radius: 30px;
  padding: 16px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chat-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.chat-popup-header-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-popup-header-title strong {
  font-size: 14px;
}

.chat-popup-header-title span {
  font-size: 12px;
  color: var(--muted);
}

.chat-popup-close {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.98);
  color: #9ca3af;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 14px;
}

.chat-popup-footer {
  margin-top: 6px;
  font-size: 11px;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero-grid,
  .chatbot-grid,
  .quote-panel,
  .page-hero-inner,
  .content-grid,
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .projects-grid,
  .why-grid,
  .testimonials-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-grid.three,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav {
    height: auto;
    padding: 14px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset-inline: 20px;
    top: 100%;
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(2, 6, 23, 0.98);
    flex-direction: column;
    opacity: 0;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-cta {
    margin-left: auto;
  }

  .section {
    padding: 72px 0;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .chat-input-wrap {
    grid-template-columns: minmax(0, 1fr);
  }

  .quote-panel,
  .feature-card,
  .chatbot-card,
  .dashboard-card {
    padding: 20px 18px 18px;
  }

  .projects-grid,
  .why-grid,
  .testimonials-grid,
  .blog-grid,
  .trust-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-content,
  .footer-links {
    flex-direction: column;
  }

  .page-hero {
    padding-top: 40px;
  }

  .chat-floating {
    inset-inline-end: 16px;
    inset-block-end: 16px;
  }

  .chat-popup {
    inset-inline: 12px;
    inset-block-end: 82px;
    width: auto;
    max-height: 72vh;
  }
}

