/* ============================================
   PERMANENT LIGHTING PAGE — Divided Sky
   Prefix: pl-
   Depends on: homepage-v2.css (nav, footer, buttons, colors, animations)

/* Global heading spacing fix */
.ds-insurance-claims .ds-section-label,
.ds-permanent-lighting .ds-section-label {
  margin-bottom: 8px;
  display: block;
}
   ============================================ */

/* --- HERO --- */
.pl-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.pl-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.pl-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,25,25,0.25) 0%, rgba(25,25,25,0.5) 50%, rgba(25,25,25,0.7) 100%);
  z-index: 1;
}
.pl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.pl-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 24px;
}
.pl-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  margin: 0 0 32px;
  max-width: 600px;
}
.pl-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.pl-hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.pl-hero-stat {
  text-align: center;
}
.pl-hero-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
}
.pl-hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* --- PROBLEM / WHY PERMANENT --- */
.pl-problem {
  padding: 100px 0;
  background: #fff;
}
.pl-problem-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-problem-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 20px;
}
.pl-problem-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.pl-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.pl-problem-card {
  border-radius: 16px;
  padding: 40px 32px;
}
.pl-problem-old {
  background: #f8f9fa;
  border: 1px solid #eee;
}
.pl-problem-new {
  background: rgba(119,232,6,0.05);
  border: 2px solid var(--ds-green);
}
.pl-problem-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin-bottom: 20px;
}
.pl-problem-new .pl-problem-label {
  color: var(--ds-green);
}
.pl-problem-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pl-problem-card ul li {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.pl-problem-card ul li:last-child { border-bottom: none; }
.pl-problem-old ul li::before {
  content: "✗ ";
  color: #c00;
  font-weight: 700;
}
.pl-problem-new ul li::before {
  content: "✓ ";
  color: var(--ds-green);
  font-weight: 700;
}

/* --- SCENES --- */
.pl-scenes {
  padding: 100px 0;
  background: var(--ds-dark);
}
.pl-scenes-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-scenes-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 20px 0 20px;
}
.pl-scenes-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
}
.pl-scenes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pl-scene-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pl-scene-card:hover {
  transform: translateY(-4px);
  border-color: var(--ds-green);
}
.pl-scene-img-wrap img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.pl-scene-body {
  padding: 28px 24px;
}
.pl-scene-body h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}
.pl-scene-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin: 0;
}

/* --- HOW IT WORKS --- */
.pl-how {
  padding: 100px 0;
  background: #f8f9fa;
}
.pl-how-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-how-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 20px;
}
.pl-how-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
}
.pl-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.pl-how-step {
  text-align: center;
  position: relative;
  padding: 0 8px;
}
.pl-how-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ds-green);
  color: var(--ds-dark);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.pl-how-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--ds-green), rgba(119,232,6,0.2));
}
.pl-how-step:last-child .pl-how-connector { display: none; }
.pl-how-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin: 0 0 8px;
}
.pl-how-step p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}
.pl-how-cta {
  text-align: center;
}

/* --- APP CONTROL --- */
.pl-app {
  padding: 100px 0;
  background: #fff;
}
.pl-app-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pl-app-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.12);
}
.pl-app-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 20px;
}
.pl-app-content > p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 40px;
}
.pl-app-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.pl-app-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pl-app-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}
.pl-app-feature h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin: 0 0 4px;
}
.pl-app-feature p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* --- INSTALLATION / PRODUCT --- */
.pl-install {
  padding: 100px 0;
  background: var(--ds-dark);
}
.pl-install-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pl-install-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 20px 0 20px;
}
.pl-install-content > p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
}
.pl-install-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pl-spec {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pl-spec strong {
  color: #fff;
}
.pl-install-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.3);
}

/* --- WHY DIVIDED SKY --- */
.pl-why {
  padding: 100px 0;
  background: #f8f9fa;
}
.pl-why-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-why-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 20px;
}
.pl-why-sub {
  font-size: 1.05rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.pl-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pl-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.pl-why-number {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-green);
  flex-shrink: 0;
  line-height: 1;
}
.pl-why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ds-dark);
  margin: 0 0 8px;
}
.pl-why-item p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* --- REVIEWS --- */
.pl-reviews {
  padding: 100px 0;
  background: #fff;
}
.pl-reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-reviews-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 0;
}
.pl-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
.pl-review-card {
  background: #f8f9fa;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 36px 32px;
}
.pl-review-stars {
  font-size: 1.2rem;
  color: #f9a825;
  margin-bottom: 16px;
}
.pl-review-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0 0 16px;
  font-style: italic;
}
.pl-review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ds-dark);
}
.pl-reviews-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  align-items: center;
}
.pl-badge {
  height: 56px;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.pl-badge:hover { opacity: 1; }

/* --- FAQ --- */
.pl-faq {
  padding: 100px 0;
  background: var(--ds-dark);
}
.pl-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.pl-faq-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: #fff;
  margin: 20px 0 0;
}
.pl-faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.pl-faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pl-faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  text-align: left;
  gap: 16px;
  font-family: inherit;
}
.pl-faq-trigger:hover { color: var(--ds-green); }
.pl-faq-icon {
  font-size: 1.5rem;
  color: var(--ds-green);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.pl-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.pl-faq-answer p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  padding: 0 0 24px;
  margin: 0;
}
.pl-faq-open .pl-faq-answer { max-height: 400px; }
.pl-faq-open .pl-faq-icon { transform: rotate(45deg); }

/* --- SERVICE AREA --- */
.pl-service-area {
  padding: 80px 0;
  background: #f8f9fa;
}
.pl-service-area .ds-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.pl-area-content h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ds-dark);
  margin: 20px 0 20px;
}
.pl-area-sub {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
  margin: 0 0 20px;
}
.pl-area-link {
  color: var(--ds-green);
  font-weight: 600;
  text-decoration: none;
}
.pl-area-link:hover { text-decoration: underline; }
.pl-map-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

/* --- FINAL CTA --- */
.pl-final-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #111 0%, var(--ds-dark) 100%);
  text-align: center;
}
.pl-final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
}
.pl-final-cta p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.pl-final-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .pl-how-steps { grid-template-columns: repeat(2, 1fr); }
  .pl-how-connector { display: none; }
  .pl-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .pl-hero-overlay {
    background: linear-gradient(to bottom, rgba(25,25,25,0.25) 0%, rgba(25,25,25,0.5) 50%, rgba(25,25,25,0.7) 100%);
  }

  .pl-hero { min-height: 80vh; padding: 100px 0 60px; }
  .pl-hero h1 { font-size: 2.2rem; }
  .pl-hero-stats { gap: 24px; }
  .pl-hero-stat-number { font-size: 1.4rem; }
  .pl-problem-grid { grid-template-columns: 1fr; }
  .pl-scenes-grid { grid-template-columns: 1fr; }
  .pl-how-steps { grid-template-columns: 1fr; gap: 32px; }
  .pl-app-layout { grid-template-columns: 1fr; }
  .pl-app-image { order: -1; }
  .pl-install-layout { grid-template-columns: 1fr; }
  .pl-install-image { order: -1; }
  .pl-why-grid { grid-template-columns: 1fr; }
  .pl-reviews-grid { grid-template-columns: 1fr; }
  .pl-service-area .ds-container { grid-template-columns: 1fr; }
  .pl-hero-buttons { flex-direction: column; }
  .pl-final-buttons { flex-direction: column; align-items: center; }
}
