:root {
  --bg: #faf5ff;
  --bg-white: #ffffff;
  --bg-soft: #eef2ff;
  --bg-dark: #0f0c29;
  --bg-dark-2: #1a1a2e;
  --text: #0f172a;
  --text-secondary: #475569;
  --muted: #64748b;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --cyan: #06b6d4;
  --warm: #f59e0b;
  --border: rgba(99, 102, 241, 0.12);
  --shadow: 0 18px 50px rgba(15, 12, 41, 0.08);
  --radius: 18px;
  --font: "Inter", system-ui, sans-serif;
  --display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--accent);
  color: white;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 8px 30px rgba(15, 12, 41, 0.06);
}

.header-accent {
  height: 3px;
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.7rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
}

.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.25s ease;
}

.nav a:not(.btn):hover {
  color: var(--accent);
}

.nav a:not(.btn):hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: white;
  border-radius: 10px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.1);
  color: #5b21b6;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: #ddd6fe;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 5rem;
  background: linear-gradient(180deg, #ffffff 0%, #faf5ff 45%, #eef2ff 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(99, 102, 241, 0.16) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -120px;
  right: -40px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.18) 0%, transparent 70%);
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  bottom: -80px;
  left: -60px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}

.hero h1,
.section-head h2,
.about h2,
.contact h2 {
  font-family: var(--display);
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
  max-width: 14ch;
}

.hero-product .hero-inner {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.hero-product .hero-copy .badge {
  display: inline-flex;
  margin-bottom: 1rem;
}

.hero-product h1 {
  max-width: none;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 40%, #06b6d4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead,
.section-lead,
.about p,
.contact p,
.product-card p,
.platform-card p,
.footer-brand p {
  color: var(--text-secondary);
}

.lead {
  font-size: 1.125rem;
  max-width: 52ch;
  margin-bottom: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  list-style: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-points li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-mark {
  width: min(340px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #f5f3ff 62%, #e0e7ff 100%);
  box-shadow:
    0 30px 80px rgba(99, 102, 241, 0.18),
    0 0 0 12px rgba(255, 255, 255, 0.7);
}

.hero-mark img {
  width: 78%;
  height: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  width: fit-content;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.88rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white;
  box-shadow: 0 10px 24px rgba(99, 102, 241, 0.28);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-outline {
  background: white;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: rgba(99, 102, 241, 0.35);
}

.btn-ghost,
.btn-white {
  font-weight: 700;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-secondary);
}

.btn-white {
  background: white;
  color: #1e1b4b;
}

.products,
.platform,
.about {
  padding: 5rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.section-head h2,
.about h2,
.contact h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 800;
  margin-bottom: 0.7rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card,
.platform-card,
.about-panel {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-card {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(99, 102, 241, 0.14);
}

.product-card.featured {
  border-color: rgba(99, 102, 241, 0.28);
}

.product-card.soon {
  border-style: dashed;
}

.product-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.icon-tile {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
}

.icon-tile svg {
  width: 22px;
  height: 22px;
}

.icon-tile-home {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.icon-tile-books {
  background: linear-gradient(135deg, #06b6d4, #6366f1);
}

.icon-tile-hms {
  background: linear-gradient(135deg, #94a3b8, #64748b);
}

.icon-tile-auto3s {
  background: linear-gradient(135deg, #0b5fff, #6366f1);
}

.icon-tile-cyan {
  background: linear-gradient(135deg, #06b6d4, #10b981);
}

.icon-tile-warm {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
}

.badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: #5b21b6;
}

.badge.muted {
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
}

.product-card h3,
.platform-card h3 {
  font-family: var(--display);
  font-size: 1.25rem;
}

.card-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.card-list li {
  padding-left: 1.1rem;
  position: relative;
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.product-card .btn {
  margin-top: auto;
}

.platform {
  background: linear-gradient(180deg, #faf5ff 0%, #eef2ff 50%, #f0f9ff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.platform-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about p + p {
  margin-top: 1rem;
}

.about-panel {
  padding: 0.4rem 1.5rem;
}

.about-stat {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--border);
}

.page-dark .about-stat {
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
  border-bottom: none;
}

.about-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
}

.about-stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 45%, #1a1a2e 100%);
  color: white;
  text-align: center;
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact h2 {
  max-width: 18ch;
}

.contact p {
  color: rgba(248, 250, 252, 0.74);
  max-width: 46ch;
  margin: 0.75rem 0 1.5rem;
}

.footer {
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  color: white;
  padding: 3.2rem 0 1.6rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, #6366f1, #8b5cf6, #06b6d4, #f59e0b) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.logo-plate {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.logo-plate img {
  height: 36px;
  width: auto;
}

.footer h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #c4b5fd;
  margin-bottom: 0.85rem;
}

.footer a,
.footer span {
  display: block;
  color: rgba(226, 232, 240, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.footer a:hover {
  color: #c4b5fd;
}

.footer-brand p {
  color: rgba(203, 213, 225, 0.78);
  max-width: 32ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.85rem;
}

.footer-bottom a {
  display: inline;
  margin: 0;
}

@media (max-width: 960px) {
  .hero-inner,
  .about-inner,
  .platform-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner,
  .about-inner {
    gap: 2rem;
  }

  .platform-grid,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 4vw 1.2rem;
    gap: 0.35rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.2rem;
  }

  .nav .nav-cta {
    width: 100%;
    margin-top: 0.4rem;
  }

  .header {
    position: sticky;
  }

  .header-inner {
    position: relative;
  }

  .hero,
  .products,
  .platform,
  .about {
    padding: 3.5rem 0;
  }

  .hero-inner,
  .about-inner,
  .product-grid,
  .platform-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-mark {
    width: min(240px, 70vw);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

.lead a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.lead a:hover {
  text-decoration: underline;
}

.product-hint {
  margin-top: 0.75rem;
  color: #5b21b6;
  font-weight: 600;
}

.contact-page {
  padding: 0 0 5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: start;
}

.contact-form,
.contact-aside {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 1.75rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 600;
}

.optional {
  color: var(--muted);
  font-weight: 500;
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: transparent;
}

.form-status {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
}

.form-status.success {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.form-status.pending {
  background: rgba(99, 102, 241, 0.1);
  color: #4338ca;
}

.contact-aside {
  padding: 1.75rem;
}

.contact-aside h2 {
  font-family: var(--display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.contact-aside p {
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.contact-aside a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.btn[disabled] {
  opacity: 0.7;
  cursor: wait;
  transform: none;
}

@media (max-width: 720px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.page-dark {
  background: #0b091c;
  color: #f1f5f9;
}

.page-dark .header {
  background: rgba(11, 9, 28, 0.88);
}

.page-dark .header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.28);
}

.page-dark .nav a {
  color: rgba(241, 245, 249, 0.78);
}

.page-dark .nav a:not(.btn):hover {
  color: #c4b5fd;
}

.page-dark .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.page-dark .nav-toggle span {
  background: #f8fafc;
}

.page-dark .header .logo-plate {
  margin-bottom: 0;
  padding: 4px 10px;
}

.hero-dark {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 42%, #1a1a2e 100%);
}

.hero-dark-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-dark-inner-simple {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.hero-dark h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0.9rem 0 1.1rem;
}

.hero-dark .lead {
  color: rgba(248, 250, 252, 0.78);
  max-width: 48ch;
}

.hero-dark .badge {
  display: inline-flex;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.28);
}

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

.section-dark {
  padding: 4.5rem 0;
  background: #0b091c;
}

.section-mid {
  padding: 4.5rem 0;
  background: linear-gradient(180deg, #12102a 0%, #0f172a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-dark .section-head h2,
.page-dark .about h2,
.page-dark .contact h2 {
  color: #f8fafc;
}

.page-dark .section-lead,
.page-dark .platform-card p,
.page-dark .feature-copy p,
.page-dark .step-card p {
  color: rgba(203, 213, 225, 0.82);
}

.page-dark .badge.muted {
  background: rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
}

.page-dark .product-card,
.page-dark .about-panel {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.page-dark .product-card h3,
.page-dark .about-stat strong {
  color: #f8fafc;
}

.page-dark .product-card p,
.page-dark .card-list,
.page-dark .about-stat span {
  color: rgba(203, 213, 225, 0.82);
}

.page-dark .product-card.featured {
  border-color: rgba(99, 102, 241, 0.4);
}

.page-dark .product-card.soon {
  border-color: rgba(148, 163, 184, 0.35);
}

.page-dark .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
}

.page-dark .hero-points {
  color: rgba(226, 232, 240, 0.75);
}

.page-dark .hero-mark {
  background: radial-gradient(circle at 50% 40%, #ffffff 0%, #ede9fe 62%, #c7d2fe 100%);
  box-shadow: 0 30px 80px rgba(99, 102, 241, 0.28), 0 0 0 12px rgba(255, 255, 255, 0.12);
}

.page-dark .contact-form,
.page-dark .contact-aside {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.page-dark .form-row label,
.page-dark .contact-aside h2 {
  color: #f1f5f9;
}

.page-dark .form-row input,
.page-dark .form-row textarea {
  background: #0f172a;
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.14);
}

.page-dark .optional {
  color: #94a3b8;
}

.page-dark .contact-page {
  background: transparent;
}

.hero-dark .hero-visual {
  display: flex;
  justify-content: center;
}

.page-dark .platform-card,
.page-dark .feature-copy {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.page-dark .platform-card h3,
.page-dark .feature-copy h3,
.page-dark .step-card h3 {
  color: #f8fafc;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1rem;
  list-style: none;
}

.check-grid li,
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.check-grid li::before,
.check-list li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.05rem;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent), var(--cyan));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  line-height: 1;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.step-list {
  display: grid;
  gap: 1rem;
  position: relative;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.15rem 1.25rem;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.step-card:nth-child(2) .step-num { background: linear-gradient(135deg, #06b6d4, #6366f1); }
.step-card:nth-child(3) .step-num { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.step-card:nth-child(4) .step-num { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.step-card:nth-child(5) .step-num { background: linear-gradient(135deg, #10b981, #06b6d4); }

.pricing {
  padding: 4.5rem 0 5rem;
  background: #0b091c;
}

.pricing-card {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding: 2rem;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.16), rgba(15, 23, 42, 0.9));
  border: 1px solid rgba(165, 180, 252, 0.22);
}

.pricing-card h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card > div > p {
  color: rgba(203, 213, 225, 0.85);
  margin-bottom: 1.1rem;
}

.pricing-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.4rem;
  border-radius: 16px;
  background: rgba(15, 12, 41, 0.55);
  text-align: center;
}

.price-label {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c4b5fd;
  font-weight: 700;
}

.price-value {
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.pricing-cta .btn {
  width: 100%;
}

.app-mockup {
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 16px;
  padding: 3px;
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.35), 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: rotateY(-4deg) rotateX(2deg);
  transform-style: preserve-3d;
}

.app-frame {
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-bottom: 1px solid #1e293b;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.red { background: #ef4444; }
.mock-dot.amber { background: #f59e0b; }
.mock-dot.green { background: #22c55e; }

.mock-url {
  flex: 1;
  height: 22px;
  border-radius: 6px;
  background: #1e293b;
  margin-left: 8px;
}

.mock-body {
  display: flex;
  min-height: 300px;
}

.mock-side {
  width: 52px;
  background: #1e293b;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.mock-nav {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #334155;
}

.mock-nav.active {
  background: #6366f1;
}

.mock-main {
  flex: 1;
  padding: 14px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.mock-kpi {
  background: #1e293b;
  border-radius: 10px;
  padding: 8px 10px;
  border-left: 3px solid #6366f1;
}

.mock-kpi:nth-child(2) { border-left-color: #06b6d4; }
.mock-kpi:nth-child(3) { border-left-color: #10b981; }
.mock-kpi:nth-child(4) { border-left-color: #8b5cf6; }

.mock-kpi span {
  display: block;
  color: #94a3b8;
  font-size: 0.62rem;
}

.mock-kpi strong {
  color: white;
  font-size: 0.92rem;
}

.mock-charts {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 8px;
}

.mock-panel {
  background: #1e293b;
  border-radius: 10px;
  padding: 10px;
}

.mock-panel-label {
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.mock-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 88px;
}

.mock-bars i {
  flex: 1;
  display: block;
  border-radius: 3px 3px 0 0;
  background: #6366f1;
  opacity: 0.85;
}

.mock-bars i:nth-child(3n) { background: #8b5cf6; }
.mock-bars i:nth-child(3n+2) { background: #06b6d4; }

.mock-table {
  margin-top: 8px;
  background: #1e293b;
  border-radius: 10px;
  padding: 10px;
}

.mock-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid #0f172a;
  color: #cbd5e1;
  font-size: 0.68rem;
}

.mock-row:last-child {
  border-bottom: none;
}

.mock-status {
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.62rem;
}

.mock-status.done { background: rgba(16, 185, 129, 0.2); color: #34d399; }
.mock-status.live { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.mock-status.wait { background: rgba(245, 158, 11, 0.2); color: #fbbf24; }

.mock-soon {
  position: relative;
}

.mock-soon::after {
  content: "Coming soon";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.45);
  color: white;
  font-weight: 800;
  letter-spacing: 0.04em;
  border-radius: 14px;
}

@media (max-width: 960px) {
  .hero-dark-inner,
  .pricing-card,
  .feature-split {
    grid-template-columns: 1fr;
  }

  .app-mockup {
    margin: 0 auto;
    transform: none;
  }
}

@media (max-width: 720px) {
  .check-grid,
  .mock-kpis,
  .mock-charts {
    grid-template-columns: 1fr 1fr;
  }

  .mock-kpis {
    grid-template-columns: 1fr 1fr;
  }

  .page-dark .nav.is-open {
    background: rgba(15, 12, 41, 0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .product-card,
  .nav a::after,
  .app-mockup {
    transition: none;
  }

  .product-card:hover,
  .btn:hover,
  .app-mockup {
    transform: none;
  }
}
