/* Reset and Base */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}

/* @keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.bg-gradient-secondary {
  background: linear-gradient(230deg, rgb(79, 107, 247) 16.03%, rgb(184, 116, 242) 90.73%);
} */

/* Typography */
.kosmonel-blue-text {
  color: #1d4ed8;
}

.green-text {
  color: #16a34a;
}

.blue-text {
  color: #2563eb;
}

.purple-text {
  color: #a855f7;
}

.yellow-text {
  color: #f59e0b;
}

.kosmonel-gradient-text {
  background: linear-gradient(135deg, #60a5fa 0%, #2563eb 55%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.service-blue-text {
  color: #2563eb;
}

.service-purple-text {
  color: #9333ea;
}

.secondary-heading {
  font-size: 2.5rem;
  line-height: 2.25rem;
  margin-bottom: 0.75rem;
  color: #111827;
  font-weight: 500;
}

.secondary-description {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #4b5563;
  margin: 0 auto 3rem auto;
}

/* Auth and dashboard helpers */
.auth-main {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  min-height: 100vh;
  background: #f8fafc;
  padding: 2rem;
}
.auth-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 1rem 2rem;
}
.auth-nav .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #111827;
}
.auth-nav .nav-links {
  display: flex;
  gap: 1rem;
}

.auth-nav .nav-link {
  color: #475569;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.25rem;
}

.register-main {
  background: transparent;
}
.auth-card {
  width: min(760px, 100%);
  margin: 1rem auto;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: rgba(15, 23, 42, 0.08) 0px 20px 60px;
  background: #fff;
}
.auth-card h2 {
  margin-bottom: 0.5rem;
}
.auth-card input,
.auth-card select {
  width: 100%;
  padding: 0.85rem 1rem;
  margin-top: 0.35rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.9rem;
  background: #f8fafc;
}
.auth-card label {
  display: block;
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 0.35rem;
}
.auth-card .cta-btn {
  width: 100%;
  padding: 0.95rem;
  border-radius: 0.95rem;
  background: linear-gradient(230deg, #2f6bf7, #7c3aed);
  color: #fff;
  border: none;
  font-weight: 700;
}
.auth-card .cta-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.register-header {
  margin-bottom: 1.5rem;
}
.register-subtitle {
  color: #6b7280;
  margin-top: 0.35rem;
}
.register-tabs {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.tab-button {
  flex: 1;
  padding: 0.9rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  font-weight: 700;
  color: #4b5563;
  cursor: pointer;
}
.tab-button.active {
  background: #eef2ff;
  border-color: #c7d2fe;
  color: #1d4ed8;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-group {
  width: 100%;
}
.half-width {
  width: 100%;
}
.accept-group {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
.accept-group input {
  width: auto;
  margin: 0;
}
.accept-group label {
  margin: 0;
  font-size: 0.95rem;
  color: #4b5563;
}
.accept-group a {
  color: #2563eb;
  text-decoration: none;
}
.flash {
  padding: 0.95rem 1rem;
  border-radius: 0.9rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.flash.danger {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}
.flash.success {
  background: #ecfdf5;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.business-fields {
  display: block;
}
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.pricing-main,
.legal-page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.pricing-hero {
  max-width: 760px;
  margin-bottom: 2rem;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #2563eb;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.pricing-subtitle {
  color: #4b5563;
  max-width: 680px;
  line-height: 1.7;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.pricing-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-card-primary {
  border-color: #c7d2fe;
}

.pricing-card-pro {
  border-color: #fde68a;
}

.pricing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.pricing-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.pricing-price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.pricing-price span {
  font-size: 1rem;
  color: #6b7280;
}

.pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.pricing-list li {
  color: #374151;
  line-height: 1.6;
}

.addons-section {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 1.75rem;
}

.addons-section h2 {
  margin: 0 0 1rem;
}

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

.addon-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
}

.addon-title {
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.addon-price {
  color: #111827;
  font-weight: 800;
  margin: 0;
}

.legal-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 1.25rem;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.04);
}

.legal-card h1,
.legal-card h2 {
  color: #111827;
}

.legal-card p {
  color: #4b5563;
  line-height: 1.75;
}

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

.dashboard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: #fff;
}
.dashboard-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}
.dashboard-links a {
  text-decoration: none;
  color: #374151;
}
.dashboard-user {
  color: #374151;
  font-weight: 600;
}
.dashboard-main {
  padding: 2rem;
}
.overview-cards {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.card {
  background: #fff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  box-shadow: rgba(15, 23, 42, 0.06) 0px 6px 24px;
}
.card-title {
  color: #6b7280;
}
.card-value {
  font-size: 1.5rem;
  font-weight: 700;
}
.charts {
  display: flex;
  gap: 1rem;
}
.chart-card {
  flex: 1;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: rgba(15, 23, 42, 0.06) 0px 6px 24px;
}
.tables {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.table-card {
  flex: 1;
  padding: 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: rgba(15, 23, 42, 0.06) 0px 6px 24px;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  gap: 10rem;
  max-width: 56rem;
  align-items: center;
  height: 100vh;
  margin: 0 auto;
  margin-top: 3rem;
}

.hero-heading {
  font-size: 4.5rem;
  line-height: 4rem;
  margin-bottom: 1.8rem;
  text-align: left;
  color: #111827;
  font-weight: 600;
}

.hero-para {
  color: #475569;
  line-height: 1.625;
  font-size: 1.25rem;
  text-align: left;
  margin-bottom: 2rem;
}

.hero-button-one {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: #2563eb;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.hero-button-one ion-icon {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

/* Scan Section */

.scan-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 70rem;
  align-items: center;
  margin: 0 auto;
  /* padding-top: 3rem; */
  margin-bottom: 2rem;
}

.mini-heading,
.mini-heading-hero {
  padding: 0.75rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-transform: capitalize;
  color: #1e40af;
  border: 0.1rem solid #bed7fc;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5rem;
  border-radius: 9999px;
  animation: 2s cubic-bezier(0.4, 0, 0.6, 1) 0s infinite normal none running
    pulse;
}

.main-heading-icon {
  padding: 0.5rem;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(
    230deg,
    rgb(54, 82, 243) 16.03%,
    rgb(168, 98, 238) 90.73%
  );
}

.main-heading-para {
  color: transparent;
  background: linear-gradient(
      230deg,
      rgb(54, 82, 243) 16.03%,
      rgb(168, 98, 238) 90.73%
    )
    text;
  font-size: 1rem;
  font-weight: 500;
}

.mini-heading-hero {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.main-heading {
  font-size: 2.8rem;
  line-height: 2.6rem;
  margin-bottom: 0.4rem;
  text-align: center;
  color: #111827;
  font-weight: 650;
  max-width: 60%;
}

.main-heading strong {
  font-weight: bold;
}

.scanner-description {
  line-height: 1.625;
  font-size: 1rem;
  font-weight: 500;
  color: #4b5863;
  max-width: 42rem;
  text-align: center;
}

.hero-features {
  margin: 1rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero-feature {
  display: flex;
  padding: 0.5rem 1rem;
  background-color: #eef2ff;
  border: 0.05rem solid #e2e4e8;
  border-radius: 1.2rem;
  align-items: center;
  gap: 0.2rem;
  color: #1d4ed8;
}

.hero-feature strong {
  font-weight: 500;
}

.scan-div {
  width: 70%;
  padding: 1.5rem;
  border-radius: 1rem;
  border-width: 2px;
  border-color: transparent;
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px -12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.input-section {
  width: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  gap: 1rem;
}

.url-input {
  width: 80%;
  padding: 1.2rem;
  font-size: 1rem;
  /* opacity: 0.2; */
  border-radius: 0.75rem;
  border: 0.1rem solid #99c3fe;
  color: rgb(15 23 42 / var(--tw-text-opacity, 1));
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
    rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.scan-btn-icon {
  font-weight: bold;
}

.scan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  border: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.3s;
  animation-duration: 0.3s;
  background: linear-gradient(
    230deg,
    rgb(54, 82, 243) 16.03%,
    rgb(168, 98, 238) 90.73%
  );
  border-radius: 0.75rem;
  padding: 0.5rem 2.5rem;
}

.scan-btn:hover {
  background-color: #2f6df4;
  cursor: pointer;
}

.mini-spec-cards {
  display: flex;
  padding: 0 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}

.spec {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 0.5rem 1.75rem;
  border: 1px solid rgb(191 219 254);
  border-radius: 8px;
}

.free-text {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.hero-cards {
  max-width: 52rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 5rem;
}

.hero-card {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px -12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.hero-card-1 {
  border: 2px solid #bfdbfe;
}

.hero-card-2 {
  border: 2px solid #e9d5ff;
}

.hero-card-3 {
  border: 2px solid #a5f3fc;
}

.hero-card-icon {
  color: #fff;
  font-size: 2rem;
  padding: 0.5rem;
  background-color: #d0e3ff;
  border-radius: 1rem;
}

.hero-card-icon-1 {
  background: linear-gradient(230deg, #a855f7 16.03%, #ec4899 90.73%);
}

.hero-card-icon-2 {
  background: linear-gradient(230deg, #f97316 16.03%, #ef4444 90.73%);
}

.hero-card-icon-3 {
  background: linear-gradient(230deg, #22c55e 16.03%, #10b981 90.73%);
}
.hero-card-heading {
  color: rgb(15 23 42);
  font-size: 1rem;
}

.hero-card-description {
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

/* Report Section */
.report-section-container {
  max-width: 100%;
  margin: 2rem auto 0 auto;
}

.top-report-section {
  display: flex;
  gap: 2rem;
  justify-content: left;
  align-items: start;
  padding: 2.5rem;
  color: #fff;
  border-top-left-radius: 1.2rem;
  border-top-right-radius: 1.2rem;
  border-radius: 1.2rem;
  box-shadow:
    rgba(54, 82, 243, 0.28) 0px 22px 70px 4px,
    rgba(168, 98, 238, 0.18) 0px 8px 28px 0px;
}

.top-right-report-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.grade {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  padding: 2.3rem;
  border-radius: 1.2rem;
}

.a {
  background-color: #00ab00;
}
.b {
  background-color: #07dc07;
}
.c {
  background: linear-gradient(90deg, #eab308, #facc15);
}
.d {
  background-color: #ff6600;
}
.e {
  background-color: #ff3300;
}
.f {
  background-color: #ff0000;
}

.status-and-date {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.scan-status,
.date {
  padding: 0.3rem 0.6rem;
  background-color: #4b84ff;
  border-radius: 1.2rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.report-heading {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: bold;
  color: #111827;
}

.mid-report-section {
  margin: 2rem auto;
  padding: 0 2rem;
}

.findings-and-checks {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-findings {
  font-size: 1.52rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  letter-spacing: 0.05rem;
}

.checks-performed {
  font-size: 0.75rem;
  line-height: 1rem;
  color: #6b7280;
}

.category-and-quantity {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.category-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  border: 0.1rem solid #d9d9d9;
  border-radius: 0.4rem;
}

.category-icon {
  font-size: 1.2rem;
}

.category-name {
  font-weight: 500;
  font-size: 0.75rem;
}

.issues-quantity,
.issue-quantity-link {
  font-weight: 500;
  text-decoration: none;
  color: #111827;
}

.informative {
  color: #1d4ed8;
}
.low {
  color: #d4ab06;
}
.medium {
  color: #ff6600;
}
.high {
  color: #ff3300;
}
.critical {
  color: #ff0000;
}

/* CTA */
.cta {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  color: #000;
  margin: 4rem 0;
}

.cta-heading-and-para {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cta-icon {
  font-size: 4rem;
  font-weight: bold;
  color: #1e40af;
}

.cta-heading {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #111827;
}

.cta-para {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #4b5563;
}

.cta-btn {
  color: #fff;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    230deg,
    rgb(54, 82, 243) 16.03%,
    rgb(168, 98, 238) 90.73%
  );
  text-decoration: none;
  border-radius: 8px;
  display: inline-block;
  margin: 1rem 0;
}

/* Dashboard layout and controls */
.dashboard-shell {
  min-height: 100vh;
  display: flex;
  background: #f4f6fb;
}

.dashboard-sidebar {
  width: 260px;
  min-height: 100vh;
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
  color: #e2e8f0;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.25rem;
  gap: 1.5rem;
  transition:
    width 0.3s ease,
    transform 0.3s ease;
}

.dashboard-sidebar.collapsed {
  width: 88px;
}

.dashboard-sidebar.collapsed .sidebar-text,
.dashboard-sidebar.collapsed .sidebar-brand-text {
  display: none;
}

.dashboard-sidebar.collapsed .sidebar-link {
  justify-content: center;
}

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

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.sidebar-logo {
  width: 42px;
  height: 42px;
}

.sidebar-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-brand-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.sidebar-brand-subtitle {
  margin: 0;
  font-size: 0.8rem;
  color: #94a3b8;
}

.sidebar-toggle-btn,
.sidebar-hamburger {
  border: none;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sidebar-toggle-btn span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  background: #cbd5e1;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.sidebar-link {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  color: #cbd5e1;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(148, 163, 184, 0.18);
  color: #fff;
}

.sidebar-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.05rem;
}

.sidebar-text {
  white-space: nowrap;
}

.sidebar-footer {
  margin-top: 1rem;
}

.logout-link {
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-content {
  width: calc(100% - 260px);
  margin-left: 260px;
  padding: 2rem 2.5rem;
  transition:
    margin-left 0.3s ease,
    width 0.3s ease;
}

.dashboard-sidebar.collapsed + .dashboard-content {
  margin-left: 88px;
  width: calc(100% - 88px);
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-hamburger {
  display: none;
}

.dashboard-breadcrumb {
  margin: 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.dashboard-heading {
  margin: 0.35rem 0 0;
  font-size: 2rem;
  line-height: 1.1;
  color: #111827;
}

.primary-button,
.secondary-button,
.text-button {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.primary-button {
  background: linear-gradient(135deg, #4f46e5 0%, #38bdf8 100%);
  color: #fff;
  padding: 0.95rem 1.5rem;
}

.primary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(79, 70, 229, 0.18);
}

.text-button {
  background: transparent;
  color: #2563eb;
  font-size: 0.95rem;
}

.text-button.danger {
  color: #dc2626;
}

.table-wrapper {
  width: 100%;
  overflow-x: auto;
}

.table-wrapper .data-table {
  min-width: 760px;
}

.overview-grid,
.dashboard-panels,
.findings-grid,
.detail-grid {
  display: grid;
  gap: 1rem;
}

.overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.dashboard-panels {
  grid-template-columns: 1.3fr 0.9fr;
  gap: 1.25rem;
}

.summary-panel {
  display: flex;
  flex-direction: column;
}

.findings-grid {
  grid-template-columns: 1fr;
}

.finding-card {
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 1.25rem;
  padding: 1rem 1.2rem;
  box-shadow: rgba(15, 23, 42, 0.12) 0px 18px 36px -12px;
}

.finding-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.finding-severity {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.severity-warning {
  background: #fde68a;
  color: #92400e;
}
.severity-critical {
  background: #fecaca;
  color: #7f1d1d;
}
.severity-info {
  background: #bfdbfe;
  color: #1e3a8a;
}

.finding-patch {
  margin-top: 0.5rem;
  color: #c7d2fe;
}

.panel-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.6rem;
  box-shadow: rgba(15, 23, 42, 0.08) 0px 20px 40px -20px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.panel-card.full-width {
  width: 100%;
}

.panel-title {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
}

.check-summary-card,
.check-card {
  background: #ffffff;
  border-radius: 1.35rem;
  border: 1px solid #d1d5db;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.05);
}

.check-summary-card {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  background: #f8fafc;
}

.check-summary-tags,
.header-grid,
.analysis-grid,
.record-list,
.check-section.two-columns {
  display: grid;
  gap: 1rem;
}

.check-summary-tags {
  grid-auto-flow: column;
  grid-auto-columns: min-content;
  align-items: center;
}

.check-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.check-subtitle,
.header-detail,
.section-label,
.expiry-value {
  color: #475569;
  margin: 0.35rem 0 0;
}

.section-label {
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.check-section {
  padding: 1rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.check-section:first-of-type {
  border-top: none;
  padding-top: 0;
}

.record-list {
  display: grid;
  gap: 0.65rem;
}

.check-summary-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.check-summary-list li {
  padding: 0.85rem 1rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 0.95rem;
}

.header-grid,
.analysis-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.header-section,
.analysis-card {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 1rem;
}

.header-chip,
.analysis-card {
  margin-bottom: 0.75rem;
}

.header-chip {
  padding: 0.9rem;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1rem;
}

.header-chip.missing {
  border-color: rgba(248, 113, 113, 0.3);
}

.expiry-value {
  font-size: 1.5rem;
  font-weight: 700;
}

.tag-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #0f172a;
}

.tag-badge.green {
  background: #dcfce7;
  color: #166534;
}

.tag-badge.yellow {
  background: #fef9c3;
  color: #92400e;
}

.tag-badge.red {
  background: #fee2e2;
  color: #991b1b;
}

.check-footer {
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.16);
}

.status-pill.green {
  background: #dcfce7;
  color: #166534;
}

.status-pill.warning {
  background: #fef3c7;
  color: #92400e;
}

.status-pill.critical {
  background: #fee2e2;
  color: #991b1b;
}

.stat-card {
  padding: 1.35rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 1.35rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.stat-card-label {
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 0.75rem;
}

.stat-card-value {
  font-size: 2.1rem;
  color: #0f172a;
  font-weight: 800;
}

.asset-status-grid {
  display: grid;
  gap: 1rem;
}

.asset-status-card {
  padding: 1.25rem;
  border-radius: 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: #ffffff;
}

.asset-status-name {
  margin: 0 0 0.5rem;
  font-weight: 700;
  color: #111827;
}

.asset-status-url {
  margin: 0 0 0.85rem;
  color: #475569;
}

.asset-status-meta {
  font-size: 0.92rem;
  color: #475569;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-up {
  background: #dcfce7;
  color: #166534;
}
.status-down {
  background: #fee2e2;
  color: #991b1b;
}
.status-maintenance {
  background: #ffedd5;
  color: #c2410c;
}
.status-unknown {
  background: #e2e8f0;
  color: #334155;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th,
.data-table td {
  padding: 1rem 0.85rem;
  border-bottom: 1px solid #e2e8f0;
}

.data-table th {
  text-align: left;
  font-size: 0.78rem;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.data-table tbody tr:hover {
  background: #f8fafc;
}

.text-link {
  color: #2563eb;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

/* MINIMALIST TOP-NAV DASHBOARD (legacy; scoped to avoid marketing chrome) */
.dashboard-navbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.85rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.dashboard-navbar .navbar-left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.dashboard-navbar .navbar-logo {
  width: 32px;
  height: 32px;
}

.dashboard-navbar .navbar-brand {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.dashboard-navbar .hamburger {
  display: none;
  margin-left: 1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #374151;
  font-size: 1.5rem;
  align-items: center;
}

.dashboard-navbar .navbar-nav {
  display: flex;
  gap: 0;
  list-style: none;
  flex: 1;
  margin-left: 2rem;
}

.dashboard-navbar .nav-link {
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.dashboard-navbar .nav-link:hover,
.dashboard-navbar .nav-link.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
}

.dashboard-navbar .nav-link[href="/login"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5 0%, #38bdf8 100%);
  color: #fff;
}

.dashboard-navbar .nav-link[href="/login"]:hover {
  background: linear-gradient(135deg, #38bdf8 0%, #4f46e5 100%);
  color: #fff;
}

.dashboard-navbar .navbar-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dashboard-navbar .settings-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #475569;
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.dashboard-navbar .settings-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #111827;
}

.dashboard-navbar .navbar-user {
  font-size: 0.85rem;
  color: #475569;
}

.dashboard-navbar .logout-btn {
  padding: 0.65rem 0.95rem;
  font-size: 0.85rem;
  background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid rgba(185, 28, 28, 0.3);
  box-shadow: 0 12px 25px rgba(220, 38, 38, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.dashboard-navbar .logout-btn:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-1px);
}

.dashboard-shell {
  min-height: calc(100vh - 60px);
  background: #f9fafb;
}

.dashboard-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.page-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.page-desc {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 0.35rem 0 0;
}

.header-actions {
  display: flex;
  gap: 0.85rem;
}

.page-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Cards & Layout */
.overview-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 1.25rem;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 170px;
}

.stat-card-highlight {
  border-color: transparent;
}

.stat-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.stat-card-icon {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 0.9rem;
  font-size: 1.2rem;
}

.primary-icon {
  background: rgba(59, 130, 246, 0.12);
  color: #2563eb;
}

.accent-icon {
  background: rgba(139, 92, 246, 0.12);
  color: #7c3aed;
}

.success-icon {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.danger-icon {
  background: rgba(248, 113, 113, 0.15);
  color: #dc2626;
}

.stat-card-label {
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-card-value {
  font-size: 2rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.05;
}

.stat-card-note {
  color: #4b5563;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-top: auto;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}

.insights-panel {
  min-height: 340px;
}

.findings-panel {
  padding-bottom: 1rem;
}

.pie-charts-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.findings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.finding-card {
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 1.25rem;
  padding: 1.35rem;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #111827;
}

.finding-card strong {
  color: #111827;
}

.finding-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.finding-meta {
  color: #4b5563;
  font-size: 0.9rem;
}

.finding-card p {
  color: #374151;
  line-height: 1.6;
}

.finding-card a {
  color: #2563eb;
}

.finding-patch {
  color: #1f2937;
  font-size: 0.92rem;
  margin: 0;
}

.btn-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #2563eb;
}

.stat-card-label {
  font-size: 0.8rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stat-card-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #111827;
}

.panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.panel-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 1rem;
}

.findings-container {
  max-height: 400px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.finding-card {
  background: #fef2f2;
  border-left: 3px solid #ef4444;
  border-radius: 0.5rem;
  padding: 0.85rem;
}

.finding-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #991b1b;
  margin: 0 0 0.25rem;
}

.finding-card-msg {
  font-size: 0.8rem;
  color: #7f1d1d;
  margin: 0;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  background: #f3f4f6;
  padding: 0.85rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  border-bottom: 1px solid #e5e7eb;
}

.data-table td {
  padding: 0.85rem;
  border-bottom: 1px solid #e5e7eb;
}

.data-table tbody tr:hover {
  background: #f9fafb;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  padding: 0.65rem 1.25rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 40;
}

.modal-layer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.modal-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.75rem;
  width: min(560px, 90vw);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: #6b7280;
  cursor: pointer;
}

.modal-card form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-card input,
.modal-card select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.9rem;
}

.empty-state {
  padding: 1.5rem;
  background: #f0f9ff;
  border: 1px dashed #93c5fd;
  border-radius: 0.5rem;
  text-align: center;
  color: #1e40af;
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

.empty-state {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px dashed #93c5fd;
}

.panel-note {
  margin: 0.75rem 0 1.25rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.defacement-action-item {
  display: flex;
  align-items: flex-end;
}

.asset-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: #0f172a;
  font-weight: 700;
}

.asset-form input,
.asset-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #cbd5e1;
  border-radius: 1rem;
  background: #f8fafc;
  color: #0f172a;
}

.asset-form button {
  width: 100%;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.details-section {
  margin-top: 1.25rem;
}

.details-body {
  padding-top: 0.5rem;
}

.findings-list {
  display: grid;
  gap: 1rem;
}

.check-row {
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  margin-bottom: 0.85rem;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 998;
}

.modal-layer {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 1rem;
}

.modal-card {
  width: min(760px, 100%);
  background: #ffffff;
  border-radius: 1.5rem;
  box-shadow: rgba(15, 23, 42, 0.18) 0px 40px 120px -40px;
  padding: 1.5rem;
}

.modal-card-wide {
  max-width: 940px;
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.modal-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
}

.modal-subtitle {
  margin: 0.35rem 0 0;
  color: #475569;
}

.modal-close {
  border: none;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.4rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
}

.hidden {
  display: none !important;
}

@media (max-width: 1120px) {
  .overview-grid,
  .dashboard-panels,
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-content {
    width: 100%;
    margin-left: 0;
  }
  .dashboard-sidebar {
    position: fixed;
    transform: translateX(-100%);
    width: 260px;
    z-index: 1000;
  }
  .dashboard-sidebar.collapsed {
    transform: translateX(0);
  }
  .sidebar-hamburger {
    display: inline-flex;
  }
}

@media (max-width: 740px) {
  .dashboard-topbar {
    flex-direction: column;
    align-items: stretch;
  }
  .dashboard-heading {
    font-size: 1.75rem;
  }
}

/* Dashboard sidebar layout */
.dashboard-shell {
  min-height: 100vh;
  display: flex;
  background: #f4f7ff;
  color: #0f172a;
}

.dashboard-sidebar {
  width: 280px;
  min-height: 100vh;
  padding: 2rem 1.75rem;
  background: linear-gradient(180deg, #1f2a63 0%, #11193f 100%);
  color: #fff;
  position: fixed;
  top: 0;
  left: 0;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.sidebar-logo {
  width: 44px;
  height: auto;
}

.sidebar-brand-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.sidebar-brand-subtitle {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-link {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  color: #5d5d5d;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.dashboard-content {
  margin-left: 280px;
  padding: 2rem 2.5rem;
  width: calc(100% - 280px);
}

.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.dashboard-breadcrumb {
  margin: 0;
  color: #6b7280;
  font-size: 0.9rem;
}

.dashboard-heading {
  margin: 0.25rem 0 0;
  font-size: 2.1rem;
  line-height: 1.1;
}

.dashboard-actions {
  display: flex;
  align-items: center;
}

.overview-grid,
.dashboard-panels,
.asset-detail-grid {
  display: grid;
  gap: 1.5rem;
}

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

/* .dashboard-panels {
  grid-template-columns: 1.25fr 0.85fr;
} */

.panel-card {
  padding: 1.75rem;
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.stat-card,
.panel-card {
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.panel-title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.stat-card-label {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 0.85rem;
}

.stat-card-value {
  font-size: 2.4rem;
  color: #0f172a;
  line-height: 1;
}

.asset-status-grid {
  display: grid;
  gap: 1rem;
}

.asset-status-card {
  padding: 1.2rem 1.25rem;
  border-radius: 1.1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.asset-status-name {
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.asset-status-url {
  color: #475569;
  margin-bottom: 0.75rem;
}

.asset-status-meta {
  color: #334155;
  font-size: 0.9rem;
}

.asset-up {
  background: #ecfdf5;
  border-color: #22c55e;
}
.asset-down {
  background: #fef2f2;
  border-color: #ef4444;
}
.asset-maintenance {
  background: #ffedd5;
  border-color: #f97316;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
}

.data-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: #334155;
  letter-spacing: 0.04em;
}

.data-table tbody tr:hover {
  background: #f8fafc;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.status-up {
  background: #dcfce7;
  color: #166534;
}
.status-down {
  background: #fee2e2;
  color: #991b1b;
}
.status-maintenance {
  background: #ffedd5;
  color: #c2410c;
}

.empty-state {
  padding: 1.4rem;
  border-radius: 1rem;
  background: #eef2ff;
  color: #1d4ed8;
  border: 1px dashed #bfdbfe;
}

.asset-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 700;
  color: #0f172a;
}

.asset-form input,
.asset-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  color: #0f172a;
}

.asset-form button {
  margin-top: 1.2rem;
}

.form-error {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fee2e2;
  color: #991b1b;
  margin-bottom: 1rem;
}

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

@media (max-width: 1100px) {
  .overview-grid,
  .dashboard-panels,
  .asset-detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .dashboard-shell {
    flex-direction: column;
  }
  .dashboard-sidebar {
    position: relative;
    width: 100%;
    min-height: auto;
  }
  .dashboard-content {
    margin-left: 0;
    width: 100%;
    padding: 1.5rem;
  }
}

/* Accordion */
.accordion {
  margin: 2rem auto;
  max-width: 90%;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 1rem;
  background-color: #fff;
  border: 1px solid #ddd;
  /* border-top-width: 4px; */
  border-radius: 0.5rem;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.icon-and-name {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  font-size: 1.2rem;
}

.accordion-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: bold;
  color: #333;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f9f9f9;
}

.accordion-para {
  margin: 1rem 0;
}

.accordion-icon {
  margin-right: 1rem;
  font-size: 1.25rem;
}

.accordion-title {
  flex: 1;
  font-size: 1.125rem;
  font-weight: 500;
  color: #111827;
}
.accordion-item .severity-and-span {
  display: flex;
  gap: 3rem;
}

.severity {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.2rem 0.9rem;
  border-radius: 0.8rem;
}

.sev-critical {
  background-color: #fcd5d5;
}
.sev-high {
  background-color: #fadcdc;
}
.sev-medium {
  background-color: #ffd3af;
}
.sev-low {
  background-color: #fef9c3;
}
.sev-informative {
  background-color: #bbcef7;
}

.accordion-toggle {
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  background-color: #fff;
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.3s ease;
  border-top: 1px solid #ddd;
}

.accordion-content.open {
  max-height: none;
  opacity: 1;
  padding: 1.5rem;
}

.accordion-content p {
  /* margin-bottom: 1rem; */
  word-wrap: break-word;
  word-break: break-word;
}

.proof {
  width: 100%;
  border: none;
  padding: 1rem;
  line-height: 2;
  font-size: 1rem;
  background-color: #111827;
  border-radius: 1rem;
  color: white;
}

.fix {
  width: 100%;
  border: none;
  padding: 1rem;
  line-height: 2;
  font-size: 1rem;
  /* background-color: #111827; */
  border-radius: 1rem;
  /* color: white; */
  margin: 1rem 0;
  border: 2px solid #bfdbfe;
  /* box-shadow: rgba(54, 82, 243, 0.25) 0px 25px 50px -12px, rgba(168, 98, 238, 0.1) 0px 0px 0px 1px; */
}

/* Severity Colors */
/* .critical {
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.15);
}

.accordion-item.high {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.accordion-item.medium {
  box-shadow: 0 0 12px rgba(255, 152, 0, 0.15);
}

.accordion-item.low {
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.15);
}

.accordion-item.informative {
  box-shadow: 0 0 12px rgba(29, 78, 216, 0.15);
} */

/* .accordion-item.critical { border-color: #ff0000; }
.accordion-item.high { border-color: #f44336; }
.accordion-item.medium { border-color: #ff9800; }
.accordion-item.low { border-color: #ffc107; }
.accordion-item.informative { border-color: #1d4ed8; } */

/* Scanner Steps Section */
.scanner-steps-container {
  max-width: 80%;
  display: flex;
  flex-direction: column;
  margin: 2rem auto 10rem auto;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.simple-process-text {
  padding: 0.5rem 0.7rem;
  display: inline-block;
  gap: 0.5rem;
  text-transform: capitalize;
  color: #166534;
  background-color: rgb(220, 252, 231);
  border: none;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 1.25rem;
  border-radius: 1.2rem;
}

.steps-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  gap: 1rem;
  text-align: center;
  box-shadow:
    0 12px 28px 0 rgba(0, 0, 0, 0.2),
    0 2px 4px 0 rgba(0, 0, 0, 0.1),
    0 0 0 1px inset rgba(255, 255, 255, 0.05);
  border-radius: 0.5rem;
}

.step-number {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.75rem;
  padding: 1.2rem 1.7rem;
  border-radius: 10px;
  color: #fff;
}

.number-1 {
  background: linear-gradient(90deg, #2563eb, #4f46e5);
}
.number-2 {
  background: linear-gradient(90deg, #4f46e5, #9333ea);
}
.number-3 {
  background: linear-gradient(90deg, #9333ea, #db2777);
}

.step-name {
  font-size: 1.25rem;
  line-height: 1.75rem;
  color: #1f2937;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.step-details {
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.visual-para {
  color: #4b5563;
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin-bottom: 1.5rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 1.5rem 0.7rem 0.7rem;
  border: 0.04rem solid #d9d9d9;
  border-radius: 0.4rem;
}

.visual-icon {
  font-size: 1.2rem;
}

.visual-strong {
  font-weight: normal;
}

.visual-strong::after {
  content: "|";
  animation: blink 0.7s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.refresh-rotator-icon {
  font-size: 2.8rem;
  color: #2563eb;
  padding: 0.5rem;
  background-color: #d0e3ff;
  border-radius: 50%;
  animation: rotate 2s linear infinite;
  display: inline-block;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.vuln-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.issue-name {
  font-size: 0.9rem;
  color: #111827;
  font-weight: 500;
}

.issue-severity {
  font-size: 0.8rem;
  color: #de0000;
  background-color: #ffdcdc;
  padding: 0.5rem 1rem;
  font-weight: 500;
  border-radius: 1.2rem;
}

.security-issue-icon {
  font-size: 1.8rem;
  padding: 0.5rem;
  color: #ef4444;
  background-color: #ffdcdc;
  font-weight: bold;
  border-radius: 50%;
}

/* Core Services Section */
.core-services-section {
  max-width: 85%;
  margin: 0 auto;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.core-services-heading {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 600;
  color: #111827;
  text-align: center;
  margin-bottom: 1.5rem;
  max-width: 50%;
}

.core-services-para {
  font-size: 1rem;
  line-height: 1.75rem;
  color: #4b5563;
  text-align: center;
  margin-bottom: 2rem;
  max-width: 55%;
}

.core-services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: center;
}

.core-services-card {
  padding: 1.5rem;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: space-between;
  border-radius: 0.5rem;
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px 12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.core-services-card-1 {
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px 12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.core-services-card-2 {
  box-shadow:
    rgba(168, 85, 247, 0.25) 0px 25px 50px 12px,
    rgba(236, 72, 153, 0.2) 0px 0px 0px 1px;
}

.core-card-top-section {
  display: flex;
  align-items: top;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.core-card-top-right {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.core-services-card-icon {
  font-size: 3rem;
  padding: 0.8rem;
  color: #fff;
  border-radius: 0.7rem;
}

.core-service-card-icon-1 {
  background: linear-gradient(230deg, #3b82f6 16.03%, #06b6d4 90.73%);
}

.core-service-card-icon-2 {
  background: linear-gradient(230deg, #a855f7 16.03%, #ec4899 90.73%);
}

.service-type {
  text-transform: uppercase;
  font-size: 0.6rem;
  color: rgb(37 99 235 / var(--tw-text-opacity, 1));
  letter-spacing: 0.05em;
  font-weight: 700;
}

.service-type-1 {
  color: rgb(79 70 229 / var(--tw-text-opacity, 1));
}

.service-type-2 {
  color: rgb(168 85 247 / var(--tw-text-opacity, 1));
}

.core-service-name {
  font-size: 1.4rem;
  line-height: 1.8rem;
  color: #111827;
  font-weight: 600;
}

.core-service-card-para {
  color: rgb(71 85 105 / var(--tw-text-opacity, 1));
  line-height: 1.625;
  font-size: 0.8rem;
}

.core-service-features {
  padding: 0.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.core-service-feature {
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 0.8rem;
  font-size: 0.8rem;
  color: #4b5563;
}

.core-service-feature-icon {
  color: #fff;
  font-size: 0.7rem;
  padding: 0.2rem;
  border-radius: 50%;
}

.core-service-feature-icon-1 {
  background: linear-gradient(230deg, #3b82f6 16.03%, #06b6d4 90.73%);
}

.core-service-feature-icon-2 {
  background: linear-gradient(230deg, #a855f7 16.03%, #ec4899 90.73%);
}

.core-card-button {
  padding: 0.7rem;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.9rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.core-card-button:hover {
  cursor: pointer;
}

.core-card-button-1 {
  background: linear-gradient(230deg, #3b82f6 16.03%, #06b6d4 90.73%);
}

.core-card-button-2 {
  background: linear-gradient(230deg, #a855f7 16.03%, #ec4899 90.73%);
}

.core-card-button-1:hover {
  background: linear-gradient(230deg, #2563eb 16.03%, #06b6d4 90.73%);
}

.core-card-button-2:hover {
  background: linear-gradient(230deg, #7c3aed 16.03%, #ec4899 90.73%);
}

/* KSE Coming soon section */

.kse-coming-soon-section {
  width: 100%;
  background-color: #020617;
  border-radius: 1rem;
  padding: 4rem 1rem;
  color: #fff;
  margin: 3rem 0;
}

.kse-top-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.coming-soon-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  font-weight: 600;
  box-shadow:
    rgba(54, 82, 243, 0.4) 0px 25px 50px -12px,
    rgba(168, 98, 238, 0.2) 0px 0px 0px 1px;
  border: 0.5px #6d6e6e solid;
  border-radius: 9999px;
  background-color: #1c2232;
}

.coming-soon-icon {
  font-size: 1.5rem;
  font-weight: bold;
}

.sparkles-icon {
  color: #f59e0b;
}

.kse-heading {
  font-size: 2.6rem;
  line-height: 3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  max-width: 50%;
}

.kse-full-form {
  text-transform: uppercase;
}

.kse-description {
  font-size: 0.9rem;
  line-height: 1.625rem;
  color: #cbd5e1;
  text-align: center;
  max-width: 60%;
  text-align: center;
}

.kse-dashboard-preview {
  max-width: 85%;
  padding: 1.5rem;
  background: linear-gradient(135deg, #1c1c2e, #161623, #0f0f1a);

  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px -12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
  border-radius: 1.5rem;
  margin: 2.5rem auto;
}

.kse-dashboard-internal {
  padding: 1.5rem;
  background: linear-gradient(135deg, #0e0e18, #0a0a12);
  border-radius: 1.5rem;
}

.kse-dashboard-internal-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.kse-dashboard-heading {
  font-size: 1.2rem;
  line-height: 2rem;
  font-weight: 600;
  color: #fff;
}

.kse-dashboard-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  background-color: #22c55e;
  animation: blink 1s infinite;
  animation-timing-function: ease-in-out;
}

.live-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #838a97;
}

.last-update-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #838a97;
}

.kse-dashboard-data-cards {
  margin: 2rem auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.kse-dashboard-data-card {
  padding: 1rem;
  border-radius: 0.5rem;
  /* background: linear-gradient(135deg, #1c1c2e, #161623, #0f0f1a); */
  background-color: #ffffff0d;
  color: #4e5b6f;
  border: 1px solid #ffffff1a;
  /* font-weight: 600; */
  width: 100%;
  font-size: 0.9rem;
}

.kse-dashboard-data-card-icon {
  font-size: 1.5rem;
  color: #acacac;
}

.data-card-value-and-name {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: center;
}

.kse-dashboard-data-card-value {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: 600;
  /* color: #fff; */
}

.kse-dashboard-mid-sections {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.kse-dashboard-mid-section {
  padding: 1rem;
  border: 1px solid #ffffff1a;
  border-radius: 0.8rem;
  width: 48%;
}

.kse-dashboard-mid-section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mid-section-name {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}

.mid-section-live {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.kse-dashboard-mid-section-live-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: #838a97;
}

.kse-dashboard-mid-section-map {
  background: linear-gradient(135deg, #1c1c2e, #161623, #0f0f1a);
  padding: 5.5rem;
  margin-top: 1rem;
  border-radius: 0.5rem;
  position: relative;
}

.intruder {
  height: 1rem;
  width: 1rem;
  border-radius: 50%;
  position: absolute;
}

.intruder-high {
  background-color: #ff0000;
  animation: blink 1s infinite;
  box-shadow: 0 0 0.5rem #ff0000;
  top: 20%;
  left: 20%;
}

.intruder-high-1 {
  background-color: #ff3300;
  animation: blink 1.5s infinite;
  box-shadow: 0 0 0.5rem #ff3300;
  top: 60%;
  left: 10%;
}

.intruder-medium {
  background-color: #ff9900;
  animation: blink 1.6s infinite;
  box-shadow: 0 0 0.5rem #ff9900;
  top: 40%;
  left: 40%;
}

.intruder-medium-1 {
  background-color: #ff9900;
  animation: blink 1.6s infinite;
  box-shadow: 0 0 0.5rem #ff9900;
  top: 30%;
  left: 70%;
}

.intruder-low {
  background-color: #33cc33;
  animation: blink 1.2s infinite;
  box-shadow: 0 0 0.5rem #33cc33;
  top: 60%;
  left: 60%;
}

.threat-types-list {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
  gap: 0.8rem;
}

.threat-type-with-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.threat-type {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.threat-pointer {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
}

.red-pointer {
  background: linear-gradient(90deg, #ef4444, #ec4899);
}

.green-pointer {
  background-color: #33cc33;
}

.blue-pointer {
  background-color: #0000ff;
}

.purple-pointer {
  background: linear-gradient(90deg, #a855f7, #ec4899);
}

.orange-pointer {
  background: linear-gradient(90deg, #f97316, #ef4444);
}

.yellow-pointer {
  background: linear-gradient(90deg, #facc15, #eab308);
}

.threat-name {
  font-size: 0.9rem;
  color: #c6c6c6;
  font-weight: 500;
}

.threat-numbers {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: start;
}

.full-threat-bar {
  width: 6rem;
  height: 0.35rem;
  background-color: #ffffff1a;
  border-radius: 0.1rem;
  position: relative;
}

.bar-filled-eighty {
  width: 80%;
  height: 100%;
  background: linear-gradient(90deg, #ef4444, #ec4899);
  border-radius: 0.1rem;
}

.bar-filled-77 {
  width: 77%;
  height: 100%;
  background: linear-gradient(90deg, #f97316, #ef4444);
  border-radius: 0.1rem;
}

.bar-filled-30 {
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, #facc15, #eab308);
  border-radius: 0.1rem;
}

.bar-filled-45 {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  border-radius: 0.1rem;
}

.kse-dashboard-bottom-section {
  padding: 1rem;
  border: 1px solid #ffffff1a;
  border-radius: 0.8rem;
  width: 100%;
}

.system-status-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2rem;
}

.system-status-value {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pointer-and-name {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.pointer {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 50%;
  animation: blink 2s infinite;
  animation-timing-function: ease-in-out;
}

.pointer-green {
  background-color: #22c55e;
}

.pointer-yellow {
  background-color: #facc15;
}

.system-status-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #838a97;
}

.system-status-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.kse-coming-soon-section-cards {
  display: flex;
  justify-content: space-between;
  /* flex-wrap: wrap; */
  /* align-items: center; */
  padding: 1rem 2rem;
  gap: 0.5rem;
}

.kse-coming-soon-section-card {
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid #ffffff1a;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 25%;
}

.kse-coming-soon-section-card-icon {
  font-size: 2rem;
  padding: 1rem;
  border-radius: 1rem;
}

.kse-coming-soon-section-card-icon-blue {
  background: linear-gradient(230deg, #3b82f6 16.03%, #06b6d4 90.73%);
}

.kse-coming-soon-section-card-icon-purple {
  background: linear-gradient(230deg, #a855f7 16.03%, #ec4899 90.73%);
}

.kse-coming-soon-section-card-name {
  font-size: 1.5rem;
  font-weight: 600;
  max-width: 70%;
  color: #fff;
}

.kse-coming-soon-section-card-description {
  font-size: 0.9rem;
  line-height: 1.625rem;
  color: #cbd5e1;
  max-width: 80%;
}

.kse-subscription-form-section {
  max-width: 65%;
  margin: 2rem auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1.5px solid #ffffff1a;
  border-radius: 1rem;
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px -12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.subscription-section-heading-and-icon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.subscription-section-heading {
  font-weight: 600;
  color: #fff;
}

.subscription-section-icon {
  font-size: 2rem;
  /* color:#eab308; */
}

.subscription-section-para {
  font-size: 1.2rem;
  line-height: 1.8rem;
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 1.5rem;
}

.kse-subscription-form {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.kse-subscription-input {
  width: 50%;
  padding: 1rem;
  border: 1px solid #ffffff1a;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
}

.kse-subscription-button {
  font-size: 1rem;
  max-width: 25%;
  padding: 1rem 2rem;
  background: linear-gradient(
    230deg,
    rgb(54, 82, 243) 16.03%,
    rgb(168, 98, 238) 90.73%
  );
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.kse-subscription-button:hover {
  background: linear-gradient(
    230deg,
    rgb(37, 99, 235) 16.03%,
    rgb(79, 70, 229) 90.73%
  );
  color: #fff;
}

.kse-checks {
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 5rem;
}

.kse-check {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  align-items: center;
}

.kse-check-icon {
  font-size: 1.2rem;
  color: #33cc33;
}

.kse-check-name {
  font-size: 0.8rem;
  color: #cbd5e1;
  font-weight: 500;
}

/* Individual service section */

.individual-service-section {
  max-width: 85%;
  margin: 3rem auto;
  padding: 2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.individual-service-section-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  max-width: 50%;
}

.individual-service-tag {
  display: flex;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 9999px;
}

.individual-service-tag-blue {
  color: #2563eb;
  background-color: #d0e3ff;
}

.individual-service-tag-purple {
  color: #9333ea;
  background-color: rgb(243 232 255);
}

.individual-service-tag-icon {
  font-size: 1.3rem;
}

.individual-service-section-heading {
  font-size: 2.6rem;
  line-height: 3.5rem;
  font-weight: 600;
  color: #111827;
}

.individual-service-section-para {
  font-size: 1.12rem;
  line-height: 1.75rem;
  color: #4b5563;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.individual-service-feature-icon {
  font-size: 1.3rem;
  padding: 0.5rem;
  /* color: #fff; */
  border-radius: 0.5rem;
  /* background: linear-gradient(230deg, rgb(54, 82, 243) 16.03%, rgb(168, 98, 238) 90.73%); */
}

.individual-service-feature-icon-blue {
  background-color: #d0e3ff;
  color: #2563eb;
}

.individual-service-feature-icon-purple {
  background-color: #f3e8ff;
  color: #9333ea;
}

.service-button {
  padding: 0.8rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.wapt-button {
  background-color: #2563eb;
}

.training-button {
  background-color: #9333ea;
}

.individual-service-section-illustration {
  margin-top: 4rem;
  width: 45%;
  padding: 2rem;
  border-radius: 1rem;
}

.individual-service-section-illustration-wapt {
  box-shadow:
    rgba(54, 82, 243, 0.25) 0px 25px 50px 12px,
    rgba(168, 98, 238, 0.1) 0px 0px 0px 1px;
}

.individual-service-section-illustration-training {
  box-shadow:
    rgba(168, 85, 247, 0.25) 0px 25px 50px 12px,
    rgba(236, 72, 153, 0.2) 0px 0px 0px 1px;
}

.heading-and-status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  /* gap: 5rem; */
  margin-bottom: 1rem;
}

.illustration-second-half {
  padding: 0 1rem;
}

.illustration-heading-and-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.illustration-heading {
  font-size: 1.2rem;
  line-height: 2.5rem;
  font-weight: 600;
  color: #111827;
}

.illustration-security-grade-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.illustration-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.illustration-security-grade-heading {
  font-size: 0.9rem;
  color: #4b5563;
  font-weight: 500;
}

.illustration-grade-value {
  padding: 0.5rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #22c55e;
  background-color: #bcfecf;
  border-radius: 0.5rem;
}

.illustration-score-value {
  padding: 0.5rem 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  color: #9333ea;
  background-color: #f3e8ff;
  border-radius: 0.5rem;
}

.illustration-risks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.illustration-risk {
  display: flex;
  padding: 0.8rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #4b5563;
  border-radius: 0.5rem;
}

.illustration-risk-high {
  border-left: 4px solid #ef4444;
  background-color: rgba(239, 68, 68, 0.1);
}

.illustration-risk-medium {
  border-left: 4px solid #f97316;
  background-color: rgba(249, 115, 22, 0.1);
}

.illustration-risk-low {
  border-left: 4px solid #22c55e;
  background-color: rgba(34, 197, 94, 0.1);
}

.illustration-field-green {
  border-left: 4px solid #22c55e;
  background-color: rgba(34, 197, 94, 0.1);
}

.illustration-field-blue {
  border-left: 4px solid #3b82f6;
  background-color: #e9efff;
}

.illustration-field-purple {
  border-left: 4px solid #9333ea;
  background-color: #faeaff;
}

.illustration-risk-quantity {
  font-weight: 600;
}

.high-quantity {
  color: #ff0000;
}

.medium-quantity {
  color: #facc15;
}

.low-quantity {
  color: #00ab00;
}

.green-value {
  color: #00ab00;
}

.blue-value {
  color: #0000ff;
}

.purple-value {
  color: #9333ea;
}

.illustration-bottom-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-top: 1rem;
  text-align: center;
  margin-top: 2.5rem;
}

/* RESPONSIVE MEDIA QUERIES */

/* Tablets & Medium Screens (1024px and below) */
@media (max-width: 1024px) {
  .dashboard-container {
    max-width: 100%;
    padding: 1.5rem 1.5rem;
  }

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

  .pie-charts-container {
    grid-template-columns: 1fr;
  }

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

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

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

  .findings-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }

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

  .main-heading {
    font-size: 2.2rem;
    line-height: 2rem;
  }

  .hero-heading {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .dashboard-sidebar {
    width: 230px;
    padding: 1.5rem 1rem;
  }

  .dashboard-content {
    width: calc(100% - 230px);
    margin-left: 230px;
    padding: 1.5rem 2rem;
  }

  .stat-card {
    padding: 1.25rem;
  }

  .stat-card-value {
    font-size: 1.75rem;
  }

  .check-summary-card {
    flex-direction: column;
    gap: 0.75rem;
  }

  .category-and-quantity {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* Small Tablets & Large Phones (768px and below) */
@media (max-width: 768px) {
  .dashboard-container {
    padding: 1rem 1rem;
  }

  .overview-cards {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    width: 70px;
    padding: 1rem 0.5rem;
    transform: translateX(-100%);
  }

  .dashboard-sidebar.active {
    transform: translateX(0);
    z-index: 1001;
  }

  .dashboard-content {
    width: 100%;
    margin-left: 0;
    padding: 1rem;
  }

  .dashboard-hamburger {
    display: inline-flex;
  }

  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions button {
    flex: 1;
  }

  .pie-charts-container {
    grid-template-columns: 1fr;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .check-summary-card {
    flex-direction: column;
  }

  .header-grid,
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .findings-grid {
    grid-template-columns: 1fr;
  }

  .data-table {
    font-size: 0.8rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.65rem 0.5rem;
  }

  .stat-card {
    padding: 1rem;
    min-height: 140px;
  }

  .stat-card-value {
    font-size: 1.5rem;
  }

  .stat-card-label {
    font-size: 0.75rem;
  }

  .main-heading {
    font-size: 1.8rem;
    line-height: 1.5rem;
    max-width: 100%;
  }

  .hero-heading {
    font-size: 2rem;
    line-height: 1.5rem;
    text-align: center;
    max-width: 100%;
  }

  .hero-para {
    text-align: center;
    font-size: 1rem;
  }

  .hero-cards {
    flex-direction: column;
  }

  .scan-div {
    width: 90%;
  }

  /* .input-section {
    flex-direction: column;
  } */

  .url-input {
    width: 100%;
  }

  .modal-card {
    width: 95vw;
    padding: 1.5rem;
  }

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

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

  .navbar-nav {
    margin-left: 1rem;
    gap: 0;
  }

  .dashboard-navbar .nav-link {
    padding: 0.5rem 0.75rem;
    font-size: 0.75rem;
  }

  .category-and-quantity {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .check-section.two-columns {
    grid-template-columns: 1fr;
  }

  .panel-title {
    font-size: 0.95rem;
  }

  .check-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
  .dashboard-container {
    padding: 0.75rem;
  }

  .overview-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .stat-card {
    padding: 0.9rem;
    min-height: auto;
    gap: 0.5rem;
  }

  .stat-card-value {
    font-size: 1.35rem;
  }

  .stat-card-label {
    font-size: 0.7rem;
  }

  .stat-card-note {
    font-size: 0.8rem;
  }

  .dashboard-panels {
    gap: 0.75rem;
  }

  .pie-charts-container {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .insights-panel {
    min-height: 250px;
  }

  .check-summary-card {
    padding: 1rem;
    gap: 0.5rem;
    flex-direction: column;
  }

  .check-summary-tags {
    flex-wrap: wrap;
  }

  .tag-badge {
    padding: 0.35rem 0.65rem;
    font-size: 0.7rem;
  }

  .check-card {
    padding: 1rem;
    margin-bottom: 0.85rem;
    border-radius: 1rem;
  }

  .check-card-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .check-section {
    padding: 0.75rem 0;
  }

  .section-label {
    font-size: 0.85rem;
  }

  .header-grid,
  .analysis-grid {
    grid-template-columns: 1fr;
  }

  .header-chip {
    padding: 0.75rem;
  }

  .findings-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .finding-card {
    padding: 1rem;
    gap: 0.75rem;
  }

  .finding-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .data-table {
    font-size: 0.75rem;
  }

  .data-table th,
  .data-table td {
    padding: 0.5rem 0.35rem;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    z-index: 5;
  }

  .dashboard-navbar .hamburger {
    display: flex;
  }

  .dashboard-navbar .navbar-left {
    width: 100%;
    justify-content: space-between;
  }

  .dashboard-navbar .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: none;
  }

  .dashboard-navbar .navbar-right {
    gap: 0.5rem;
    display: none;
  }

  .dashboard-navbar .navbar-user {
    display: none;
  }

  .dashboard-navbar .logout-btn {
    padding: 0.45rem 0.65rem;
    font-size: 0.8rem;
  }

  .main-heading {
    font-size: 1.5rem;
    line-height: 1.25rem;
  }

  .hero-heading {
    font-size: 1.5rem;
    line-height: 1.25rem;
  }

  .hero-para {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .modal-card {
    width: 95vw;
    padding: 1.25rem;
    border-radius: 0.75rem;
  }

  .modal-title {
    font-size: 1.1rem;
  }

  .modal-card input,
  .modal-card select {
    padding: 0.65rem;
    font-size: 0.85rem;
  }

  .scan-div {
    width: 95%;
    padding: 1rem;
  }

  .input-section {
    gap: 0.75rem;
  }

  .url-input {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .scan-btn {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }

  .hero-feature {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
  }

  .spec {
    padding: 0.4rem 1rem;
    font-size: 0.7rem;
  }

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

  .addon-card {
    padding: 0.85rem;
  }

  .addon-title {
    font-size: 0.85rem;
  }

  .addon-price {
    font-size: 0.95rem;
  }

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

  .pricing-card {
    padding: 1.25rem;
  }

  .pricing-card h2 {
    font-size: 1.1rem;
  }

  .pricing-price {
    font-size: 1.75rem;
  }

  .pricing-list li {
    font-size: 0.85rem;
  }

  .category-and-quantity {
    grid-template-columns: 1fr;
  }

  .category-card {
    gap: 1rem;
    padding: 0.85rem 1rem;
  }

  .category-icon {
    font-size: 1rem;
  }

  .category-name {
    font-size: 0.7rem;
  }

  .page-title {
    font-size: 1.25rem;
  }

  .page-desc {
    font-size: 0.8rem;
  }

  .header-actions {
    flex-direction: column;
    width: 100%;
  }

  .header-actions button {
    width: 100%;
    padding: 0.75rem 1rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .panel-card {
    padding: 1rem;
    border-radius: 1rem;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  .dashboard-container {
    padding: 0.5rem;
  }

  .stat-card {
    padding: 0.75rem;
  }

  .stat-card-value {
    font-size: 1.25rem;
  }

  .stat-card-label {
    font-size: 0.65rem;
  }

  .check-card {
    padding: 0.85rem;
  }

  .main-heading {
    font-size: 1.3rem;
  }

  .hero-heading {
    font-size: 1.3rem;
  }

  .hero-para {
    font-size: 0.85rem;
  }

  .modal-card {
    width: 98vw;
    padding: 1rem;
  }

  .scan-div {
    width: 98%;
  }

  .navbar-nav {
    gap: 0;
  }

  .dashboard-navbar .nav-link {
    padding: 0.5rem 0.5rem;
    font-size: 0.7rem;
  }

  .category-and-quantity {
    gap: 0.75rem;
  }

  .category-card {
    gap: 0.75rem;
    padding: 0.75rem 0.85rem;
  }
}

.email {
  text-decoration: none;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.info-icon {
  font-size: 1.5rem;
  color: #2563eb;
  font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-section {
    max-width: 94%;
    margin: 0 auto;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
  .scan-section {
    max-width: 94%;
    margin: 0 auto;
    gap: 0.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
  }
  .mini-heading {
    font-size: 0.55rem;
    padding: 0.2rem 0.5rem;
  }
  .main-heading {
    font-size: 1.5rem;
    line-height: 3rem;
  }
  .scanner-description {
    font-size: 0.8rem;
  }
  .hero-feature {
    font-size: 0.6rem;
  }
  .url-input {
    width: 80%;
    padding: 0.7rem;
    font-size: 0.9rem;
  }
  .scan-btn {
    max-width: 25%;
    text-align: center;
    font-size: 0.9rem;
    gap: 0rem;
    justify-content: center;
  }
  .scan-btn-icon {
    display: none;
  }
  .free-text {
    font-size: 0.8rem;
    text-align: center;
  }
  .secondary-heading {
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
  }
  .secondary-description {
    font-size: 1rem;
    line-height: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .stats-container {
    flex-direction: column;
    gap: 2rem;
  }
  .stats-icon {
    font-size: 2.5rem;
  }
  .stats-number {
    font-size: 2.2rem;
  }
  .stats-text {
    font-size: 1.2rem;
  }
  .top-report-section {
    align-items: center;
    padding: 1.5rem;
  }
  .report-section-container {
    max-width: 95%;
  }
  .scan-status,
  .date {
    font-size: 0.5rem;
  }
  .report-heading {
    font-size: 1.1rem;
  }
  .issues-quantity {
    font-size: 0.8rem;
  }
  .findings-and-checks {
    justify-content: space-between;
    gap: 1rem;
  }
  .security-findings {
    font-size: 0.8rem;
  }
  .checks-performed {
    font-size: 0.6rem;
  }
  .category-and-quantity {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .category-icon {
    font-size: 1rem;
  }
  .category-name {
    font-size: 0.5rem;
  }
  .issue-quantity {
    font-size: 0.75rem;
  }
  .cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
  }
  .cta-heading-and-para {
    align-items: center;
  }
  .cta-icon {
    font-size: 2.5rem;
  }
  .cta-para {
    font-size: 0.5rem;
    text-align: center;
  }
  .cta-btn {
    margin: 1rem auto;
    font-size: 0.8rem;
    text-align: center;
    display: block;
    max-width: 70%;
  }
  .accordion {
    max-width: 100%;
  }
  .accordion-title {
    font-size: 0.5rem;
  }
  .severity {
    font-size: 0.5rem;
    display: none;
  }
  .icon-and-name {
    gap: 0.5rem;
  }
  .accordion-content-icon {
    font-size: 0.875rem;
  }
  .accordion-heading {
    font-size: 0.875rem;
  }
  .accordion-para {
    font-size: 0.6rem;
    line-height: 1.3rem;
    color: #4d4d4d;
  }
  .proof {
    font-size: 0.6rem;
  }
  .fix {
    font-size: 0.6rem;
    line-height: 1.3rem;
  }
  .scanner-steps-container {
    max-width: 90%;
    margin: 0 auto 8rem auto;
    gap: 1.5rem;
  }
  .steps-container {
    flex-direction: column;
    gap: 2rem;
  }
  .scanner-features-container {
    max-width: 88%;
  }
  .features-icons-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .scanner-statistics-container {
    padding-top: 1rem;
  }

  .scan-div {
    width: 98%;
  }

  .mini-spec-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .spec {
    font-size: 0.52rem;
    padding: 0.3rem 1.2rem;
  }

  .hero-cards {
    max-width: 85%;
    flex-direction: column;
    gap: 2rem;
  }

  .core-services-section {
    max-width: 95%;
    padding: 1rem 0;
  }

  .core-services-heading {
    font-size: 2rem;
    line-height: 2.5rem;
    max-width: 90%;
  }

  .core-services-para {
    font-size: 0.9rem;
    line-height: 1.5rem;
    max-width: 90%;
  }

  .core-services-cards {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .core-services-card {
    max-width: 90%;
  }

  .kse-heading {
    font-size: 2rem;
    max-width: 80%;
  }

  .kse-description {
    max-width: 98%;
  }

  .kse-dashboard-preview {
    max-width: 95%;
    padding: 1rem;
  }

  .kse-dashboard-internal {
    padding: 1rem;
  }

  .kse-dashboard-internal-top {
    margin-bottom: 0;
  }

  .kse-dashboard-heading {
    font-size: 0.8rem;
    line-height: 2rem;
  }

  .live-text {
    font-size: 0.5rem;
  }

  .last-update-text {
    font-size: 0.5rem;
  }

  .kse-dashboard-data-card {
    padding: 0.2rem;
  }

  .kse-dashboard-data-card-icon {
    font-size: 0.5rem;
  }

  .kse-dashboard-data-card-value {
    font-size: 0.8rem;
    line-height: 1.5rem;
  }

  .kse-dashboard-data-card-name {
    font-size: 0.3rem;
  }

  .data-card-value-and-name {
    gap: 0.1rem;
  }

  .kse-dashboard-data-cards {
    gap: 0.3rem;
    margin: 0.5rem auto;
  }

  .kse-dashboard-mid-sections {
    margin: 1rem auto;
  }

  .kse-dashboard-mid-section {
    padding: 0.5rem;
  }

  .mid-section-name {
    gap: 0.1rem;
  }

  .kse-dashboard-mid-section-heading {
    font-size: 0.4rem;
  }

  .kse-dashboard-mid-section-live-text {
    font-size: 0.4rem;
  }

  .kse-dashboard-mid-section-icon {
    height: 0.5rem;
  }

  .mid-section-live {
    gap: 0.1rem;
  }

  .kse-dashboard-mid-section-map {
    padding: 2rem;
  }

  .threat-types-list {
    gap: 0.2rem;
    margin-top: 0.5rem;
  }

  .intruder {
    height: 0.3rem;
    width: 0.3rem;
  }

  .threat-name {
    font-size: 0.3rem;
  }

  .full-threat-bar {
    width: 2rem;
    height: 0.1rem;
  }

  .threat-numbers {
    gap: 0.2rem;
  }

  .threat-number {
    font-size: 0.5rem;
  }

  .threat-pointer {
    height: 0.2rem;
    width: 0.2rem;
  }

  .system-status-values {
    margin: 0;
    margin-top: 0.7rem;
  }

  .system-status-name {
    font-size: 0.4rem;
  }

  .system-status-value {
    font-size: 0.4rem;
  }

  .pointer-and-name {
    gap: 0.2rem;
  }

  .pointer {
    height: 0.3rem;
    width: 0.3rem;
  }

  .kse-coming-soon-section-cards {
    flex-direction: column;
    padding: 0.5rem 1rem;
    justify-content: center;
    gap: 1rem;
  }

  .kse-coming-soon-section-card {
    max-width: 95%;
    padding: 1.5rem;
  }

  .kse-coming-soon-section-card-name {
    font-size: 1rem;
    max-width: 100%;
  }

  .kse-coming-soon-section-card-description {
    font-size: 0.7rem;
  }

  .kse-subscription-form-section {
    max-width: 95%;
    padding: 1rem 0.8rem;
  }

  .subscription-section-heading {
    font-size: 1.2rem;
  }

  .subscription-section-icon {
    font-size: 1.2rem;
  }

  .subscription-section-para {
    font-size: 0.7rem;
    line-height: 1.5rem;
  }

  .kse-subscription-form {
    gap: 0.5rem;
  }

  .kse-subscription-input {
    padding: 0.5rem;
    font-size: 0.8rem;
    width: 70%;
  }

  .kse-subscription-button {
    font-size: 0.8rem;
    padding: 0.5rem 0.5rem;
  }

  .kse-checks {
    gap: 0.2rem;
    justify-content: space-between;
  }

  .kse-check {
    gap: 0.1rem;
  }

  .kse-check-icon {
    font-size: 0.7rem;
  }

  .kse-check-name {
    font-size: 0.5rem;
  }

  .cta {
    color: #000;
  }

  .cta-icon {
    font-size: 2rem;
    color: #1e40af;
  }

  .cta-para {
    color: #4b5563;
  }

  .cta-btn {
    background: linear-gradient(
      230deg,
      rgb(54, 82, 243) 16.03%,
      rgb(168, 98, 238) 90.73%
    );
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .mid-report-section {
    padding: 0 1rem;
  }

  .individual-service-section {
    flex-direction: column;
    /* align-items: center; */
    gap: 2rem;
  }

  .individual-service-section-content {
    max-width: 100%;
    gap: 1.5rem;
  }

  .individual-service-tag {
    padding: 0.3rem 0.8rem;
    font-size: 0.6rem;
  }

  .individual-service-section-heading {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }

  .individual-service-section-para {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }

  .individual-service-section-illustration {
    width: 100%;
    padding: 1rem;
    margin: 0.5rem 0;
  }

  .individual-service-section-2 {
    flex-direction: column-reverse;
  }
}
