:root {
  --bg: #07111f;
  --bg-2: #0f172a;
  --surface: #ffffff;
  --surface-soft: #f8fafc;
  --text: #0f172a;
  --muted: #64748b;
  --white: #ffffff;
  --line: rgba(148, 163, 184, 0.22);
  --blue: #2563eb;
  --blue-2: #60a5fa;
  --cyan: #38bdf8;
  --shadow: 0 24px 80px rgba(2, 6, 23, 0.18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--surface);
}

body::selection {
  background: rgba(37, 99, 235, 0.18);
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 17, 31, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(1120px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

.brand strong {
  color: var(--blue-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--blue);
  margin-left: 4px;
}

.nav-links .nav-cta:hover {
  background: #1d4ed8;
}

.nav-toggle,
.nav-menu-button {
  display: none;
}

.hero-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(37, 99, 235, 0.44), transparent 30%),
              linear-gradient(135deg, #020617 0%, #0f172a 50%, #111827 100%);
  padding: 92px 0 84px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.2s ease;
}

.primary-btn {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), #1d4ed8);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.primary-btn.small {
  min-height: 42px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 14px;
}

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-row span {
  color: #dbeafe;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(15, 23, 42, 0.72);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.panel-header,
.panel-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  margin-right: 10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.12);
}

.panel-header {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.system-preview {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 14px;
}

.preview-icon,
.download-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25);
}

.system-preview strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 17px;
}

.system-preview p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 14px;
}

.panel-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-footer strong {
  color: var(--white);
}

.section {
  padding: 86px 0;
}

.muted-section {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

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

.section-heading h2,
.split-layout h2,
.download-copy h2,
.cta-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.section-heading p:not(.eyebrow),
.section-text,
.download-copy p,
.cta-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.feature-card,
.solution-card,
.process-step,
.download-card,
.cta-card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.feature-card {
  padding: 26px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--blue);
  background: #eff6ff;
  font-weight: 900;
}

.feature-card h3,
.process-step h3,
.download-card h3,
.solution-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
}

.feature-card p,
.process-step p,
.download-card p,
.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.check-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #334155;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  font-size: 13px;
}

.solution-stack {
  display: grid;
  gap: 18px;
}

.solution-card {
  padding: 28px;
}

.solution-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.solution-card.highlight {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-color: transparent;
}

.solution-card.highlight h3,
.solution-card.highlight p {
  color: var(--white);
}

.solution-card.highlight p {
  color: #cbd5e1;
}

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

.process-step {
  padding: 24px;
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: var(--white);
  background: var(--text);
  font-weight: 900;
}

.download-section {
  color: var(--white);
  background: linear-gradient(135deg, #020617, #0f172a);
}

.download-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  align-items: start;
}

.download-copy h2,
.cta-card h2 {
  color: var(--white);
}

.download-copy p {
  color: #cbd5e1;
}

.download-cards {
  display: grid;
  gap: 18px;
}

.download-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.download-card h3 {
  color: var(--white);
}

.download-card p {
  color: #cbd5e1;
  margin-bottom: 16px;
}

.cta-section {
  padding: 72px 0;
  background: var(--surface-soft);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 36px;
  color: var(--white);
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  border: 0;
}

.cta-card p {
  max-width: 680px;
  margin-bottom: 0;
  color: #dbeafe;
}

.footer {
  color: #cbd5e1;
  background: #020617;
  padding: 30px 0 20px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.footer-brand strong {
  color: var(--white);
  display: block;
}

.footer-brand p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 24px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  font-size: 13px;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .download-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .navbar {
    min-height: 72px;
  }

  .brand {
    font-size: 18px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .nav-menu-button {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-menu-button span {
    width: 28px;
    height: 3px;
    border-radius: 999px;
    background: var(--white);
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero-section,
  .section {
    padding: 64px 0;
  }

  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .download-card {
    grid-template-columns: 1fr;
  }

  .cta-card,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .container,
  .navbar,
  .copyright {
    width: min(100% - 28px, 1120px);
  }

  .hero-copy h1 {
    font-size: 40px;
  }

  .hero-panel,
  .feature-card,
  .solution-card,
  .process-step,
  .download-card,
  .cta-card {
    border-radius: 20px;
  }

  .system-preview {
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}


/* Clean professional version: removes repeated sections and tightens layout */
.focus-list {
  display: grid;
  gap: 14px;
}

.focus-list > div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.focus-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 17px;
}

.focus-list p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 14px;
}

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

.download-heading h2,
.download-heading p {
  color: var(--white);
}

.download-heading p {
  color: #cbd5e1;
}

.clean-downloads {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.footer-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-contact {
  margin: 0;
  color: #94a3b8;
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 760px) {
  .clean-downloads {
    grid-template-columns: 1fr;
  }
  .footer-clean {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Pricing page and enhanced homepage sections */
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.25), transparent 32%),
              linear-gradient(135deg, #020617 0%, #0f172a 54%, #1e3a8a 100%);
  padding: 86px 0 76px;
}

.page-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 42px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  max-width: 840px;
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow),
.quote-card p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.75;
}

.quote-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(16px);
}

.quote-card span {
  display: block;
  color: #dbeafe;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  margin: 10px 0 8px;
  color: var(--white);
  font-size: 48px;
  letter-spacing: -0.05em;
}

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

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
}

.price-card-top span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #eff6ff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.18;
}

.price-card .price {
  margin: 0;
  color: var(--text);
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-card .timeline {
  display: inline-flex;
  width: fit-content;
  margin: 10px 0 18px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #1e3a8a;
  background: #dbeafe;
  font-size: 14px;
  font-weight: 900;
}

.price-card > p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.price-card ul {
  padding: 0;
  margin: auto 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.featured-price {
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 24px 70px rgba(37, 99, 235, 0.14);
}

.major-price {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-color: rgba(37, 99, 235, 0.2);
}

.addons-layout {
  align-items: start;
}

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

.addons-grid div {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.addons-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.addons-grid strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.note-section {
  background: linear-gradient(135deg, #020617, #0f172a);
}

.note-card {
  padding: 42px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(56, 189, 248, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.note-card h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.note-card p:not(.eyebrow) {
  max-width: 950px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
}

.note-card .primary-btn {
  margin-top: 12px;
}

.pricing-preview-section {
  background: var(--white);
}

.pricing-preview-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 38px;
  border-radius: 30px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(56, 189, 248, 0.28), transparent 38%),
              linear-gradient(135deg, #0f172a, #1e3a8a);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.pricing-preview-card h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.pricing-preview-card p:not(.eyebrow) {
  max-width: 760px;
  color: #dbeafe;
  font-size: 17px;
  line-height: 1.72;
}

.pricing-preview-actions {
  display: grid;
  gap: 14px;
  justify-items: end;
}

.pricing-preview-actions span {
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 800;
  text-align: right;
}

.footer-links-clean {
  justify-content: flex-end;
  flex-wrap: wrap;
}

@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .page-hero-grid,
  .pricing-preview-card {
    grid-template-columns: 1fr;
  }

  .pricing-preview-actions {
    justify-items: start;
  }

  .pricing-preview-actions span {
    text-align: left;
  }
}

@media (max-width: 760px) {
  .page-hero {
    padding: 64px 0;
  }

  .pricing-grid,
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .quote-card,
  .note-card,
  .pricing-preview-card {
    border-radius: 22px;
    padding: 26px;
  }

  .quote-card strong {
    font-size: 40px;
  }
}

/* Boss Reb Systems refreshed single-navigation website */
.centered { margin-left: auto; margin-right: auto; text-align: center; }
.button-reset { border: 0; cursor: pointer; font-family: inherit; }
.secondary-light-btn,
.secondary-dark-btn,
.outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  transition: .2s ease;
}
.secondary-light-btn { color: #0f172a; background: #ffffff; border: 1px solid #dbeafe; }
.secondary-dark-btn { color: var(--white); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); }
.outline-btn { color: var(--blue); background: #ffffff; border: 1px solid rgba(37,99,235,.35); }
.outline-btn:hover,
.secondary-light-btn:hover,
.secondary-dark-btn:hover { transform: translateY(-2px); }
.full { width: 100%; }

.home-hero { padding: 96px 0 92px; }
.dashboard-art { position: relative; min-height: 430px; display: grid; place-items: center; }
.art-window {
  width: min(100%, 470px);
  padding: 18px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 40px 100px rgba(0,0,0,.36);
  backdrop-filter: blur(18px);
}
.art-top { display: flex; gap: 8px; margin-bottom: 18px; }
.art-top span { width: 12px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.45); }
.art-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.metric-card,
.chart-card,
.list-card {
  min-height: 126px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}
.metric-card b { display: block; color: #fff; font-size: 42px; letter-spacing: -.04em; }
.metric-card small { color: #dbeafe; font-weight: 800; }
.chart-card { display: flex; align-items: end; gap: 12px; }
.chart-card span { flex: 1; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, #60a5fa, #2563eb); }
.list-card { display: grid; align-content: center; gap: 12px; }
.list-card i { height: 12px; border-radius: 999px; background: rgba(219,234,254,.8); }
.floating-chip {
  position: absolute;
  color: #082f49;
  background: #ffffff;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(15,23,42,.18);
}
.chip-one { top: 44px; left: 6px; }
.chip-two { top: 114px; right: 6px; }
.chip-three { bottom: 52px; left: 68px; }

.systems-showcase { background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%); }
.systems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.system-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(15,23,42,.07);
  overflow: hidden;
}
.system-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.featured-system { border-color: rgba(37,99,235,.32); box-shadow: 0 28px 80px rgba(37,99,235,.14); }
.system-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 8px 0 18px;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(37,99,235,.22);
}
.system-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.system-card h3 { margin: 8px 0 12px; font-size: 23px; line-height: 1.16; letter-spacing: -.03em; }
.system-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.65; }
.system-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.system-card li { position: relative; padding-left: 24px; color: #334155; font-size: 14px; font-weight: 800; }
.system-card li::before { content: "✓"; position: absolute; left: 0; color: var(--blue); font-weight: 950; }
.system-card .primary-btn,
.system-card .outline-btn { margin-top: auto; }
.custom-card { background: linear-gradient(180deg, #ffffff, #eff6ff); }
.clean-process .process-step { background: #fff; }
.contact-section { background: linear-gradient(135deg, #020617, #0f172a); }
.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 42px;
  border-radius: 30px;
  background: radial-gradient(circle at top right, rgba(96,165,250,.22), transparent 38%), rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.contact-card h2 { margin: 0 0 14px; color: #fff; font-size: clamp(34px, 4vw, 52px); line-height: 1.05; letter-spacing: -.05em; }
.contact-card p:not(.eyebrow) { color: #cbd5e1; font-size: 17px; line-height: 1.75; margin: 0; }
.contact-actions { display: grid; gap: 12px; min-width: 230px; }

/* Modern pricing page */
.pricing-hero-modern {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 28%, rgba(96,165,250,.20), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 82px 0 64px;
}
.pricing-hero-grid { position: relative; display: grid; grid-template-columns: 1fr .95fr; gap: 46px; align-items: center; }
.pricing-hero-copy h1 {
  margin: 0;
  max-width: 680px;
  color: #0f172a;
  font-size: clamp(46px, 7vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
}
.pricing-hero-copy h1 span { color: var(--blue); }
.pricing-hero-copy p:not(.eyebrow) { max-width: 640px; color: #475569; font-size: 18px; line-height: 1.7; }
.fine-print { margin-top: 14px !important; font-size: 14px !important; color: #64748b !important; }
.account-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #dbeafe;
  box-shadow: 0 12px 32px rgba(15,23,42,.06);
}
.account-pill strong { color: #0f172a; }
.account-pill span { color: #2563eb; font-size: 13px; font-weight: 900; }
.pricing-illustration { position: relative; min-height: 390px; display: grid; place-items: center; }
.laptop-card {
  width: min(100%, 520px);
  padding: 18px;
  border-radius: 32px;
  background: #0f172a;
  box-shadow: 0 38px 90px rgba(15,23,42,.22);
  transform: rotate(1deg);
}
.laptop-bar { display: flex; gap: 8px; margin-bottom: 14px; }
.laptop-bar span { width: 11px; height: 11px; border-radius: 999px; background: #64748b; }
.screen-layout {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 14px;
  min-height: 260px;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f8fafc, #eaf2ff);
}
.screen-metric { border-radius: 22px; background: radial-gradient(circle, #60a5fa 0 22%, #dbeafe 23% 100%); }
.screen-lines,
.screen-checks { display: grid; align-content: center; gap: 12px; padding: 18px; border-radius: 20px; background: #fff; }
.screen-lines i,
.screen-checks i { display: block; height: 13px; border-radius: 999px; background: #bfdbfe; }
.screen-chart { display: flex; align-items: end; gap: 10px; padding: 18px; border-radius: 20px; background: #fff; }
.screen-chart b { flex: 1; border-radius: 999px 999px 7px 7px; background: linear-gradient(180deg, #60a5fa, #2563eb); }
.float-card { position: absolute; padding: 10px 13px; border-radius: 999px; color: #1e3a8a; background: #fff; border: 1px solid #dbeafe; font-weight: 950; box-shadow: 0 16px 42px rgba(15,23,42,.12); }
.float-a { top: 30px; left: 10px; } .float-b { right: 4px; top: 120px; } .float-c { left: 56px; bottom: 30px; }

.package-split-block { margin-top: 30px; }
.package-split-block + .package-split-block { margin-top: 46px; }
.package-group-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin: 0 0 22px;
  padding: 24px 28px;
  border: 1px solid #dbeafe;
  border-radius: 26px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 40px rgba(15,23,42,.06);
}
.package-group-heading .eyebrow { margin-bottom: 7px; }
.package-group-heading h3 { margin: 0; color: #0f172a; font-size: 26px; line-height: 1.15; letter-spacing: -.04em; }
.package-group-heading p { max-width: 520px; margin: 0; color: #64748b; line-height: 1.6; font-weight: 650; }
.premium-block {
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(180deg, #f8fbff, #eef6ff);
  border: 1px solid #dbeafe;
}
.premium-heading { background: rgba(255,255,255,.82); }
.package-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.starter-grid {
  grid-template-columns: repeat(3, minmax(250px, 1fr));
}
.premium-grid {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  max-width: 980px;
  margin: 0 auto;
}
.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 26px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}
.featured-package { border-color: rgba(37,99,235,.55); box-shadow: 0 28px 80px rgba(37,99,235,.16); transform: translateY(-10px); }
.premium-card { min-height: 0; padding: 34px; }
.premium-card h3 { font-size: 30px; min-height: auto; }
.premium-card .package-price { font-size: 28px; }
.card-badge { align-self: flex-end; min-height: 26px; padding: 6px 10px; border-radius: 999px; background: #eff6ff; color: #2563eb; font-size: 11px; font-weight: 950; }
.card-badge.solid { color: #fff; background: #2563eb; }
.package-icon { display: grid; place-items: center; width: 62px; height: 62px; margin: 8px 0 14px; border-radius: 22px; font-size: 25px; font-weight: 950; background: #eff6ff; color: #2563eb; }
.package-card h3 {
  min-height: 72px;
  margin: 0 0 14px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -.03em;
}
.package-price {
  margin: 0;
  color: var(--blue);
  font-size: 22px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.04em;
}
.package-card .timeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 18px;
  color: #334155;
  font-size: 14px;
  font-weight: 900;
}
.package-card .timeline::before { content: "◷"; color: currentColor; }
.package-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  flex: 1;
}
.package-card li {
  position: relative;
  padding-left: 23px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}
.package-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--blue); font-weight: 950; }
.package-card button {
  margin-top: 24px;
  min-height: 50px;
}
.color-teal .package-price, .color-teal li::before, .color-teal .package-icon { color: #0891b2; }
.color-teal .package-icon, .color-teal .card-badge { background: #ecfeff; }
.color-purple .package-price, .color-purple li::before, .color-purple .package-icon { color: #7c3aed; }
.color-purple .package-icon, .color-purple .card-badge { background: #f5f3ff; }
.color-gold .package-price, .color-gold li::before, .color-gold .package-icon { color: #b45309; }
.color-gold .package-icon, .color-gold .card-badge { background: #fffbeb; }
.locked-price { color: #64748b !important; filter: blur(.2px); }
.is-guest .package-card { overflow: hidden; }
.is-guest .package-card::after,
.is-approved .package-card::after { display: none; }
.cost-section { padding: 0 0 86px; background: #fff; }
.cost-card { padding: 30px; border-radius: 30px; background: linear-gradient(180deg, #f8fbff, #eef6ff); border: 1px solid #dbeafe; }
.cost-card h2 { margin: 0 0 22px; color: #0f172a; text-align: center; font-size: 30px; letter-spacing: -.04em; }
.cost-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cost-grid article { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.7); }
.cost-icon { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 18px; background: #fff; border: 1px solid #dbeafe; font-size: 24px; }
.cost-grid h3 { margin: 0 0 6px; font-size: 17px; }
.cost-grid p { margin: 0; color: #64748b; line-height: 1.55; font-size: 14px; }
.modern-addons strong.locked-price { color: #64748b !important; }

/* Auth modal */
.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(2,6,23,.68);
  backdrop-filter: blur(10px);
  z-index: 100;
}
.auth-modal.show { display: flex; }
.auth-box {
  position: relative;
  width: min(100%, 480px);
  padding: 30px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(0,0,0,.34);
}
.auth-close { position: absolute; top: 16px; right: 18px; width: 38px; height: 38px; border: 0; border-radius: 999px; background: #eff6ff; color: #0f172a; font-size: 25px; cursor: pointer; }
.auth-logo img { width: 62px; height: 62px; object-fit: contain; }
.auth-box h2 { margin: 12px 0 8px; color: #0f172a; font-size: 34px; letter-spacing: -.05em; }
.auth-box p { margin: 0 0 18px; color: #64748b; line-height: 1.65; }
.auth-form { display: grid; gap: 13px; }
.auth-form label { display: grid; gap: 7px; color: #334155; font-size: 14px; font-weight: 900; }
.auth-form input { width: 100%; height: 48px; padding: 0 14px; border-radius: 14px; border: 1px solid #cbd5e1; font: inherit; }
.auth-form input:focus { outline: 3px solid rgba(37,99,235,.15); border-color: #2563eb; }
.google-btn { min-height: 48px; padding: 0 18px; border-radius: 14px; background: #fff; border: 1px solid #cbd5e1; color: #0f172a; font-weight: 950; }
.auth-message { margin-top: 16px; padding: 12px 14px; border-radius: 14px; font-size: 14px; font-weight: 800; line-height: 1.5; }
.auth-message.info { color: #1e3a8a; background: #dbeafe; }
.auth-message.success { color: #166534; background: #dcfce7; }
.auth-message.warning { color: #92400e; background: #fef3c7; }
.auth-message.error { color: #991b1b; background: #fee2e2; }

@media (max-width: 1180px) {
  .starter-grid,
  .premium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .premium-grid { max-width: none; }
  .featured-package { transform: none; }
  .cost-grid,
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .pricing-hero-grid,
  .contact-card,
  .package-group-heading { grid-template-columns: 1fr; }
  .package-group-heading {
    display: block;
  }
  .pricing-illustration { min-height: 300px; }
  .contact-actions { min-width: 0; }
}
@media (max-width: 760px) {
  .systems-grid,
  .starter-grid,
  .premium-grid,
  .cost-grid { grid-template-columns: 1fr; }
  .premium-block { padding: 18px; }
  .package-card,
  .premium-card { padding: 24px; }
  .premium-card h3 { font-size: 24px; }
  .pricing-hero-modern { padding: 58px 0; }
  .dashboard-art { min-height: 340px; }
  .floating-chip,
  .float-card { display: none; }
  .contact-card { padding: 28px; border-radius: 24px; }
}

.section-heading.centered {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading.centered p:last-child {
  margin-left: auto;
  margin-right: auto;
}
.package-card .outline-btn,
.package-card .primary-btn {
  width: 100%;
}
.package-card .package-price.locked-price {
  font-size: 18px;
  font-weight: 900;
}
