/* LiteNotify public marketing site */

:root {
  --mkt-ink: #0b1f1a;
  --mkt-muted: #5a7168;
  --mkt-panel: #ffffff;
  --mkt-line: rgba(11, 31, 26, 0.1);
  --mkt-accent: #0f8a65;
  --mkt-accent-2: #16a34a;
  --mkt-soft: #eef7f2;
  --mkt-dark: #10241d;
  --mkt-radius: 18px;
  --mkt-shadow: 0 18px 40px rgba(11, 31, 26, 0.1);
  --mkt-font: "IBM Plex Sans Arabic", "Segoe UI", Tahoma, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.mkt-body {
  margin: 0;
  font-family: var(--mkt-font);
  color: var(--mkt-ink);
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(15, 138, 101, 0.16), transparent 55%),
    radial-gradient(700px 380px at 0% 20%, rgba(22, 163, 74, 0.08), transparent 50%),
    #f5f8f6;
  min-height: 100vh;
}

.mkt-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--mkt-line);
}

.mkt-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.mkt-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit !important;
  text-decoration: none !important;
}

.mkt-brand strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1.1;
}

.mkt-brand small {
  color: var(--mkt-muted);
  font-size: 0.78rem;
}

.mkt-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #22c55e, #0f8a65);
  box-shadow: 0 8px 18px rgba(15, 138, 101, 0.3);
  font-size: 1.25rem;
}

.mkt-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  flex-wrap: wrap;
}

.mkt-nav a {
  color: var(--mkt-ink) !important;
  text-decoration: none !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.35rem 0.2rem;
  border-bottom: 2px solid transparent;
}

.mkt-nav a:hover,
.mkt-nav a.active {
  color: var(--mkt-accent) !important;
  border-bottom-color: var(--mkt-accent);
}

.mkt-nav-cta {
  background: var(--mkt-accent) !important;
  color: #fff !important;
  border-radius: 999px !important;
  border-bottom: none !important;
  padding: 0.45rem 1rem !important;
}

.mkt-nav-cta:hover,
.mkt-nav-cta.active {
  background: #0c7455 !important;
  color: #fff !important;
  border-bottom: none !important;
}

.mkt-nav-toggle {
  display: none;
  border: 1px solid var(--mkt-line);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.mkt-hero {
  padding: 3.5rem 0 2.5rem;
}

.mkt-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.mkt-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--mkt-soft);
  color: var(--mkt-accent);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mkt-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
}

.mkt-hero p.lead {
  color: var(--mkt-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mkt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.mkt-hero-visual {
  border-radius: var(--mkt-radius);
  overflow: hidden;
  box-shadow: var(--mkt-shadow);
  background: #fff;
  border: 1px solid var(--mkt-line);
}

.mkt-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mkt-section {
  padding: 3.25rem 0;
}

.mkt-section.alt {
  background: #fff;
  border-block: 1px solid var(--mkt-line);
}

.mkt-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2rem;
}

.mkt-section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.65rem;
}

.mkt-section-head p {
  color: var(--mkt-muted);
  margin: 0;
  line-height: 1.7;
}

.mkt-card {
  background: var(--mkt-panel);
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.35rem;
  height: 100%;
  box-shadow: 0 8px 24px rgba(11, 31, 26, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mkt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mkt-shadow);
}

.mkt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--mkt-soft);
  color: var(--mkt-accent);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
}

.mkt-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.mkt-card p,
.mkt-card li {
  color: var(--mkt-muted);
  line-height: 1.7;
}

.mkt-card ul {
  padding-inline-start: 1.1rem;
  margin: 0.75rem 0 0;
}

.mkt-card img.thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  border: 1px solid var(--mkt-line);
}

.mkt-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.mkt-feature {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.mkt-feature i {
  color: var(--mkt-accent);
  margin-top: 0.2rem;
}

.mkt-feature strong {
  display: block;
  margin-bottom: 0.25rem;
}

.mkt-feature span {
  color: var(--mkt-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.mkt-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.mkt-price {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.4rem 1.2rem;
  text-align: center;
  height: 100%;
}

.mkt-price.featured {
  border-color: rgba(15, 138, 101, 0.45);
  box-shadow: 0 14px 30px rgba(15, 138, 101, 0.12);
  transform: translateY(-4px);
}

.mkt-price .amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--mkt-accent);
  margin: 0.6rem 0;
}

.mkt-price ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.25rem;
  text-align: start;
}

.mkt-price li {
  color: var(--mkt-muted);
  padding: 0.35rem 0;
  border-bottom: 1px dashed var(--mkt-line);
  font-size: 0.92rem;
}

.mkt-cta-band {
  background: linear-gradient(135deg, #10241d, #0f8a65 70%);
  color: #fff;
  border-radius: calc(var(--mkt-radius) + 4px);
  padding: 2rem 1.5rem;
  text-align: center;
}

.mkt-cta-band h2 {
  margin-bottom: 0.6rem;
}

.mkt-cta-band p {
  opacity: 0.9;
  margin-bottom: 1.2rem;
}

.mkt-page-hero {
  padding: 2.5rem 0 1.5rem;
}

.mkt-page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.mkt-page-hero p {
  color: var(--mkt-muted);
  max-width: 720px;
  line-height: 1.7;
  margin: 0;
}

.mkt-docs {
  background: #fff;
  border: 1px solid var(--mkt-line);
  border-radius: var(--mkt-radius);
  padding: 1.5rem;
}

.mkt-docs h2 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.mkt-docs h2:first-child {
  margin-top: 0;
}

.mkt-docs pre {
  background: #0f1a17;
  color: #d7f5e6;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  overflow-x: auto;
  font-size: 0.86rem;
  direction: ltr;
  text-align: left;
}

.mkt-docs code {
  font-family: Consolas, "Courier New", monospace;
}

.mkt-docs .endpoint {
  display: inline-block;
  background: var(--mkt-soft);
  color: var(--mkt-accent);
  border-radius: 8px;
  padding: 0.2rem 0.55rem;
  font-weight: 600;
  direction: ltr;
}

.mkt-footer {
  background: var(--mkt-dark);
  color: rgba(255, 255, 255, 0.88);
  padding: 2.5rem 0 1.25rem;
  margin-top: 2rem;
}

.mkt-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.mkt-footer-text {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-size: 0.92rem;
}

.mkt-footer h6 {
  color: #fff;
  margin-bottom: 0.85rem;
}

.mkt-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mkt-footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.92rem;
  display: inline-block;
  margin-bottom: 0.4rem;
}

.mkt-footer-links a:hover {
  color: #fff !important;
}

.mkt-footer-bottom {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.btn-mkt-primary {
  background: var(--mkt-accent);
  border-color: var(--mkt-accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
}

.btn-mkt-primary:hover {
  background: #0c7455;
  border-color: #0c7455;
  color: #fff;
}

.btn-mkt-outline {
  background: transparent;
  border: 1px solid rgba(15, 138, 101, 0.35);
  color: var(--mkt-accent);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
}

.btn-mkt-outline:hover {
  background: var(--mkt-soft);
  color: var(--mkt-accent);
}

.btn-mkt-light {
  background: #fff;
  color: var(--mkt-accent);
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  border: none;
}

.btn-mkt-light:hover {
  background: #f0fdf6;
  color: var(--mkt-accent);
}

@media (max-width: 991.98px) {
  .mkt-hero-grid,
  .mkt-feature-grid,
  .mkt-price-grid {
    grid-template-columns: 1fr;
  }

  .mkt-price.featured {
    transform: none;
  }

  .mkt-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .mkt-nav {
    display: none;
    position: absolute;
    inset: 72px 1rem auto 1rem;
    background: #fff;
    border: 1px solid var(--mkt-line);
    border-radius: 14px;
    padding: 0.75rem;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--mkt-shadow);
  }

  .mkt-nav.open {
    display: flex;
  }

  .mkt-nav a {
    padding: 0.65rem 0.75rem;
    border-bottom: none;
    border-radius: 10px;
  }

  .mkt-nav a.active,
  .mkt-nav a:hover {
    background: var(--mkt-soft);
  }

  .mkt-header-inner {
    position: relative;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .mkt-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mkt-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
