html {
  scroll-padding-top: 5.5rem;
}

#solutions {
  scroll-margin-top: 5.5rem;
}

.hero-bg {
  background-image: url("../images/hero.jpg");
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4.5rem;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  min-width: 0;
}

.site-header-desktop {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.85rem;
  flex: 1;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0.85rem;
}

.site-header-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.35rem;
}

.btn-login {
  white-space: nowrap;
  padding: 0.5rem 0.75rem;
  color: #21B1FF;
  font-weight: 600;
  font-size: 0.9375rem;
}

.btn-login:hover {
  color: #0ea5e9;
}

.btn-demo {
  white-space: nowrap;
  padding: 0.5rem 1rem;
  background: #21B1FF;
  color: #fff;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  box-shadow: 0 10px 15px -3px rgba(33, 177, 255, 0.25);
}

.btn-demo:hover {
  background: #0ea5e9;
}

.site-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4A4A4A;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.site-menu-toggle:hover {
  color: #21B1FF;
}

@media (min-width: 1024px) {
  .site-header-inner {
    height: 5rem;
  }

  .site-header-desktop {
    display: flex;
  }

  .site-menu-toggle,
  .site-mobile-panel {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .site-header-desktop {
    gap: 1.25rem;
  }

  .site-nav {
    gap: 1.1rem;
  }

  .nav-link,
  .nav-dropdown-toggle {
    font-size: 0.9375rem;
  }
}

.nav-link,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  font-size: 0.875rem;
  padding: 0.4rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.nav-link.active,
.mobile-nav-link.active {
  color: #21B1FF;
  font-weight: 600;
}

.nav-link.active span {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-chevron svg {
  width: 16px;
  height: 16px;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  padding: 0.5rem;
  background: #fff;
  border: 1px solid rgb(229 231 235);
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.12);
  z-index: 60;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.85rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.mobile-dropdown-toggle.is-open svg {
  transform: rotate(180deg);
}

.mobile-dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.site-header.is-scrolled {
  background-color: hsla(0, 0%, 100%, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-bottom-color: rgb(229 231 235);
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.form-status.is-error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.form-status.is-info {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.site-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  border-radius: 0.75rem;
  display: block;
  background: transparent;
}

@media (min-width: 640px) {
  .site-logo {
    width: 3.25rem;
    height: 3.25rem;
  }
}

.site-logo-footer {
  background: #fff;
  border-radius: 0.75rem;
}

.brand-name {
  letter-spacing: 0.02em;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .brand-name {
    font-size: 1.5rem;
  }
}

.site-brand .brand-name {
  font-size: 1.35rem;
}

@media (min-width: 1024px) {
  .site-brand .brand-name {
    font-size: 1.5rem;
  }
}

.brand-girja {
  color: #21B1FF;
}

.brand-soft {
  color: #4A4A4A;
}

footer .brand-soft {
  color: #c5c5c5;
}

.hero-accent {
  color: #21B1FF;
}

.text-accent-on-dark {
  color: #21B1FF;
}

:root {
  --brand-blue: #21B1FF;
  --brand-blue-hover: #0b9ae6;
  --brand-blue-deep: #0886cc;
  --brand-blue-soft: #e8f7ff;
  --brand-grey: #4A4A4A;
  --brand-grey-muted: #6b6b6b;
}

body {
  color: var(--brand-grey);
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

.text-gray-900 {
  color: var(--brand-grey);
}

.text-gray-800,
.text-gray-700 {
  color: var(--brand-grey);
}

.text-gray-600 {
  color: var(--brand-grey-muted);
}

.text-primary-600,
.text-primary-700,
.hover\:text-primary-600:hover,
.hover\:text-primary-700:hover,
.text-blue-600,
.text-purple-600,
.text-violet-600,
.text-green-600,
.text-red-600,
.text-indigo-600,
.text-orange-600,
.text-teal-600,
.text-pink-600 {
  color: var(--brand-blue) !important;
}

.text-primary-400,
.text-primary-100 {
  color: #b8e7ff !important;
}

.bg-primary-600,
.hover\:bg-primary-600:hover,
.bg-accent-500,
.hover\:bg-accent-600:hover {
  background-color: var(--brand-blue) !important;
}

.hover\:bg-primary-700:hover {
  background-color: var(--brand-blue-hover) !important;
}

.bg-primary-50,
.hover\:bg-primary-50:hover,
.bg-primary-100,
.bg-blue-50,
.bg-purple-50,
.bg-violet-50,
.bg-green-50,
.bg-red-50,
.bg-indigo-50,
.bg-orange-50,
.bg-teal-50,
.bg-pink-50 {
  background-color: var(--brand-blue-soft) !important;
}

.bg-gray-900,
footer.bg-gray-900 {
  background-color: var(--brand-grey) !important;
}

.bg-gray-800 {
  background-color: #3a3a3a !important;
}

.border-primary-500,
.focus\:border-primary-500:focus,
.focus\:border-primary-600:focus {
  border-color: var(--brand-blue) !important;
}

.focus\:ring-primary-500:focus,
.focus\:ring-2:focus {
  --tw-ring-color: rgba(33, 177, 255, 0.45);
}

.bg-gradient-to-r.from-primary-600,
.bg-gradient-to-r.from-primary-600.to-blue-600,
.from-primary-600.to-blue-600 {
  background-image: linear-gradient(to right, #21B1FF, #4A4A4A) !important;
}

.bg-gradient-to-br.from-gray-900,
.bg-gradient-to-br.from-violet-900,
.bg-gradient-to-br.from-teal-500 {
  background-image: linear-gradient(to bottom right, #4A4A4A, #3a3a3a, #21B1FF) !important;
}

.from-primary-600.to-blue-600.bg-clip-text,
.bg-gradient-to-r.from-primary-600.to-blue-600.bg-clip-text,
.from-violet-300.to-purple-300 {
  background-image: linear-gradient(to right, #21B1FF, #7ad4ff) !important;
}

.text-purple-700,
.hover\:text-purple-700:hover {
  color: var(--brand-grey) !important;
}

.bg-white.text-purple-700,
.bg-white.text-indigo-700,
.bg-white.text-primary-600 {
  color: var(--brand-blue) !important;
}

.crumbs {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 auto 1.25rem;
  max-width: 80rem;
  padding: 6.75rem 1.25rem 0;
}

@media (min-width: 1024px) {
  .crumbs {
    padding-top: 7.25rem;
  }
}

.crumbs a {
  color: #7ad4ff;
}

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

.seo-prose {
  max-width: 48rem;
}

.seo-prose p {
  margin-bottom: 1rem;
  line-height: 1.75;
  color: #4b5563;
}

.seo-prose h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4A4A4A;
  margin: 2rem 0 0.75rem;
}

.seo-prose h3 {
  font-size: 1.125rem;
  font-weight: 650;
  color: #4A4A4A;
  margin: 1.5rem 0 0.5rem;
}

.seo-prose ul {
  margin: 0 0 1rem 1.25rem;
  list-style: disc;
  color: #4b5563;
  line-height: 1.7;
}

.seo-prose a {
  color: #21B1FF;
  font-weight: 600;
}

.seo-prose a:hover {
  text-decoration: underline;
}

.faq-list details {
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.75rem;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: #4A4A4A;
}

.faq-list details p {
  margin-top: 0.75rem;
  color: #4b5563;
  line-height: 1.7;
}

.related-grid a {
  display: block;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  background: #fff;
  color: #4A4A4A;
  font-weight: 600;
}

.related-grid a:hover {
  border-color: #21B1FF;
  color: #21B1FF;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: #21B1FF;
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 0.5rem;
  top: 0.5rem;
}

.client-marquee {
  overflow: hidden;
  width: 100%;
}

.client-track,
.client-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
}

.client-track .client-card,
.client-grid .client-card {
  flex: 0 0 10.5rem;
  width: 10.5rem;
  max-width: 10.5rem;
}

@media (min-width: 768px) {
  .client-track .client-card,
  .client-grid .client-card {
    flex-basis: 12.25rem;
    width: 12.25rem;
    max-width: 12.25rem;
  }
}

@media (min-width: 1024px) {
  .client-track .client-card,
  .client-grid .client-card {
    flex-basis: 13.5rem;
    width: 13.5rem;
    max-width: 13.5rem;
  }
}

.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  min-height: 10.5rem;
  padding: 1rem 0.85rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  font-weight: 650;
  color: #4A4A4A;
  line-height: 1.35;
  font-size: 0.88rem;
}

.client-logo {
  width: 100%;
  height: 4.75rem;
  border-radius: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.7rem;
  flex-shrink: 0;
  background: #fff;
  padding: 0.25rem;
}

.client-logo img {
  max-width: 100%;
  max-height: 4.4rem;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.client-name {
  display: block;
}

.client-collage {
  display: none;
}

.site-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.7rem;
}

.float-btn {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.22);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.float-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.float-btn svg {
  width: 1.7rem;
  height: 1.7rem;
}

.float-whatsapp {
  background: #25d366;
}

.float-chat {
  background: #21B1FF;
}

.chat-panel {
  width: min(22.5rem, calc(100vw - 2rem));
  height: min(28rem, calc(100vh - 8.5rem));
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.22);
  border: 1px solid #e5e7eb;
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chat-panel.is-open {
  display: flex;
}

.chat-head {
  background: #21B1FF;
  color: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.chat-head h2 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0;
}

.chat-head p {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  opacity: 0.92;
}

.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.chat-bubble {
  max-width: 90%;
  padding: 0.65rem 0.8rem;
  border-radius: 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #374151;
}

.chat-bubble a {
  color: #0284c7;
  font-weight: 600;
}

.chat-bubble.is-bot {
  background: #fff;
  border: 1px solid #e5e7eb;
  align-self: flex-start;
}

.chat-bubble.is-user {
  background: #21B1FF;
  color: #fff;
  align-self: flex-end;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 0.85rem 0.5rem;
  background: #f8fafc;
}

.chat-chips button {
  border: 1px solid #d1d5db;
  background: #fff;
  color: #4A4A4A;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.chat-form {
  display: flex;
  gap: 0.4rem;
  padding: 0.7rem;
  border-top: 1px solid #e5e7eb;
  background: #fff;
}

.chat-form input {
  flex: 1;
  border: 1px solid #d1d5db;
  border-radius: 0.65rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.875rem;
}

.chat-form button {
  background: #21B1FF;
  color: #fff;
  border: none;
  border-radius: 0.65rem;
  padding: 0.55rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.chat-form button:focus-visible,
.chat-close:focus-visible,
.float-chat:focus-visible,
.chat-chips button:focus-visible,
.chat-form input:focus-visible {
  outline: 2px solid #1a8fd6;
  outline-offset: 2px;
}

.chat-bot-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.chat-sources {
  margin: 0 0.85rem;
  font-size: 0.7rem;
  color: #6b7280;
}

.chat-sources a {
  color: #1a8fd6;
}

.chat-cta {
  margin: 0 0.85rem 0.2rem;
  display: inline-block;
  background: #21B1FF;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
}

.chat-bubble.is-typing {
  opacity: 0.75;
  font-style: italic;
}

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

@media (max-width: 640px) {
  .chat-panel {
    width: min(100vw - 1.25rem, 22.5rem);
    height: min(70vh, 28rem);
  }
}

.nav-tool-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 0.4rem;
  vertical-align: -0.2em;
}

.nav-tool-icon svg {
  width: 1rem;
  height: 1rem;
}

.sms-erp-page {
  background: #f8fafc;
}

.sms-erp-page .sms-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.45), transparent 42%),
    radial-gradient(circle at 88% 8%, rgba(167, 139, 250, 0.4), transparent 38%),
    radial-gradient(circle at 70% 90%, rgba(251, 146, 60, 0.28), transparent 36%),
    linear-gradient(135deg, #0f172a 0%, #1d4ed8 42%, #0ea5e9 100%);
}

.sms-erp-page .sms-hero-cta {
  background: linear-gradient(90deg, #fbbf24, #f97316);
  color: #111827;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.35);
}

.sms-erp-page .sms-chip {
  border-radius: 1rem;
  padding: 0.9rem 1.15rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.sms-erp-page .sms-chip:nth-child(6n + 1) { background: #e0f2fe; color: #075985; }
.sms-erp-page .sms-chip:nth-child(6n + 2) { background: #ede9fe; color: #5b21b6; }
.sms-erp-page .sms-chip:nth-child(6n + 3) { background: #dcfce7; color: #166534; }
.sms-erp-page .sms-chip:nth-child(6n + 4) { background: #ffedd5; color: #9a3412; }
.sms-erp-page .sms-chip:nth-child(6n + 5) { background: #fce7f3; color: #9d174d; }
.sms-erp-page .sms-chip:nth-child(6n + 6) { background: #fef9c3; color: #854d0e; }

.sms-erp-page .sms-module {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sms-erp-page .sms-module:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.sms-erp-page .sms-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}

.sms-erp-page .sms-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.sms-erp-page .sms-module:nth-child(8n + 1) { background: #f0f9ff; border-color: #bae6fd; }
.sms-erp-page .sms-module:nth-child(8n + 1) .sms-icon { background: #0284c7; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 2) { background: #f5f3ff; border-color: #ddd6fe; }
.sms-erp-page .sms-module:nth-child(8n + 2) .sms-icon { background: #7c3aed; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 3) { background: #ecfdf5; border-color: #a7f3d0; }
.sms-erp-page .sms-module:nth-child(8n + 3) .sms-icon { background: #059669; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 4) { background: #fff7ed; border-color: #fed7aa; }
.sms-erp-page .sms-module:nth-child(8n + 4) .sms-icon { background: #ea580c; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 5) { background: #fdf2f8; border-color: #fbcfe8; }
.sms-erp-page .sms-module:nth-child(8n + 5) .sms-icon { background: #db2777; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 6) { background: #fefce8; border-color: #fde047; }
.sms-erp-page .sms-module:nth-child(8n + 6) .sms-icon { background: #ca8a04; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 7) { background: #eef2ff; border-color: #c7d2fe; }
.sms-erp-page .sms-module:nth-child(8n + 7) .sms-icon { background: #4f46e5; color: #fff; }
.sms-erp-page .sms-module:nth-child(8n + 8) { background: #ecfeff; border-color: #a5f3fc; }
.sms-erp-page .sms-module:nth-child(8n + 8) .sms-icon { background: #0891b2; color: #fff; }

.sms-erp-page .sms-feat {
  border-radius: 0.85rem;
  padding: 0.95rem 1.15rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.sms-erp-page .sms-feat:nth-child(5n + 1) { background: #dbeafe; color: #1e3a8a; }
.sms-erp-page .sms-feat:nth-child(5n + 2) { background: #d1fae5; color: #065f46; }
.sms-erp-page .sms-feat:nth-child(5n + 3) { background: #fae8ff; color: #86198f; }
.sms-erp-page .sms-feat:nth-child(5n + 4) { background: #ffedd5; color: #9a3412; }
.sms-erp-page .sms-feat:nth-child(5n + 5) { background: #e0e7ff; color: #3730a3; }

.sms-erp-page .sms-why:nth-child(1) { background: linear-gradient(180deg, #eff6ff, #fff); border-top: 4px solid #2563eb; }
.sms-erp-page .sms-why:nth-child(2) { background: linear-gradient(180deg, #ecfdf5, #fff); border-top: 4px solid #059669; }
.sms-erp-page .sms-why:nth-child(3) { background: linear-gradient(180deg, #faf5ff, #fff); border-top: 4px solid #7c3aed; }
.sms-erp-page .sms-why:nth-child(4) { background: linear-gradient(180deg, #fff7ed, #fff); border-top: 4px solid #ea580c; }
.sms-erp-page .sms-why:nth-child(5) { background: linear-gradient(180deg, #fdf2f8, #fff); border-top: 4px solid #db2777; }
.sms-erp-page .sms-why:nth-child(6) { background: linear-gradient(180deg, #ecfeff, #fff); border-top: 4px solid #0891b2; }

.sms-erp-page .sms-help:nth-child(5n + 1) { background: #e0f2fe; color: #075985; }
.sms-erp-page .sms-help:nth-child(5n + 2) { background: #ede9fe; color: #5b21b6; }
.sms-erp-page .sms-help:nth-child(5n + 3) { background: #dcfce7; color: #166534; }
.sms-erp-page .sms-help:nth-child(5n + 4) { background: #ffedd5; color: #9a3412; }
.sms-erp-page .sms-help:nth-child(5n + 5) { background: #fce7f3; color: #9d174d; }

.sms-erp-page .sms-badge:nth-child(7n + 1) { background: #2563eb; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 2) { background: #7c3aed; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 3) { background: #059669; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 4) { background: #db2777; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 5) { background: #ea580c; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 6) { background: #0891b2; color: #fff; }
.sms-erp-page .sms-badge:nth-child(7n + 7) { background: #4f46e5; color: #fff; }

.sms-dash {
  background: linear-gradient(145deg, #1e1b4b 0%, #0f766e 52%, #1d4ed8 100%);
  border-radius: 1.25rem;
  padding: 1.25rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.28);
  color: #e2e8f0;
}

.sms-kpi {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.85rem;
  padding: 0.85rem;
}

.sms-kpi:nth-child(4n + 1) { background: rgba(56, 189, 248, 0.22); }
.sms-kpi:nth-child(4n + 2) { background: rgba(167, 139, 250, 0.24); }
.sms-kpi:nth-child(4n + 3) { background: rgba(52, 211, 153, 0.22); }
.sms-kpi:nth-child(4n + 4) { background: rgba(251, 191, 36, 0.22); }

.sms-kpi strong {
  display: block;
  font-size: 1.35rem;
  color: #fff;
  font-weight: 800;
}

.sms-kpi span {
  font-size: 0.72rem;
  color: #e2e8f0;
}

.sms-bar {
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.sms-bar > i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f97316);
}

.sms-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  height: 7rem;
}

.sms-chart b {
  flex: 1;
  border-radius: 0.35rem 0.35rem 0 0;
  min-height: 12%;
}

.sms-chart b:nth-child(6n + 1) { background: linear-gradient(180deg, #38bdf8, #0284c7); }
.sms-chart b:nth-child(6n + 2) { background: linear-gradient(180deg, #c4b5fd, #7c3aed); }
.sms-chart b:nth-child(6n + 3) { background: linear-gradient(180deg, #6ee7b7, #059669); }
.sms-chart b:nth-child(6n + 4) { background: linear-gradient(180deg, #fdba74, #ea580c); }
.sms-chart b:nth-child(6n + 5) { background: linear-gradient(180deg, #f9a8d4, #db2777); }
.sms-chart b:nth-child(6n + 6) { background: linear-gradient(180deg, #fde047, #ca8a04); }

@media (prefers-reduced-motion: reduce) {
  .sms-erp-page .sms-module {
    transition: none;
  }
}

.sms-erp-page {
  color: #111111;
}

.sms-erp-page h1,
.sms-erp-page h2,
.sms-erp-page h3,
.sms-erp-page p,
.sms-erp-page li {
  color: #111111;
}

.sms-erp-page .sms-hero,
.sms-erp-page .sms-hero h1,
.sms-erp-page .sms-hero p,
.sms-erp-page .sms-hero a,
.sms-erp-page #dashboard,
.sms-erp-page #dashboard h2,
.sms-erp-page #dashboard p,
.sms-erp-page #dashboard span,
.sms-erp-page #dashboard strong {
  color: #ffffff;
}

.sms-erp-page .sms-hero .text-sky-200,
.sms-erp-page .sms-hero .text-gray-200,
.sms-erp-page .sms-hero .text-sky-100 {
  color: #ffffff;
}

.sms-erp-page .sms-module p,
.sms-erp-page .sms-why p,
.sms-erp-page #roles article p {
  color: #111111;
}

.sms-cta-wrap {
  padding: 3.5rem 1rem 4rem;
}

.sms-cta-box {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  padding: 2.75rem 1.75rem;
  border-radius: 1.5rem;
  background: linear-gradient(90deg, #7c3aed 0%, #0ea5e9 50%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
}

.sms-cta-box h2,
.sms-cta-box p,
.sms-cta-box a,
.sms-erp-page .sms-cta-box h2,
.sms-erp-page .sms-cta-box p {
  color: #ffffff;
}

.sms-cta-box h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sms-cta-box > p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.sms-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.sms-cta-primary,
.sms-cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  text-decoration: none;
}

.sms-cta-primary {
  background: #ffffff;
  color: #1d4ed8 !important;
}

.sms-cta-secondary {
  border: 2px solid #ffffff;
  color: #ffffff !important;
}

.sms-cta-contact {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
}

.sms-cta-contact a {
  color: #ffffff !important;
  text-decoration: underline;
}

.sms-soon {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
