/* =====================================================
   SunPower Energy — Solar Demo Template
   Aesthetic: Clean industrial, trust-first, conversion-driven
   Fonts: Plus Jakarta Sans (headings) + DM Sans (body)
   Accent: #25D366 (green) + #F59E0B (amber, sparingly)
   ===================================================== */

:root {
  --green:        #25D366;
  --green-dark:   #128C7E;
  --green-light:  #DCFCE7;
  --amber:        #F59E0B;
  --amber-light:  #FEF3C7;
  --blue-deep:    #1E3A5F;
  --text:         #111827;
  --text-2:       #374151;
  --text-3:       #6B7280;
  --bg:           #FFFFFF;
  --bg-2:         #F9FAFB;
  --bg-3:         #F3F4F6;
  --border:       #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.07),0 1px 2px rgba(0,0,0,.04);
  --shadow:       0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.10);
  --radius:       10px;
  --radius-lg:    16px;
  --radius-pill:  999px;
  --t:            220ms ease;
  --section-py:   5rem;
  --font-head:    'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (max-width:991px) { body { padding-bottom: 76px; } }

img { max-width:100%; height:auto; display:block; }
a { color: var(--green-dark); text-decoration:none; transition: color var(--t); }
a:hover { color: var(--text); }

a:focus-visible, button:focus-visible,
input:focus-visible, select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 2px;
  border-radius: 4px;
}

/* === Typography === */
h1,h2,h3,h4,h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}
h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }

.label-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.85rem;
}
.label-tag-amber {
  color: #92400E;
  background: var(--amber-light);
}

.section-intro {
  color: var(--text-3);
  font-size: 1.02rem;
  max-width: 540px;
  line-height: 1.7;
}

/* === Demo Banner === */
.demo-banner {
  background: #111827;
  color: rgba(255,255,255,.8);
  font-size: 0.77rem;
  font-weight: 500;
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
  z-index: 1050;
}

/* === Top bar === */
.top-bar {
  background: var(--blue-deep);
  color: rgba(255,255,255,.7);
  font-size: 0.78rem;
  padding: 0.45rem 0;
}
.top-bar a { color:rgba(255,255,255,.85); }
.top-bar a:hover { color:#fff; }
.top-bar .sep { opacity:.3; margin:0 0.65rem; }

/* === Navbar === */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 1020;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  padding: 0.85rem 0;
  transition: border-color var(--t), box-shadow var(--t);
}
.site-nav.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text) !important;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
}
.nav-logo-mark {
  width: 34px; height: 34px;
  background: var(--amber);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.navbar-nav .nav-link {
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-2) !important;
  padding: 0.42rem 0.75rem !important;
  border-radius: 6px;
  transition: background var(--t), color var(--t);
}
.navbar-nav .nav-link:hover { background:var(--bg-3); color:var(--text) !important; }

/* === Buttons === */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all var(--t);
  letter-spacing: 0.01em;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  position: relative;
  overflow: hidden;
}
/* Shine */
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.18) 50%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t);
  pointer-events: none;
}
.btn:hover::after { opacity: 1; }

.btn-wa {
  background: var(--green);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(37,211,102,.22);
}
.btn-wa:hover {
  background: #1db954;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(37,211,102,.32);
}
.btn-amber {
  background: var(--amber);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
  box-shadow: 0 2px 8px rgba(245,158,11,.2);
}
.btn-amber:hover {
  background: #d97706;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,158,11,.3);
}
.btn-dark {
  background: var(--text);
  color: #fff !important;
  padding: 0.65rem 1.4rem;
  font-size: 0.92rem;
}
.btn-dark:hover {
  background: #1f2937;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2) !important;
  padding: 0.63rem 1.35rem;
  font-size: 0.92rem;
}
.btn-outline:hover {
  border-color: var(--text);
  color: var(--text) !important;
  background: var(--bg-3);
}
.btn-outline-green {
  background: transparent;
  border: 1.5px solid var(--green);
  color: var(--green-dark) !important;
  padding: 0.63rem 1.35rem;
  font-size: 0.92rem;
}
.btn-outline-green:hover {
  background: var(--green-light);
}
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* === Section layout === */
.section-py { padding-top: var(--section-py); padding-bottom: var(--section-py); }
.section-py-sm { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.bg-alt  { background: var(--bg-2); }
.bg-dark { background: var(--text); }
.bg-deep { background: var(--blue-deep); }

/* === Hero === */
.hero {
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 85% 35%, rgba(245,158,11,.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 5% 85%, rgba(37,211,102,.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--amber-light);
  border: 1px solid rgba(245,158,11,.25);
  color: #92400E;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.4rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse-amber 2.2s ease-in-out infinite;
}
@keyframes pulse-amber {
  0%,100% { box-shadow: 0 0 0 0 rgba(245,158,11,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(245,158,11,0); }
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
  background: linear-gradient(135deg, #F59E0B, #D97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2rem;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-2);
  padding: 0.3rem 0;
}
.bullet-icon {
  width: 20px; height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 700;
}
.hero-actions { display:flex; gap:0.75rem; flex-wrap:wrap; align-items:center; }
.hero-meta {
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-3);
}
.hero-meta-dot { width:5px; height:5px; background:var(--text-3); border-radius:50%; }

/* Hero image + parallax */
.hero-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  will-change: transform;
}
.hero-img-wrap img { width:100%; display:block; }

/* === Trust strip === */
.trust-strip {
  background: var(--blue-deep);
  color: #fff;
  padding: 2.5rem 0;
}
.trust-item { text-align:center; }
.trust-value {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.trust-label { font-size: 0.8rem; color: rgba(255,255,255,.6); font-weight: 500; }

/* === Package cards === */
.package-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  height: 100%;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  position: relative;
}
.package-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.package-card.recommended {
  border-color: var(--amber);
  background: linear-gradient(160deg, #FFFDF7 0%, #FFF7ED 100%);
}
.package-card.recommended:hover { border-color: #D97706; }
.package-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.9rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.package-name { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.3rem; }
.package-best-for {
  font-size: 0.83rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
  line-height: 1.5;
  min-height: 2.5rem;
}
.package-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text);
  margin: 0.75rem 0 0.25rem;
}
.package-price-note { font-size: 0.75rem; color: var(--text-3); margin-bottom: 1.25rem; }
.package-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.package-includes li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--text-2);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--bg-3);
}
.package-includes li:last-child { border-bottom: none; }
.check-icon { color: var(--green-dark); flex-shrink: 0; margin-top: 1px; font-size: 0.75rem; }
.package-excludes {
  font-size: 0.76rem;
  color: var(--text-3);
  background: var(--bg-3);
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.package-disclaimer {
  font-size: 0.72rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* === Service cards === */
.service-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  height: 100%;
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.07), var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 50px; height: 50px;
  background: var(--bg-3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  margin-bottom: 1rem;
  transition: background var(--t), color var(--t);
}
.service-card:hover .service-icon {
  background: var(--green-light);
  color: var(--green-dark);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.88rem; color: var(--text-3); margin-bottom: 1.1rem; }
.service-link {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--t), color var(--t);
}
.service-link:hover { color: var(--text); gap: 0.55rem; }

/* === Brands strip === */
.brands-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}
.brand-group-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.5rem;
}
.brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.28rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-2);
  margin: 0.2rem 0.2rem;
}

/* === Process === */
.process-line {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.process-num {
  width: 42px; height: 42px;
  background: var(--blue-deep);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.process-body h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.process-body p { font-size: 0.88rem; color: var(--text-3); }
.process-connector {
  width: 2px; height: 36px;
  background: var(--border);
  margin: 0.3rem 0 0.3rem 20px;
}

/* === Gallery === */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: box-shadow var(--t), transform var(--t);
}
.gallery-item:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(17,24,39,.75));
  color: #fff;
  font-size: 0.75rem;
  padding: 1.2rem 0.75rem 0.65rem;
  transform: translateY(100%);
  transition: transform var(--t);
}
.gallery-item:hover .gallery-caption { transform: none; }

/* === Lightbox === */
.lightbox-img { max-width: 100%; border-radius: var(--radius); }
.modal-caption {
  font-size: 0.85rem;
  color: var(--text-3);
  text-align: center;
  margin-top: 0.75rem;
}

/* === Review cards === */
.review-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow var(--t), transform var(--t);
  display: flex;
  flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-text {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0.75rem 0 1rem;
  flex: 1;
}
.reviewer-avatar {
  width: 38px; height: 38px;
  background: var(--bg-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-2);
  flex-shrink: 0;
}
.reviewer-name { font-size: 0.87rem; font-weight: 700; }
.reviewer-loc  { font-size: 0.74rem; color: var(--text-3); }
.stars { display: inline-flex; gap: 2px; }

/* === Quote form === */
.quote-section { background: var(--bg-2); }
.form-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.38rem;
  display: block;
}
.form-control, .form-select {
  width: 100%;
  padding: 0.63rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: #fff;
  transition: border-color var(--t), box-shadow var(--t);
  appearance: none;
  -webkit-appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.1);
  outline: none;
}
.form-control.error { border-color: #DC2626; }
.form-error { color:#DC2626; font-size:0.74rem; margin-top:0.28rem; display:none; }
.form-error.show { display:block; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.5rem;
}
textarea.form-control { resize:vertical; min-height:85px; }
.form-check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.4rem;
}
.form-check-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.form-check-pill input[type="checkbox"] { accent-color: var(--green); width:14px; height:14px; }
.form-check-pill label {
  font-size: 0.82rem;
  color: var(--text-2);
  cursor: pointer;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.7rem;
  transition: background var(--t), border-color var(--t);
}
.form-check-pill input:checked + label {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green-dark);
}
.honeypot { display:none !important; visibility:hidden; }
.form-privacy { font-size:0.74rem; color:var(--text-3); text-align:center; margin-top:0.75rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}
.form-success.visible { display:block; }
.success-icon {
  width: 58px; height: 58px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 1.5rem;
  margin: 0 auto 1rem;
}
.next-steps {
  text-align: left;
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  margin: 1rem 0 1.5rem;
}
.next-steps li {
  font-size: 0.87rem;
  color: var(--text-2);
  padding: 0.25rem 0;
}
.next-steps li::before { content: "→ "; color: var(--green-dark); font-weight: 700; }

/* === Checklist CTA strip === */
.checklist-strip {
  background: linear-gradient(135deg, var(--blue-deep) 0%, #0F2A4A 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: #fff;
}
.checklist-strip h3 { color: #fff; font-size: 1.3rem; }
.checklist-strip p { color: rgba(255,255,255,.7); font-size: 0.92rem; margin: 0.5rem 0 1.5rem; }

/* === FAQ === */
.faq-item { border-bottom: 1.5px solid var(--border); }
.faq-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  gap: 1rem;
  transition: color var(--t);
}
.faq-btn:hover { color: var(--green-dark); }
.faq-icon {
  width: 22px; height: 22px;
  background: var(--bg-3);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), transform var(--t);
}
.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--green-light);
  transform: rotate(45deg);
}
.faq-body { overflow:hidden; max-height:0; transition: max-height 0.35s ease; }
.faq-body-inner {
  padding-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--text-3);
  line-height: 1.75;
}

/* === CTA band === */
.cta-band {
  background: var(--blue-deep);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-band h2 { color:#fff; margin-bottom:0.75rem; }
.cta-band p { color:rgba(255,255,255,.65); margin-bottom:2rem; font-size:1.02rem; }

/* === Footer === */
.site-footer {
  background: #0D1117;
  color: rgba(255,255,255,.6);
  padding: 3.5rem 0 2rem;
}
.footer-logo-text { color:#fff !important; }
.footer-head {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.3);
  margin-bottom: 0.8rem;
}
.footer-links { list-style:none; padding:0; }
.footer-links li { margin-bottom:0.42rem; }
.footer-links a { color:rgba(255,255,255,.5); font-size:0.86rem; }
.footer-links a:hover { color:#fff; }
.footer-meta { font-size:0.8rem; color:rgba(255,255,255,.38); line-height:1.6; }
.footer-hr { border-color:rgba(255,255,255,.08); margin:2.5rem 0 1.5rem; }
.footer-bottom { font-size:0.76rem; color:rgba(255,255,255,.28); }

/* === Mobile sticky CTA bar === */
.mobile-cta-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1040;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  display: flex;
  gap: 0.45rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
.mobile-cta-bar .btn { flex:1; justify-content:center; font-size:0.8rem; padding:0.55rem 0.5rem; }
@media (min-width:992px) { .mobile-cta-bar { display:none !important; } }

/* === Scroll reveal === */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.in-view { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity:1 !important; transform:none !important; transition:none !important; }
  .hero-img-wrap { will-change:auto !important; }
  * { animation-duration:0.01ms !important; transition-duration:0.01ms !important; }
}

/* === Utility === */
.text-green { color: var(--green-dark); }
.text-amber { color: var(--amber); }
