

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --bg-main: #FBF8F3;
  --yellow-brand: #FFF48F;
  --yellow-hover: #FFE853;
  --peach-brand: #FCD4B4;
  --mint-brand: #D3EEDD;
  --lavender-brand: #E5D9F2;
  --cyan-brand: #C8E6C9;
  --pink-brand: #FFD1DC;
  
  --text-main: #0F172A;
  --border-black: #000000;
  --stroke-width: 2.5px;
  
  --shadow-sm: 3px 3px 0px #000000;
  --shadow-md: 5px 5px 0px #000000;
  --shadow-lg: 8px 8px 0px #000000;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
}

/* --- Global Reset & Background Pattern --- */
html, body {
  font-family: var(--font-main);
  background-color: var(--bg-main);
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  color: var(--text-main);
  overflow-x: hidden;
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  text-transform: uppercase;
}

p, li, span, input, button {
  font-family: var(--font-main);
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Neubrutalist Utility Classes --- */
.nb-border {
  border: var(--stroke-width) solid var(--border-black) !important;
}

.nb-shadow {
  box-shadow: var(--shadow-md) !important;
}

.nb-shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.nb-shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

.nb-bg-yellow { background-color: var(--yellow-brand) !important; }
.nb-bg-peach { background-color: var(--peach-brand) !important; }
.nb-bg-mint { background-color: var(--mint-brand) !important; }
.nb-bg-lavender { background-color: var(--lavender-brand) !important; }
.nb-bg-white { background-color: #FFFFFF !important; }

/* --- Badges & Tag Pills --- */
.nb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-pill);
  background-color: var(--yellow-brand);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.nb-badge-peach { background-color: var(--peach-brand); }
.nb-badge-mint { background-color: var(--mint-brand); }
.nb-badge-lavender { background-color: var(--lavender-brand); }

/* --- Neubrutalist Buttons --- */
.btn-nb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  user-select: none;
}

.btn-nb-yellow {
  background-color: var(--yellow-brand);
  color: var(--border-black);
}

.btn-nb-yellow:hover {
  background-color: var(--yellow-hover);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
  color: var(--border-black);
}

.btn-nb-yellow:active {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-sm);
}

.btn-nb-white {
  background-color: #FFFFFF;
  color: var(--border-black);
}

.btn-nb-white:hover {
  background-color: #F8FAFC;
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
  color: var(--border-black);
}

.btn-nb-black {
  background-color: var(--border-black);
  color: #FFFFFF;
}

.btn-nb-black:hover {
  background-color: #1E293B;
  color: #FFFFFF;
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-lg);
}

.btn-nb-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

/* --- Neubrutalist Cards --- */
.nb-card {
  background-color: #FFFFFF;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.nb-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* --- Navbar Styling --- */
.nb-navbar {
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: var(--stroke-width) solid var(--border-black);
}

.brand-logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon-box {
  width: 38px;
  height: 38px;
  background-color: var(--yellow-brand);
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.nav-link-nb {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 6px 14px !important;
  border-radius: var(--radius-sm);
  transition: all 0.15s ease;
}

.nav-link-nb:hover, .nav-link-nb.active {
  background-color: var(--yellow-brand);
  border: var(--stroke-width) solid var(--border-black);
  box-shadow: var(--shadow-sm);
}

/* --- Hero Section --- */
.hero-section {
  padding: 70px 0 50px 0;
  text-align: center;
  position: relative;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.08;
  margin: 24px auto;
  max-width: 950px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.hero-dashboard-preview {
  margin-top: 50px;
  perspective: 1200px;
}

.dashboard-card-wrapper {
  background-color: #FFFFFF;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  transform: rotateX(4deg);
  transition: transform 0.4s ease;
}

.dashboard-card-wrapper:hover {
  transform: rotateX(0deg) translateY(-4px);
}

/* Simulated Live Dashboard UI */
.dash-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid #E2E8F0;
  margin-bottom: 20px;
}

.status-dot-pulse {
  width: 10px;
  height: 10px;
  background-color: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: statusPulse 1.8s infinite;
}

@keyframes statusPulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.monitor-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F8FAFC;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.monitor-domain {
  font-weight: 800;
  font-size: 0.95rem;
  font-family: var(--font-heading);
}

.monitor-ping-bars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.ping-bar {
  width: 6px;
  height: 22px;
  background-color: #22C55E;
  border-radius: 2px;
  border: 1px solid #15803D;
}

.ping-bar.degraded { background-color: #F59E0B; border-color: #B45309; }

/* --- 3-Box Value Prop Section --- */
.section-heading-wrapper {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  margin-top: 14px;
}

.emoji-icon-box {
  width: 58px;
  height: 58px;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

/* --- Bento Grid Section --- */
.bento-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-card-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.bento-mockup-area {
  margin-top: 20px;
  background-color: #FFFFFF;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

/* --- Tool Integrations Row --- */
.integration-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background-color: #FFFFFF;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease;
}

.integration-pill:hover {
  transform: scale(1.05) rotate(-2deg);
  background-color: var(--yellow-brand);
}

/* --- Alternating Deep Dive Section --- */
.deep-dive-section {
  background-color: var(--peach-brand);
  border-top: var(--stroke-width) solid var(--border-black);
  border-bottom: var(--stroke-width) solid var(--border-black);
  padding: 90px 0;
}

.feature-mockup-box {
  background: #FFFFFF;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
}

/* --- Testimonials Sticky Note Grid --- */
.testimonial-card {
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 24px;
  position: relative;
  transition: transform 0.2s ease;
}

.testimonial-card:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: var(--shadow-lg);
}

/* --- Pricing Cards Section --- */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.pricing-header-box {
  padding: 16px;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.price-display {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 1;
  margin: 16px 0 6px 0;
}

.price-period {
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature-check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px 0;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.check-icon-pill {
  width: 22px;
  height: 22px;
  background-color: var(--yellow-brand);
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* --- FAQ Accordion --- */
.nb-accordion .accordion-item {
  border: var(--stroke-width) solid var(--border-black) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  background-color: #FFFFFF;
}

.nb-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
  background-color: #FFFFFF;
  padding: 20px 24px;
  box-shadow: none !important;
}

.nb-accordion .accordion-button:not(.collapsed) {
  background-color: var(--yellow-brand);
  color: var(--text-main);
  border-bottom: var(--stroke-width) solid var(--border-black);
}

.nb-accordion .accordion-body {
  padding: 20px 24px;
  font-size: 1rem;
  line-height: 1.6;
  color: #334155;
  background-color: #FFFFFF;
}

/* --- Newsletter Section --- */
.newsletter-banner {
  background-color: var(--yellow-brand);
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 50px 30px;
  text-align: center;
}

.input-nb {
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.input-nb:focus {
  outline: none;
  box-shadow: var(--shadow-md);
}

/* --- Footer --- */
.nb-footer {
  background-color: var(--mint-brand);
  border-top: var(--stroke-width) solid var(--border-black);
  padding: 60px 0 30px 0;
  margin-top: 80px;
}

.footer-link {
  font-weight: 700;
  color: var(--text-main);
  transition: color 0.15s ease;
}

.footer-link:hover {
  text-decoration: underline;
}

/* --- Pricing Comparison Matrix Table --- */
.pricing-matrix-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: var(--stroke-width) solid var(--border-black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background-color: #FFFFFF;
}

.pricing-matrix-table th, .pricing-matrix-table td {
  padding: 18px 24px;
  border-bottom: 2px solid var(--border-black);
  border-right: 2px solid var(--border-black);
  font-weight: 600;
  vertical-align: middle;
}

.pricing-matrix-table th:last-child, .pricing-matrix-table td:last-child {
  border-right: none;
}

.pricing-matrix-table tr:last-child td {
  border-bottom: none;
}

.pricing-matrix-table th {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  background-color: var(--yellow-brand);
  text-transform: uppercase;
}

/* --- Responsive Adjustments --- */
@media (max-width: 991.98px) {
  .hero-dashboard-preview {
    perspective: none;
  }
  .dashboard-card-wrapper {
    transform: none !important;
  }
  .deep-dive-section {
    padding: 60px 0;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .nb-card {
    padding: 20px;
  }
  .price-display {
    font-size: 2.2rem;
  }
  .newsletter-banner {
    padding: 36px 18px;
  }
}
.brand-logo img{
    width: 190px;
}
.list-style2 li p{
    margin-bottom: 5px;
    padding: 0;
}
.brand-logo img{
    width: 200px;
}
   
.inner-title-tx {
      font-size: clamp(2.2rem, 5.5vw, 3.2rem);
    line-height: 1.08;
    max-width: 950px;
    margin: 24px auto;
}