:root {
  --bg-dark: #030213;
  --bg-hero-1: rgba(29, 97, 152, 0.8);
  --bg-hero-2: #1d6198;
  --text-main: #111827;
  --text-muted: #717182;
  --text-soft: #9ca3af;
  --border-soft: rgba(0, 0, 0, 0.1);
  --chip-blue: #dbeafe;
  --chip-green: #dcfce7;
  --chip-purple: #e9d5ff;
  --chip-orange: #ffedd4;
  --card-bg: #ffffff;
  --pricing-bg: #f5f6fa;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

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

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

/* Layout helpers */

.wrapper {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }
}

.text-center {
  text-align: center;
}
.text-muted {
  color: var(--text-muted);
}
.text-soft {
  color: var(--text-soft);
}
.text-white {
  color: #ffffff;
}

.small {
  font-size: 0.8rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 2rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease,
    border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}

.btn-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
  border-color: var(--bg-dark);
}

.btn-dark:hover {
  background-color: #111322;
  transform: translateY(-1px);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--bg-dark);
  border-color: rgba(0, 0, 0, 0.2);
}

.btn-outline-dark:hover {
  background-color: #f3f4f6;
}

/* Badges / chips */

.badge {
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.badge-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.chip-sm {
  border-radius: 999px;
}

.chip-blue {
  background-color: var(--chip-blue);
  color: #1d4ed8;
}

.chip-purple {
  background-color: var(--chip-purple);
  color: #6b21a8;
}

/* Navbar */

.navbar {
  border-bottom: 1px solid var(--border-soft);
  padding: 0.9rem 0;
}

.navbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-block {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  background-color: var(--bg-dark);
  margin-right: 0.5rem;
}

/* Hero */

.hero {
  background: linear-gradient(180deg, var(--bg-hero-1), var(--bg-hero-2));
  color: #ffffff;
}

.hero h1 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 640px;
}

/* Headings */

.section-title {
  font-size: 1.4rem;
  font-weight: 700;
}

/* Grid */

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Cards */

.card {
  background-color: var(--card-bg);
  border-radius: 0.875rem;
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
}

.card-dark {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: #ffffff;
}

.shadow-soft {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

/* Icons */

.icon-step {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}

.icon-step img {
  width: 64px;
  height: auto;
}

/* Check list */

.list-check {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-check li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
}

.icon-check svg {
  width: 16px;
  height: 16px;
}

/* Pricing section */

.pricing-bg {
  background-color: var(--pricing-bg);
}

.price-value {
  font-size: 1.7rem;
  font-weight: 700;
}

/* PoC highlight (Figma-style emphasis) */

.poc-highlight {
  background: linear-gradient(180deg, #0d0d1a 0%, #050510 100%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45),
    0 0 25px rgba(255, 255, 255, 0.05) inset;
  transform: translateY(-6px);
  transition: all 0.25s ease;
}

@media (min-width: 992px) {
  .poc-highlight {
    transform: translateY(-10px);
  }
}

.poc-highlight:hover {
  transform: translateY(-14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(255, 255, 255, 0.08) inset;
}

.poc-highlight .badge-dark {
  background: linear-gradient(90deg, #00ff85, #00c76f);
  color: #000;
  font-weight: 600;
}

.poc-highlight .btn-outline-light {
  font-weight: 600;
  border-width: 2px;
}

/* FAQ + Footer */

.faq-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.9rem;
  margin: 0;
}

.footer-dark {
  background-color: var(--bg-dark);
  color: #ffffff;
}

.footer-title {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.85rem;
}

.footer-links li + li {
  margin-top: 0.3rem;
}

.footer-links a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.logo-svg {
  height: 32px;
  width: auto;
  display: inline-block;
}

.logo-block {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/*for cta*/
.hero .text-center,
.hero .text-center h2 {
  text-align: center !important;
}

/* Center the CTA paragraph block inside the hero */
.hero .text-center p {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}


/* Make pricing buttons span the full width of the card */
.card > .btn,
.card .btn.w-100 {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 0.75rem;
}


