body {
  background-color: #fb923c;
  color: #e5e7eb;
  padding-top: 72px; /* navbar height */
  margin: 0;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw; /* force full viewport width */
  height: 72px;
  background-color: #0f1115;
  border-bottom: 1px solid #1f2933;
  z-index: 1030;
}

/* Grid spans entire navbar */
.navbar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
  height: 100%;
}

/* Each box */
.nav-item {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-right: 1px solid #1f2933;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.nav-item:last-child {
  border-right: none;
}

/* Logo */
.nav-item.brand {
  color: #f97316;
  font-weight: 700;
  font-size: 1.6rem;
}

/* Hover */
.nav-item:hover {
  background-color: #161a22;
  color: #f97316;
}

/* Active */
.nav-item.active {
  background-color: #161a22;
  color: #f97316;
}

/* Larger screens = bigger text */
@media (min-width: 992px) {
  .nav-item {
    font-size: 1.5rem;
  }

  .nav-item.brand {
    font-size: 1.8rem;
  }
}

/* ===== HOME PAGE ===== */
.home {
  min-height: calc(100vh - 72px);
  background-color: #fb923c;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 2rem;
}

/* LOGO */
.home-logo {
  margin-bottom: 1rem;
}

.home-logo img {
  width: 300px;
  height: 300px;
  object-fit: contain;
  border-radius: 16px;
}
/* GRID */
.home-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* INDIVIDUAL BOX */
.home-box {
  background-color: #1f2933;
  border: 1px solid #2a3441;
  padding: 1.5rem 1.5rem;
  border-radius: 6px; /* edged, not rounded */
}

.home-box.wide {
  grid-column: 1 / -1;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
  border-radius: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #f97316;
  letter-spacing: 0.07em;
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
  user-select: none;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  cursor: default;
}

.home-box.wide:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
  text-shadow: 0 0 12px rgba(249, 115, 22, 0.8);
}

.home-box:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
}

/* TEXT */
.home-box h3 {
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.home-box p {
  color: #e5e7eb;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* CHECKLIST */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;

  padding: 0.6rem 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e5e7eb;
  transition:
    transform 0.15s ease,
    color 0.15s ease;
}
.checklist li:hover {
  transform: translateX(4px);
  color: #ffffff;
}

/* Custom bullet */
.checklist li::before {
  content: "◆";
  color: #3b82f6;
  font-size: 0.9rem;
  margin-top: 0.35rem;

  text-shadow: 0 0 6px rgba(59, 130, 246, 0.6);
}

.features {
  min-height: calc(100vh - 72px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem;
}

/* Big single block */
.features-box {
  width: 100%;
  max-width: 1100px;
  background-color: #1f2933;
  border: 1px solid #2a3441;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* Two-column layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.feature-column h3,
.features-center h3 {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;

  text-shadow:
    0 0 6px rgba(59, 130, 246, 0.6),
    0 0 14px rgba(59, 130, 246, 0.35);
}

/* Bottom centered section */
.features-center {
  margin-top: 4rem;
  text-align: center;
}

.features-center h3 {
  margin-bottom: 1rem;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .features-box {
    padding: 2rem;
  }
}

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.6s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-header h2 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #f97316;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;

  text-align: center;

  text-shadow:
    0 0 6px rgba(59, 130, 246, 0.5),
    0 0 14px rgba(59, 130, 246, 0.35),
    0 0 26px rgba(59, 130, 246, 0.2);
}

.features-header p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e5e7eb;

  text-align: center;
}
.features-center .checklist {
  display: inline-block;
}

.features-center .checklist li {
  justify-content: center;
}

.features-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 4rem;
  align-items: center;
}

/* Image box */
.features-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #2a3441;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* Security list */
.features-security h3 {
  margin-bottom: 1.25rem;
}

/* Mobile stacking */
@media (max-width: 768px) {
  .features-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .features-security .checklist {
    display: inline-block;
  }
}
body.features-page {
  position: relative; /* establish containing block */
  background: none; /* remove any background color */
  min-height: 100vh; /* full viewport height */
  color: #e5e7eb; /* your text color */
  padding-top: 72px; /* your navbar offset */
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  z-index: 0;
}

body.features-page::before {
  content: "";
  position: fixed; /* fixed to viewport */
  inset: 0; /* cover all sides */
  background-image: url("../images/UI.png"); /* your background image */
  background-size: cover;
  background-position: center;
  opacity: 0.67; /* semi-transparent */
  z-index: -1; /* behind content */
  pointer-events: none; /* allow clicks through */
}

.plans-container {
  padding: 100px 20px 50px; /* account for fixed navbar */
  max-width: 900px;
  margin: 0 auto;
  zoom: 1.5;
}
.card {
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}
.card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.plan-overlay {
  display: none; /* hide on page load */
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;

  align-items: center;
  justify-content: center;
}

.plan-overlay-card {
  background: white;
  width: 95%;
  max-width: 1000px;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
.plan-overlay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  flex-grow: 1;
}
.overlay-image img {
  width: 100%;
  max-height: 450px;
  object-fit: contain;
  border-radius: 12px;
}
.overlay-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.overlay-content h2 {
  margin-bottom: 1rem;
  color: #ff7a00; /* your orange */
  font-weight: 700;
}

.plan-details {
  flex-grow: 1;
  font-size: 1.1rem;
}

/* buttons always at bottom */
.overlay-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.plan-overlay-card,
.plan-overlay-card p,
.plan-overlay-card li {
  color: #000;
  opacity: 1;
}

.bonus-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* IMPORTANT */
  justify-content: center;
  align-items: center;
  z-index: 2000; /* higher than first modal */
}

.bonus-modal.show {
  display: flex;
}

.bonus-modal-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  width: 90%;
}

.bonus-title {
  color: orange;
  margin-bottom: 1rem;
}

.bonus-modal-card p,
.bonus-modal-card h2 {
  color: #000;
}

/* Use your existing background and font from features page */
body.features-page {
  position: relative;
  background: none;
  min-height: 100vh;
  color: #e5e7eb;
  padding-top: 72px;
  font-family:
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    sans-serif;
  z-index: 0;
}

/* Card container styling */
.reviews-card {
  background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
  color: #e5e7eb;
  max-width: 700px;
  margin: 0 auto;
}

/* Title styling */
.reviews-title {
  color: #f97316;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  margin-bottom: 1rem;
  font-size: 2rem;
}

/* Description text */
.reviews-description {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 2rem;
}

/* Each review container */
.review {
  background-color: #111827; /* slightly different dark background */
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(249, 115, 22, 0.15);
  border: 1px solid #2a3441;
}

.review-name {
  color: #f97316;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #2a3441;
  padding-bottom: 0.4rem;
}

.review-stars {
  font-size: 1.4rem;
  color: #f97316; /* orange for filled stars */
  margin: 0.75rem 0;
  user-select: none;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #2a3441;
  padding-bottom: 0.5rem;
}

.review-stars .empty {
  color: #6b7280; /* gray for empty stars */
}

.review-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #e5e7eb;
  margin-top: 1rem;
}
/* Container */
.about-container {
  padding: 15px 20px 50px;
  display: flex;
  justify-content: center;
}

/* Big centered card */
.about-card {
  width: 100%;
  max-width: 900px;
  background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
  border: 1px solid #2a3441;
}

/* Image section */
.about-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #2a3441;
}

/* Content section */
.about-content {
  padding: 1.5rem 3rem;
  text-align: center;
}

/* Fancy title */
.about-title {
  color: #f97316;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  text-shadow:
    0 0 6px rgba(59, 130, 246, 0.5),
    0 0 14px rgba(59, 130, 246, 0.35),
    0 0 26px rgba(59, 130, 246, 0.2);
}

/* Text */
.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 1.2rem;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .about-content {
    padding: 2rem;
  }

  .about-title {
    font-size: 2.1rem;
  }
}
/* Container */
.contact-container {
  padding: 120px 20px 50px;
  display: flex;
  justify-content: center;
}

/* Big centered card */
.contact-card {
  width: 100%;
  max-width: 800px;
  background: linear-gradient(135deg, #1f2933 0%, #111827 100%);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
  border: 1px solid #2a3441;
}

/* Content */
.contact-content {
  padding: 3rem;
  text-align: center;
}

/* Fancy title */
.contact-title {
  color: #f97316;
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;

  text-shadow:
    0 0 6px rgba(59, 130, 246, 0.5),
    0 0 14px rgba(59, 130, 246, 0.35),
    0 0 26px rgba(59, 130, 246, 0.2);
}

/* Intro text */
.contact-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #e5e7eb;
  margin-bottom: 2.5rem;
}

/* Contact info layout */
.contact-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Individual contact block */
.contact-item {
  background-color: #111827;
  border: 1px solid #2a3441;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
}

/* Labels */
.contact-label {
  display: block;
  color: #f97316;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

/* Links */
.contact-item a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-content {
    padding: 2rem;
  }

  .contact-title {
    font-size: 2.1rem;
  }
}
