
:root {
  --primary: #1d4ed8;
  --primary-light: #dbeafe;
  --bg-alt: #f8fafc;
}

* { box-sizing: border-box; }

a, button, .thumb {
  cursor: pointer;
}

body {
  margin: 0;
  font-family: system-ui, sans-serif;
}

.container {
  max-width: 1040px;
  margin: auto;
  padding: 0 1.5rem;
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}

.header-inner {
  max-width: 1040px;
  margin: auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary);
}

.logo img {
  width: 120px;
}

.nav a {
  margin: 0 0.75rem;
  text-decoration: none;
  color: #1f2933;
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.show {
  display: flex;
}

/* HERO + SECTIONS */
.hero {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(180deg, var(--primary-light), #ffffff);
}

.section {
  padding: 4rem 0;
}

.section.alt {
  background: var(--bg-alt);
}

.section-desc,
.closing-text {
  max-width: 720px;
  margin-top: 0.5rem;
  color: #475569;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.thumb {
  height: 160px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
/*  color: white;*/
/*  color: var(--primary);*/
  color: #FF0000;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* TESTIMONIAL */
.testimonial-section {
  background: linear-gradient(180deg, var(--primary-light), #ffffff);
}

.testimonial {
  max-width: 720px;
  margin: auto;
  padding: 2rem;
  border-left: 4px solid var(--primary);
  background: #fff;
  border-radius: 8px;
}

/* CTA */
.cta {
  background: var(--primary);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.lightbox.hidden {
  display: none;
}

.lightbox-inner {
  position: relative;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content {
  min-height: 200px;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* SHIMMER */
.shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #e5e7eb 25%,
    #f3f4f6 37%,
    #e5e7eb 63%
  );
  background-size: 400% 100%;
  animation: shimmer 1.4s infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.lightbox-content img,
.lightbox-content video {
  max-width: 100%;
  max-height: 80vh;
}

/* CLOSE BUTTON */
.lightbox .close {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1.1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

/* CONTROLS */
.lightbox-controls {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.lightbox button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

/* FOOTER */
.footer {
  padding: 2rem 0;
  text-align: center;
  color: #64748b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: block; }
  .logo img {
    width: 90px;
    margin-top: 4px;
  }

  header .cta {
    zoom: .7;
  }

  .header-left {
    gap: 0.5rem;
  }
}

@media (min-width: 640px) {
  .lightbox-content {
    min-width: 540px;
    min-height: 200px;
  }
}


/* --- v11a FIX: ensure close button glyph is visible --- */
.lightbox .close::before {
  content: "✕";
  position: absolute;
  font-size: 1.1rem;
  line-height: 1;
  color: #000;
}


/* --- v11b additions --- */

/* Mobile menu styling */
.mobile-menu {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.mobile-menu a {
  padding: 1rem 1.5rem;
  text-decoration: none;
  color: #1f2933;
  border-bottom: 1px solid #e5e7eb;
}

.mobile-menu a:hover {
  background: #f8fafc;
}

/* Pricing table */
.pricing-table {
  margin-top: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  padding: 0.75rem 1rem;
  border-top: 1px solid #e5e7eb;
}

.pricing-head {
  background: #f8fafc;
  font-weight: 600;
}

.pricing-row:first-child {
  border-top: none;
}

/* FAQ */
.faq-item {
  margin-top: 1.5rem;
}

.faq-item h4 {
  margin-bottom: 0.25rem;
}
