/* ===== LIGHTHOUSE CHRM — LANDING PAGE STYLES ===== */

/* Note: :root{} is stripped by WordPress Additional CSS — variables live on body instead */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  --navy: #1B3A5C;
  --navy-dark: #122840;
  --navy-light: #244d7a;
  --amber: #F4A228;
  --amber-dark: #d98e1a;
  --green: #2ECC71;
  --text: #2C2C2C;
  --text-muted: #6B7280;
  --border: #E5E7EB;
  --bg: #F8F9FA;
  --white: #FFFFFF;
	--cream: #f7f2e6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
	max-width: 100%;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-size: 18px;
  font-weight: 600;
}

.logo-icon { height: 36px; width: auto; display: inline-block; vertical-align: middle; }
.logo-text strong { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.lh-caption{
  color: var(--amber) !important;
  padding: 9px 20px;
	text-align: right;
	margin-right: 30%;
	font-style: italic;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 30px;
}

.btn-nav-login {
  color: var(--navy) !important;
  border: 1.5px solid var(--border);
  padding: 8px 18px;
  border-radius: 8px;
  transition: border-color 0.s, background 0.2s !important;
}

.btn-nav-login:hover {
  background: var(--bg) !important;
  border-color: var(--navy) !important;
}

.btn-nav-cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav-cta:hover { background: var(--amber-dark) !important; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--navy);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--amber);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244,162,40,0.4);
}

.btn-primary:hover {
  background: var(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244,162,40,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-xl { padding: 18px 40px; font-size: 18px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2a5f9e 100%);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(244,162,40,0.2);
  color: var(--amber);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.text-accent { color: var(--amber); }

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-disclaimer {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

/* ===== DASHBOARD MOCKUP ===== */
.dashboard-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.3s;
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #f1f3f5;
  border-bottom: 1px solid var(--border);
}

.mockup-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FEBC2E; }
.mockup-dot.green { background: #28C840; }

.mockup-title {
  font-size: 12px;
  color: var(--text-muted);
  margin-left: 8px;
}

.mockup-body { padding: 20px; }

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: var(--bg);
  border-radius: 8px;
  padding: 12px 14px;
}

.stat-label { font-size: 11px; color: var(--text-muted); font-weight: 500; }
.stat-value { font-size: 22px; font-weight: 700; color: var(--navy); margin: 2px 0; }
.stat-delta { font-size: 11px; font-weight: 500; }
.stat-delta.up { color: var(--green); }
.stat-delta.neutral { color: var(--text-muted); }

.mockup-chart { background: var(--bg); border-radius: 8px; padding: 14px; }
.chart-label { font-size: 11px; color: var(--text-muted); margin-bottom: 12px; font-weight: 500; }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.bar {
  flex: 1;
  background: var(--navy-light);
  border-radius: 4px 4px 0 0;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.bar.active { background: var(--amber); opacity: 1; }

.bar span {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* ===== APP PREVIEW SECTION ===== */
.app-preview { padding: 100px 0; background: var(--white); }
.app-preview .dashboard-mockup {
  transform: none;
  box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.07);
  margin-top: 56px;
}
.app-preview .dashboard-mockup:hover { transform: none; }
.mockup-app { display: flex; overflow: hidden; }
.mockup-sidebar {
  width: 185px;
  background: #0d3535;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.mockup-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mockup-brand-logo {
  width: 28px; height: 28px;
  background: #fff url('https://lighthousechrm.web.app/LighthouseChRMLogo.png') center/contain no-repeat;
  border-radius: 6px;
  flex-shrink: 0;
}
.mockup-brand-name { font-size: 10px; font-weight: 600; color: #f0f7f2; line-height: 1.3; }
.mockup-brand-denom { font-size: 8.5px; color: #5fa8a6; }
.mockup-nav-list { flex: 1; padding: 8px 0; }
.mockup-nav-item {
  padding: 7px 12px;
  font-size: 10.5px;
  color: #5fa8a6;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: default;
  border-left: 3px solid transparent;
}
.mockup-nav-item.active {
  color: #f0f7f2;
  background: rgba(255,255,255,0.07);
  border-left-color: #F4A228;
  font-weight: 500;
}
.mockup-badge {
  margin-left: auto;
  background: #f59e0b;
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 5px;
  line-height: 14px;
}
.mockup-body { padding: 20px 22px; flex: 1; }
.mockup-page-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.mockup-events { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.mockup-event {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  color: var(--text);
}
.mockup-event-date { margin-left: auto; font-size: 9.5px; color: var(--text-muted); }
.event-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.event-dot.blue   { background: #3b82f6; }
.event-dot.orange { background: #F4A228; }
.event-dot.green  { background: #10b981; }
.event-dot.purple { background: #8b5cf6; }
.mockup-two-col { display: grid; grid-template-columns: 3fr 2fr; gap: 14px; margin-top: 14px; }
@media (max-width: 900px) {
  .mockup-sidebar { display: none; }
  .mockup-two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .app-preview { padding: 60px 0; }
  .mockup-stats { grid-template-columns: 1fr 1fr; }
}

/* ===== SCREENSHOTS PAGE ===== */
.screenshots-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0 60px; text-align: center; }
.screenshots-hero h1 { font-size: clamp(32px,4vw,50px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.screenshots-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 500px; margin: 0 auto 32px; }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; padding: 80px 0; }
.module-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}
.module-card:hover { border-color: var(--navy); box-shadow: var(--shadow); transform: translateY(-2px); }
.module-thumb {
  background: linear-gradient(135deg, #0d3535 0%, #1B3A5C 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
}
.module-info { padding: 20px 22px; }
.module-info h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.module-info p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }
@media (max-width: 900px) { .module-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .module-grid { grid-template-columns: 1fr; } }

/* ===== CONTACT PAGE ===== */
.contact-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 80px 0 60px; text-align: center; }
.contact-hero h1 { font-size: clamp(32px,4vw,50px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.contact-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto; }
.contact-body { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; align-items: start; }
.contact-form { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.contact-form h2 { font-size: 24px; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; }
.contact-info-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.contact-info-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.contact-info-card a { color: var(--amber); text-decoration: none; font-weight: 600; }
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== PROOF STRIP ===== */
.proof-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.proof-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.proof-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.proof-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.proof-stat {
  font-size: 14px;
  color: var(--text-muted);
}

.proof-stat strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
  display: block;
}

.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-eyebrow {
  display: inline-block;
  background: rgba(27,58,92,0.08);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-eyebrow.light {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
}

.section-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.2s;
}

.feature-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border-color: transparent;
}

.feature-card.featured h3,
.feature-card.featured p {
  color: var(--white);
}

.feature-card.featured .feature-list li {
  color: rgba(255,255,255,0.75);
}

.feature-card.featured .feature-list li::before {
  color: var(--amber);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.feature-list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg);
  padding: 100px 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-top: 60px;
}

.step {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  text-align: center;
}

.step-number {
  font-size: 48px;
  font-weight: 800;
  color: rgba(27,58,92,0.1);
  line-height: 1;
  margin-bottom: 16px;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

.step-arrow {
  font-size: 32px;
  color: var(--amber);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
}

.testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-text::before { content: "\201C"; color: var(--amber); font-size: 24px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== TRIAL ===== */
.trial {
  padding: 80px 0;
  background: var(--bg);
}

.trial-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 60px;
  text-align: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.trial-card h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.trial-card > p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.trial-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  margin-bottom: 44px;
}

.trial-feature {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.check {
  color: var(--amber);
  font-weight: 700;
  margin-right: 6px;
}

.trial-login {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.trial-login a {
  color: var(--amber);
  text-decoration: none;
  font-weight: 600;
}

.trial-login a:hover { text-decoration: underline; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .nav-logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card.featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trial-card { padding: 48px 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .proof-inner { flex-direction: column; gap: 16px; }
  .proof-stats { margin-left: 0; }
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-burger { display: block; }
}

/* ===== HIDE WORDPRESS THEME HEADER & FOOTER =====
   Covers most WordPress themes and WordPress.com themes */
.site-header,
.site-footer,
#masthead,
#colophon,
header.site-header,
footer.site-footer,
.wp-block-template-part[class*="header"],
.wp-block-template-part[class*="footer"],
.global-header,
.global-footer,
.navbar.navbar-default,
.ast-hfb-header,
.main-header-bar,
.ast-masthead-custom-menu-items,
.footer-widgets-outer-wrapper,
.footer-top,
.page-header,
.entry-header {
  display: none !important;
}

/* ===== WORDPRESS FULL-WIDTH FIX =====
   Breaks Custom HTML blocks out of the theme's content column
   so sections fill the entire viewport edge-to-edge */
.wp-block-html,
.wp-block-freeform {
  max-width: 100vw !important;
  width: 100vw !important;
  position: relative;
  left: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box;
}

/* Remove padding/max-width from the page content wrapper */
.entry-content,
.wp-block-post-content,
.site-main .page-content,
.wp-block-group__inner-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* CSS-only mobile nav toggle (no JS required) */
#lhcrm-nav-toggle:checked + .nav .nav-links {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #FFFFFF;
  padding: 24px;
  gap: 16px;
  border-bottom: 1px solid #E5E7EB;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  z-index: 99;
}



/* ===== HOW IT WORKS PAGE ===== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  padding: 60px 0;
}
.guide-card {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s;
}
.guide-card:hover { border-color: #1B3A5C; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.guide-icon { font-size: 36px; margin-bottom: 14px; }
.guide-card h3 { font-size: 20px; font-weight: 700; color: #1B3A5C; margin-bottom: 10px; }
.guide-card > p { font-size: 14px; color: #6B7280; line-height: 1.65; margin-bottom: 16px; }
.guide-steps { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; counter-reset: step-counter; }
.guide-steps li {
  font-size: 13px;
  color: #4b5563;
  padding: 8px 12px 8px 36px;
  background: #F8F9FA;
  border-radius: 8px;
  position: relative;
  counter-increment: step-counter;
}
.guide-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 10px;
  top: 8px;
  width: 18px;
  height: 18px;
  background: #1B3A5C;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) { .guide-grid { grid-template-columns: 1fr; } }

/* ===== PRICING PAGE ===== */
.pricing-body { padding: 80px 0; }
.pricing-note { text-align: center; font-size: 14px; color: #6B7280; margin-bottom: 40px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.pricing-card.popular {
  border-color: #1B3A5C;
  box-shadow: 0 8px 40px rgba(27,58,92,0.15);
  transform: translateY(-8px);
}
.pricing-badge {
  display: inline-block;
  background: #F4A228;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-tier { font-size: 22px; font-weight: 800; color: #1B3A5C; margin-bottom: 8px; }
.pricing-price { font-size: 44px; font-weight: 800; color: #1B3A5C; line-height: 1; margin-bottom: 4px; }
.pricing-price span { font-size: 18px; font-weight: 500; color: #6B7280; }
.pricing-capacity { font-size: 13px; color: #6B7280; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #E5E7EB; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 14px; color: #4b5563; padding-left: 22px; position: relative; }
.pricing-features li::before { content: "✓"; position: absolute; left: 0; color: #2ECC71; font-weight: 700; }
.pricing-multicampus {
  margin-top: 40px;
  background: linear-gradient(135deg, #1B3A5C, #244d7a);
  border-radius: 16px;
  padding: 40px;
}
.pricing-mc-content {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-mc-icon { font-size: 40px; flex-shrink: 0; }
.pricing-mc-content > div:nth-child(2) { flex: 1; min-width: 200px; }
.pricing-mc-content h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.pricing-mc-content p { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.pricing-mc-price { text-align: center; flex-shrink: 0; }
.pricing-mc-price strong { display: block; font-size: 32px; font-weight: 800; color: #fff; }
.pricing-mc-price strong span { font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.7); }
.pricing-mc-price span:last-child { font-size: 12px; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
.pricing-tax-note {
  text-align: center;
  font-size: 14px;
  color: #6B7280;
  margin-top: 28px;
  padding: 16px 24px;
  background: #F8F9FA;
  border-radius: 10px;
  border: 1px solid #E5E7EB;
}
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } .pricing-card.popular { transform: none; } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } .pricing-mc-content { flex-direction: column; text-align: center; } }

/* ===== SCREENSHOT LIGHTBOX (CSS :target, no JS) ===== */
.module-card { display: block; text-decoration: none !important; color: inherit; cursor: pointer; }
.module-card:hover { border-color: #1B3A5C; box-shadow: 0 4px 20px rgba(0,0,0,0.08); transform: translateY(-2px); }
.module-card .module-thumb::after { content: "Click to preview →"; display: block; font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 8px; }
.screenshot-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(0,0,0,0.92);
}
.screenshot-modal:target { display: flex !important; }
.screenshot-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  text-decoration: none;
}
.screenshot-modal-box {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 40px 8px 16px;
  width: fit-content;
  max-width: 98vw;
  max-height: 97vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.screenshot-modal-close {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 30px;
  text-decoration: none;
  color: rgba(255,255,255,0.6);
  line-height: 1;
  font-weight: 300;
  z-index: 1;
}
.screenshot-modal-close:hover { color: #fff; }
.screenshot-modal-box h3 { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.85); margin-bottom: 10px; padding: 0 8px; align-self: flex-start; }
.screenshot-img {
  display: block;
  width: auto;
  height: auto;
  max-width: calc(98vw - 16px);
  max-height: calc(90vh - 70px);
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.screenshot-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; padding: 10px 8px 0; align-self: flex-start; }
.screenshot-todo { display: none; }
@media (max-width: 640px) { .screenshot-modal-box { padding: 40px 4px 12px; } }
