/* ═══════════════════════════════════════════════════════════════
   SunPowerEnergy.xyz — Dark Industrial Solar Landing Page
   ═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* ── DESIGN TOKENS ───────────────────────────────────────────── */
:root {
  --bg:             #08090c;
  --bg-card:        #0f1116;
  --bg-elevated:    #171b24;
  --bg-stripe:      #0b0d12;

  --text:           #f1f5f9;
  --text-muted:     #94a3b8;
  --text-dim:       #64748b;

  --amber:          #f59e0b;
  --amber-light:    #fbbf24;
  --amber-dark:     #d97706;
  --orange:         #f97316;
  --glow:           rgba(245, 158, 11, 0.18);
  --glow-strong:    rgba(245, 158, 11, 0.32);

  --border:         rgba(255, 255, 255, 0.07);
  --border-amber:   rgba(245, 158, 11, 0.35);

  --radius-sm:      8px;
  --radius-md:      14px;
  --radius-lg:      20px;
  --radius-xl:      28px;
  --radius-full:    9999px;

  --font-display:   'Bebas Neue', sans-serif;
  --font-sans:      'Plus Jakarta Sans', sans-serif;

  --header-h:       68px;
  --container:      1120px;

  --shadow-amber:   0 0 40px rgba(245, 158, 11, 0.15);
  --shadow-card:    0 4px 24px rgba(0, 0, 0, 0.4);
  --transition:     220ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; }
button { cursor: pointer; }

/* ── LAYOUT ──────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-amber);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.gradient-text {
  background: linear-gradient(130deg, var(--amber) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SCROLL REVEAL ───────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}
.btn-amber:hover {
  background: linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 100%);
  box-shadow: 0 6px 32px rgba(245, 158, 11, 0.45);
  transform: translateY(-2px);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber);
  border-color: var(--border-amber);
}
.btn-outline-amber:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--amber);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 9, 12, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(8, 9, 12, 0.98);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  color: var(--text);
  cursor: pointer;
  user-select: none;
}
.logo span { color: var(--amber); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: #0a0a0a;
  transition: all var(--transition);
  box-shadow: 0 2px 14px rgba(245, 158, 11, 0.25);
}
.nav-cta:hover {
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
  transform: translateY(-1px);
}

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 9, 12, 0.92) 0%,
    rgba(8, 9, 12, 0.75) 50%,
    rgba(8, 9, 12, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 80px 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.5);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(245, 158, 11, 0); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 5.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 17px;
  color: rgba(241, 245, 249, 0.78);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

/* Email form — hero inline version */
.hero-form-wrap { margin-bottom: 20px; }

.email-form .email-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.email-input {
  flex: 1 1 260px;
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}

.email-input::placeholder { color: rgba(148, 163, 184, 0.6); }

.email-input:focus {
  border-color: var(--amber);
  background: rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.email-input.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Vertical form (final CTA) */
.email-form-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-form-vertical .email-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.input-error {
  font-size: 12px;
  font-weight: 600;
  color: #f87171;
  margin-top: -4px;
}

.form-note {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 10px;
}

.form-success { margin-top: 4px; }

.success-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.success-check {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
}

.success-inner strong {
  display: block;
  font-size: 14px;
  color: #34d399;
  margin-bottom: 2px;
}

.success-inner span {
  font-size: 12.5px;
  color: var(--text-muted);
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.7);
}

/* ── STATS STRIP ─────────────────────────────────────────────── */
.stats-strip {
  background: linear-gradient(90deg, var(--bg-elevated) 0%, #111420 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
}

.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 140px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── WHY SOLAR SECTION ───────────────────────────────────────── */
.why-section { background: var(--bg-stripe); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

@media (max-width: 860px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.why-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.why-text p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-text .btn { margin-top: 16px; }

.why-photo-wrap {
  position: relative;
}

.why-photo-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-amber), var(--shadow-card);
}

.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  color: #0a0a0a;
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.badge-rank {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.02em;
}

.badge-label {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 480px) {
  .why-badge { bottom: 16px; right: 16px; }
}

/* ── PHOTO MOSAIC ────────────────────────────────────────────── */
.mosaic-section { overflow: hidden; }

.mosaic-header {
  text-align: center;
  padding: 80px 24px 48px;
}

.mosaic-header .section-title { margin-bottom: 0; }

.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 280px 260px;
  gap: 5px;
}

/* Item layout classes */
.m-wide  { grid-column: span 2; }
.m-tall  { grid-row: span 2; }

/* Slot assignments (auto-flow handles the rest) */
.photo-mosaic .mosaic-item:nth-child(1) { grid-column: 1 / 3; grid-row: 1; }
.photo-mosaic .mosaic-item:nth-child(2) { grid-column: 3;     grid-row: 1 / 3; }
.photo-mosaic .mosaic-item:nth-child(3) { grid-column: 1;     grid-row: 2; }
.photo-mosaic .mosaic-item:nth-child(4) { grid-column: 2;     grid-row: 2; }
.photo-mosaic .mosaic-item:nth-child(5) { grid-column: 1;     grid-row: 3; }
.photo-mosaic .mosaic-item:nth-child(6) { grid-column: 2 / 4; grid-row: 3; }

.mosaic-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(0.88);
}

.mosaic-item:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}

.mosaic-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,9,12,0.85) 0%, transparent 100%);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 28px 16px 14px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
}

.mosaic-item:hover .mosaic-label {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 700px) {
  .photo-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .photo-mosaic .mosaic-item { grid-column: auto !important; grid-row: auto !important; height: 200px; }
  .mosaic-item:nth-child(1) { grid-column: 1 / 3 !important; }
}

/* ── CURRICULUM CARDS ────────────────────────────────────────── */
.curriculum-section { background: var(--bg-stripe); }

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

@media (max-width: 960px) {
  .curriculum-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 580px) {
  .curriculum-grid { grid-template-columns: 1fr; }
}

.curr-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.curr-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), var(--orange));
  opacity: 0;
  transition: opacity var(--transition);
}

.curr-card:hover {
  border-color: var(--border-amber);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.12);
  transform: translateY(-4px);
}

.curr-card:hover::before { opacity: 1; }

.curr-card-featured {
  background: linear-gradient(145deg, #12100a 0%, #0f0c06 100%);
  border-color: var(--border-amber);
}

.curr-card-featured::before { opacity: 1; }

.curr-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--amber);
}

.curr-icon svg {
  width: 22px;
  height: 22px;
}

.curr-card h3 {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.curr-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

.card-badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid var(--border-amber);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ── PHOTO FEATURE BANNER ────────────────────────────────────── */
.photo-feature {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(8, 9, 12, 0.88) 0%,
    rgba(8, 9, 12, 0.65) 60%,
    rgba(8, 9, 12, 0.20) 100%
  );
}

.feature-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: 0.03em;
  color: var(--text);
  margin-bottom: 18px;
}

.feature-desc {
  font-size: 16px;
  color: rgba(241, 245, 249, 0.72);
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 520px;
}

/* ── PHOTO TRIO ──────────────────────────────────────────────── */
.photo-trio-section { overflow: hidden; }

.photo-trio {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 5px;
  height: 380px;
}

.trio-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.trio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: all 0.6s ease;
}

.trio-item:hover img {
  filter: brightness(0.9);
  transform: scale(1.04);
}

.trio-tall {
  position: relative;
}

.trio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(8, 9, 12, 0.45);
}

.trio-stat {
  font-family: var(--font-display);
  font-size: 4rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--amber) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.trio-label {
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .photo-trio {
    grid-template-columns: 1fr;
    height: auto;
  }
  .trio-item { height: 240px; }
}

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section { background: var(--bg-stripe); }

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

@media (max-width: 860px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.testi-card:hover {
  border-color: var(--border-amber);
  box-shadow: 0 8px 40px rgba(245, 158, 11, 0.08);
}

.testi-featured {
  background: linear-gradient(145deg, #11100a 0%, #0d0c08 100%);
  border-color: var(--border-amber);
  box-shadow: 0 4px 32px rgba(245, 158, 11, 0.1);
}

.testi-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testi-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 22px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.testi-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-amber);
  filter: brightness(0.9);
}

.author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.author-role {
  font-size: 11.5px;
  color: var(--amber);
  font-weight: 600;
  margin-top: 2px;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: var(--border-amber);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  transition: color var(--transition);
}

.faq-q:hover { color: var(--amber-light); }

.faq-item.open .faq-q { color: var(--amber-light); }

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-muted);
  transition: all var(--transition);
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--amber);
  color: #0a0a0a;
  border-color: var(--amber);
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ── FINAL CTA SECTION ───────────────────────────────────────── */
.final-cta-section {
  background: var(--bg-stripe);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 800px) {
  .final-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .final-cta-photos { order: -1; }
}

.final-cta-photos {
  position: relative;
  height: 520px;
}

.cta-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-amber), var(--shadow-card);
}

.cta-photo-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 44%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 3px solid var(--bg);
  box-shadow: var(--shadow-card);
}

@media (max-width: 800px) {
  .final-cta-photos { height: 300px; }
  .cta-photo-accent { display: none; }
}

.final-cta-content .section-title { text-align: left; }

.final-cta-content p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #040507;
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.footer-logo span { color: var(--amber); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color var(--transition);
}

.footer-link:hover { color: var(--amber); }

.footer-disc {
  max-width: 700px;
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.7;
}

.footer-copy {
  font-size: 11.5px;
  color: var(--text-dim);
}

/* ── LEGAL MODAL ────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  max-width: 640px;
  width: 100%;
  max-height: 82vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--bg-elevated);
  z-index: 1;
}

.modal-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.modal-close:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.3);
  color: #f87171;
}

.modal-body {
  padding: 28px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.modal-body p { margin-bottom: 12px; }
.modal-body p:last-child { margin-bottom: 0; }

/* ── RESPONSIVE TWEAKS ───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-content { padding: 60px 24px; }
  .hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .hero-desc { font-size: 15px; }
  .section { padding: 64px 0; }
  .stat-divider { display: none; }
  .stats-row { justify-content: center; gap: 36px; }
  .stat-block { min-width: 120px; }
  .why-photo-wrap img { height: 320px; }
}

@media (max-width: 520px) {
  .email-form .email-row { flex-direction: column; }
  .email-input { flex: none; }
  .hero-trust { gap: 12px; font-size: 11px; }
  .testimonials-grid { max-width: 100%; }
}
