/* ============================================================
   MIGNIS PRODUCTIONS — SHARED STYLES
   Used by all pages except index.html (which has inline styles).
   index.html has its own inline <style> block for its homepage-
   specific sections (hero, portfolio, about, contact form, etc.)
   ============================================================ */

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

:root {
  --ignite:      #FF4D00;
  --coal:        #111111;
  --coal2:       #181818;
  --steel:       #272727;
  --steel2:      #2A2A2A;
  --offwhite:    #F5F3EF;
  --amber:       #FFA733;
  --broadcast:   #FF6B1A;
  --mgrey:       #888480;
  --lgrid:       #2E2E2E;
  --lgrid-light: #E4E1DC;
  --ember:       #FFF1E8;
  --body:        #C8C4BF;
  --page-bg:     #111111;

  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'Geist Mono', 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--page-bg);
  color: var(--body);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

/* === ACCESSIBILITY ========================================= */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--coal); }
::-webkit-scrollbar-thumb { background: var(--ignite); }
::selection { background: var(--ignite); color: white; }

/* === EDGE BAR ============================================== */
.edge-bar {
  position: fixed; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--ignite); z-index: 200;
}

/* === SCROLL PROGRESS ======================================= */
#scroll-progress {
  position: fixed; top: 0; left: 3px; right: 0; height: 2px;
  background: var(--ignite); transform-origin: left;
  transform: scaleX(0); z-index: 201;
  transition: transform 0.08s linear;
}

/* === NAV ================================================== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 64px;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-color: var(--lgrid);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo-mark {
  width: 32px; height: 32px; background: var(--ignite); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; font-size: 18px; color: white; letter-spacing: 0.5px;
}
.nav-wordmark {
  font-family: var(--font-display);
  font-weight: 700; font-size: 18px; color: white;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--mgrey); text-decoration: none; transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--ignite); transition: width 0.25s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--ignite) !important; color: white !important;
  padding: 8px 20px; border-radius: 2px;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--broadcast) !important; transform: translateY(-1px); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: transparent; border: none; cursor: pointer;
  width: 32px; height: 32px; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 22px; height: 1.5px; background: white;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; z-index: 99;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--lgrid);
  padding: 24px 24px 32px;
  flex-direction: column; gap: 4px;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
  pointer-events: none;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--mgrey); text-decoration: none;
  padding: 12px 0; border-bottom: 1px solid var(--lgrid);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: white; }
.mobile-menu .mob-cta {
  margin-top: 16px; background: var(--ignite); color: white !important;
  text-align: center; padding: 14px 0; border-radius: 2px; border-bottom: none;
}

/* === BUTTONS ============================================== */
.btn-primary {
  background: var(--ignite); color: white; padding: 14px 32px;
  border: none; border-radius: 2px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--broadcast); transform: translateY(-2px); }
.btn-secondary {
  color: var(--body); font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 0; border-bottom: 1px solid var(--lgrid);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { color: white; border-color: var(--ignite); }
.btn-white {
  background: white; color: var(--ignite); padding: 16px 40px;
  border: none; border-radius: 2px; font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.15s; font-weight: 700;
  white-space: nowrap;
}
.btn-white:hover { background: var(--offwhite); transform: translateY(-2px); }

/* === TYPOGRAPHY UTILITIES ================================= */
.section-tag {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 2px; color: var(--ignite); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--ignite); }

.section-heading-white {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px); text-transform: uppercase;
  line-height: 0.92; color: white; letter-spacing: -0.5px;
}
.section-heading-light {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px); text-transform: uppercase;
  line-height: 0.92; color: white; letter-spacing: -0.5px;
}
.section-heading-dark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4.5vw, 56px); text-transform: uppercase;
  line-height: 0.92; color: var(--coal); letter-spacing: -0.5px;
}

/* === PAGE HERO (service pages) ============================ */
.page-hero {
  padding: 130px 80px 80px;
  background: var(--coal);
  border-bottom: 1px solid var(--lgrid);
  position: relative; overflow: hidden;
}
.page-hero-arc {
  position: absolute; right: -10%; top: -30%; width: 60%; height: 160%;
  opacity: 0.04; pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-breadcrumb {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--mgrey);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 8px;
}
.page-hero-breadcrumb a { color: var(--mgrey); text-decoration: none; transition: color 0.2s; }
.page-hero-breadcrumb a:hover { color: var(--ignite); }
.page-hero-breadcrumb-sep { color: var(--lgrid); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(52px, 6vw, 84px); text-transform: uppercase;
  line-height: 0.9; color: white; letter-spacing: -1px;
  margin-bottom: 28px;
}
.page-hero h1 span { color: var(--ignite); }
.page-hero-lead {
  font-size: 16px; line-height: 1.75; color: var(--body);
  max-width: 580px; font-weight: 400; margin-bottom: 36px;
}
.page-hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.page-hero-meta {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--lgrid);
  display: flex; gap: 48px; flex-wrap: wrap;
}
.page-hero-meta-item { }
.page-hero-meta-label {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--mgrey); margin-bottom: 4px;
}
.page-hero-meta-value {
  font-family: var(--font-display); font-weight: 700; font-size: 22px;
  color: white; text-transform: uppercase; letter-spacing: 0.3px;
}

/* === CONTENT SECTIONS ===================================== */
.content-section { padding: 80px 80px; }
.content-section-dark { background: var(--coal2); }
.content-section-darker { background: var(--coal); }
.content-section-light { background: var(--offwhite); }

.content-section-header { margin-bottom: 48px; }
.content-section-header-split {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px; padding-bottom: 28px; border-bottom: 1px solid var(--lgrid);
}
.content-section-sub {
  font-size: 13px; color: var(--mgrey); max-width: 280px;
  text-align: right; line-height: 1.7; font-weight: 400;
}

/* === FEATURE GRID ========================================= */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--lgrid); border: 1px solid var(--lgrid);
}
.feature-card {
  background: var(--steel); padding: 36px 28px;
  transition: background 0.3s;
}
.feature-card:hover { background: #222; }
.feature-card-num {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  color: var(--ignite); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.feature-card-num::before { content: ''; display: block; width: 16px; height: 1px; background: var(--ignite); }
.feature-card-title {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  text-transform: uppercase; color: white; margin-bottom: 12px; line-height: 1;
}
.feature-card-rule { height: 1px; background: var(--lgrid); margin-bottom: 12px; transition: background 0.3s; }
.feature-card:hover .feature-card-rule { background: var(--ignite); }
.feature-card-desc { font-size: 13px; color: var(--mgrey); line-height: 1.65; font-weight: 400; }
.feature-card-tags { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 5px; }
.feature-card-tag {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.8px;
  color: var(--mgrey); text-transform: uppercase;
  border: 1px solid var(--lgrid); padding: 3px 7px;
}

/* === PRICING TABLE ======================================== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--lgrid); border: 1px solid var(--lgrid);
  margin-bottom: 32px;
}
.pricing-card {
  background: var(--steel); padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: var(--coal);
  border-top: 2px solid var(--ignite);
}
.pricing-card-badge {
  font-family: var(--font-mono); font-size: 8px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ignite);
  margin-bottom: 20px;
}
.pricing-card-name {
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  text-transform: uppercase; color: white; margin-bottom: 8px; line-height: 1;
}
.pricing-card-price {
  font-family: var(--font-display); font-weight: 900; font-size: 44px;
  color: white; line-height: 1; margin-bottom: 4px;
}
.pricing-card-price span {
  font-family: var(--font-mono); font-size: 12px; font-weight: 400;
  color: var(--mgrey); vertical-align: super;
}
.pricing-card-cadence {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  color: var(--mgrey); text-transform: uppercase; margin-bottom: 28px;
}
.pricing-card-rule { height: 1px; background: var(--lgrid); margin-bottom: 24px; }
.pricing-card-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-card-features li {
  font-size: 13px; color: var(--body); line-height: 1.5; font-weight: 400;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-card-features li::before {
  content: '—'; color: var(--ignite); flex-shrink: 0;
  font-family: var(--font-mono); font-size: 10px; margin-top: 1px;
}
.pricing-card-cta { margin-top: 28px; }

/* === PROCESS ============================================== */
.process-section { padding: 80px 80px; border-top: 1px solid var(--lgrid); }
.process-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.process-steps {
  display: grid; grid-template-columns: 1fr 48px 1fr 48px 1fr;
  align-items: start; gap: 0; margin-bottom: 48px;
}
.process-step {
  background: var(--steel); border: 1px solid var(--lgrid);
  padding: 40px 36px; position: relative;
}
.process-step-num {
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 1.5px; color: var(--ignite); text-transform: uppercase;
  margin-bottom: 20px; display: flex; align-items: center; gap: 8px;
}
.process-step-num::before { content: ''; display: block; width: 16px; height: 1px; background: var(--ignite); }
.process-step h3 {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; text-transform: uppercase; color: white;
  line-height: 1; margin-bottom: 14px; letter-spacing: 0.3px;
}
.process-step p { font-size: 13px; color: var(--mgrey); line-height: 1.7; font-weight: 400; }
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--ignite); font-size: 20px; padding-top: 40px; opacity: 0.5;
}
.process-cta { text-align: center; }

/* === FAQ ================================================== */
.faq-section { padding: 80px 80px; }
.faq-inner { max-width: 820px; }
.faq-header { margin-bottom: 40px; }
.faq-list { border: 1px solid var(--lgrid); }
.faq-item { border-bottom: 1px solid var(--lgrid); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  font-family: var(--font-display);
  font-weight: 700; font-size: 19px; text-transform: uppercase;
  color: white; letter-spacing: 0.5px;
  padding: 22px 28px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-mono);
  font-size: 18px; color: var(--ignite);
  flex-shrink: 0; margin-left: 20px; transition: transform 0.2s;
}
.faq-item[open] summary { color: var(--ignite); }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--ignite); }
.faq-answer { padding: 0 28px 24px; font-size: 14px; color: var(--mgrey); line-height: 1.8; font-weight: 400; }
.faq-answer a { color: var(--amber); text-decoration: none; transition: color 0.2s; }
.faq-answer a:hover { color: var(--ignite); }

/* === CTA BAND ============================================= */
.cta-band {
  background: var(--ignite); position: relative; overflow: hidden;
  padding: 72px 80px;
}
.cta-band-arc {
  position: absolute; right: -5%; top: -40%; width: 50%; height: 200%;
  opacity: 0.12; pointer-events: none;
}
.cta-band-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
  flex-wrap: wrap;
}
.cta-band-label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.7);
  margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.cta-band-label::before { content: ''; display: block; width: 24px; height: 1px; background: rgba(255,255,255,0.5); }
.cta-band-heading {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px); text-transform: uppercase;
  color: white; line-height: 0.92; letter-spacing: -0.5px;
}
.cta-band-actions { display: flex; flex-direction: column; align-items: flex-end; gap: 14px; flex-shrink: 0; }
.cta-band-contact {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65); text-transform: uppercase; text-align: right;
}
.cta-band-contact a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.cta-band-contact a:hover { color: white; }

/* === FOOTER =============================================== */
footer {
  background: var(--coal); padding: 36px 80px;
  border-top: 1px solid var(--lgrid);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-family: var(--font-mono); font-size: 9px; color: var(--mgrey); letter-spacing: 0.5px; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px; color: var(--mgrey); text-decoration: none; text-transform: uppercase; transition: color 0.2s; }
.footer-links a:hover { color: var(--ignite); }

/* === INLINE CONTENT STYLES ================================ */
.prose { font-size: 14px; color: var(--body); line-height: 1.8; font-weight: 400; }
.prose p { margin-bottom: 16px; }
.prose h2 {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  text-transform: uppercase; color: white; margin: 36px 0 16px; line-height: 1;
}
.prose h3 {
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  color: white; margin: 28px 0 12px;
}
.prose ul { margin: 12px 0 16px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li {
  padding-left: 20px; position: relative; font-size: 14px; color: var(--body); line-height: 1.6;
}
.prose ul li::before { content: '—'; position: absolute; left: 0; color: var(--ignite); }
.prose a { color: var(--amber); text-decoration: none; transition: color 0.2s; }
.prose a:hover { color: var(--ignite); }
.prose strong { color: white; font-weight: 600; }

/* Tag strip */
.tag-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tag-pill {
  font-family: var(--font-mono); font-size: 9px; letter-spacing: 1px;
  color: var(--body); text-transform: uppercase;
  border: 1px solid var(--lgrid); padding: 5px 12px;
}

/* Highlight box */
.highlight-box {
  background: rgba(255,77,0,0.07); border-left: 3px solid var(--ignite);
  padding: 20px 24px; margin: 24px 0;
  font-size: 14px; color: var(--body); line-height: 1.7;
}
.highlight-box strong { color: white; }

/* Related services */
.related-section { padding: 60px 80px; background: var(--steel); border-top: 1px solid var(--lgrid); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--lgrid); border: 1px solid var(--lgrid); margin-top: 32px; }
.related-card {
  background: var(--coal2); padding: 28px;
  text-decoration: none; display: block;
  transition: background 0.25s;
}
.related-card:hover { background: #1E1E1E; }
.related-card-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 1.5px; color: var(--ignite); text-transform: uppercase; margin-bottom: 8px; }
.related-card-title { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; color: white; margin-bottom: 8px; line-height: 1; }
.related-card-desc { font-size: 12px; color: var(--mgrey); line-height: 1.6; }

/* === REVEAL ANIMATION ===================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: none; }

/* === WHATSAPP FLOAT ======================================= */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 150;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 12px 20px 12px 14px; border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 1px; text-transform: uppercase; font-weight: 700;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s, transform 0.4s, box-shadow 0.2s, background 0.2s;
  pointer-events: none;
}
.wa-float.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.wa-float:hover { background: #1dbc59; box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float-icon { flex-shrink: 0; }
.wa-float-pulse {
  position: absolute; inset: 0; border-radius: 32px;
  background: #25D366; z-index: -1;
  animation: wa-pulse 2.6s ease-out infinite;
}

/* === KEYFRAMES ============================================ */
@keyframes fade-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.2; } }
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

/* === RESPONSIVE =========================================== */
@media (max-width: 1100px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .process-arrow { display: none; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .page-hero { padding: 110px 24px 60px; }
  .page-hero h1 { font-size: clamp(44px, 12vw, 68px); }
  .page-hero-meta { gap: 28px; }

  .content-section { padding: 60px 24px; }
  .content-section-header-split { flex-direction: column; align-items: flex-start; gap: 12px; }
  .content-section-sub { text-align: left; max-width: 100%; }

  .process-section { padding: 60px 24px; }
  .process-header { flex-direction: column; align-items: flex-start; gap: 12px; }

  .faq-section { padding: 60px 24px; }
  .faq-item summary { padding: 18px 20px; font-size: 16px; }
  .faq-answer { padding: 0 20px 20px; }

  .cta-band { padding: 56px 24px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; }
  .cta-band-actions { align-items: flex-start; }

  footer { padding: 32px 24px; flex-direction: column; gap: 16px; text-align: center; }

  .related-section { padding: 48px 24px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}
