/* ============================================
   DLV EDITING — Light / Paper Theme, Orange
   ============================================ */

/* === VARIABLES === */
:root {
  --orange:       #ea580c;
  --orange-light: #f97316;
  --orange-dark:  #c2410c;
  --orange-bg:    rgba(234,88,12,.08);
  --orange-border:rgba(234,88,12,.2);
  --green:        #16a34a;
  --wa:           #25d366;
  --blue:         #2563eb;
  --red:          #dc2626;

  /* Backgrounds — LIGHT */
  --bg:           #f5f4f0;   /* papier principal */
  --bg-2:         #ffffff;   /* blanc pur */
  --bg-3:         #eeede8;   /* papier plus foncé */

  /* Dark sections (hero, footer) */
  --dark:         #111111;
  --dark-2:       #1a1a1a;
  --dark-3:       #242424;
  --dark-border:  rgba(255,255,255,.08);
  --dark-border-hi:rgba(255,255,255,.16);

  /* Text — LIGHT context */
  --text:         #0f172a;
  --text-2:       #64748b;
  --text-3:       #94a3b8;

  /* Cards & borders — LIGHT context */
  --card:         #ffffff;
  --border:       rgba(0,0,0,.08);
  --border-hi:    rgba(0,0,0,.16);
  --shadow:       0 2px 16px rgba(0,0,0,.07);
  --shadow-md:    0 4px 32px rgba(0,0,0,.1);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.14);

  --radius:       12px;
  --radius-lg:    20px;
  --container:    1120px;
  --ease:         0.25s ease;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img    { max-width: 100%; height: auto; display: block; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul     { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--text-2); }

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

/* === UTILITIES === */
.highlight { color: var(--orange); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 14px;
}
.section-title { margin-bottom: 14px; }
.section-sub   { font-size: 1.05rem; margin-bottom: 48px; max-width: 560px; }

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--ease);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(234,88,12,.3);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(234,88,12,.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-hi);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}
/* Outline variant on dark bg */
.btn-outline--light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-outline--light:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

/* === WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,.45);
  animation: wa-pulse 2.5s infinite;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 8px 36px rgba(37,211,102,.6); }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,.45); }
  50%      { box-shadow: 0 4px 44px rgba(37,211,102,.72); }
}

/* ============================================
   HEADER — light
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(245,244,240,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.site-header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-bottom-color: var(--border-hi);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 40px;
}
.logo-link { flex-shrink: 0; }
.logo-img  { height: 58px; width: auto; filter: sepia(0.7) saturate(3) hue-rotate(-15deg); }

.main-nav  { flex: 1; }
.nav-list  { display: flex; align-items: center; gap: 32px; }
.nav-list a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-2);
  transition: color var(--ease);
}
.nav-list a:hover { color: var(--text); }
.nav-cta { margin-left: auto; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE NAV */
.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-nav ul   { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-2);
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav li:last-child a { border: none; }
.mobile-nav .btn { text-align: center; margin-top: 10px; justify-content: center; }

/* ============================================
   HERO — LIGHT paper section
   ============================================ */
.hero {
  background: var(--bg);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
/* Ruled-paper lines on hero (QUOTE phase feel) */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      transparent, transparent 31px,
      rgba(0,0,0,.04) 31px, rgba(0,0,0,.04) 32px
    );
  pointer-events: none;
}
/* Orange glow behind the phone mockup */
.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(234,88,12,.1) 0%, transparent 60%);
  pointer-events: none;
}
/* Large faint QUOTE watermark */
.hero::after {
  content: 'QUOTE';
  position: absolute;
  font-size: clamp(7rem, 20vw, 20rem);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(234,88,12,.04);
  right: -2%;
  bottom: -10%;
  transform: rotate(-8deg);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}

/* Hero text stays dark on light bg */
.hero h1,
.hero h2,
.hero h3 { color: var(--text); }
.hero p   { color: var(--text-2); }
.hero .trust-item { color: var(--text-2); }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange-dark);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.8s infinite;
}
@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.2; }
}
.hero-title { margin-bottom: 20px; }
.hero-sub { font-size: 1.1rem; margin-bottom: 36px; max-width: 480px; }
.cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-item i { color: var(--green); font-size: 0.8rem; }

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: float 4.5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-18px); }
}
.phone-wrap {
  width: 252px;
  background: #e8e6e1;
  border-radius: 40px;
  border: 6px solid #d0cdc7;
  box-shadow:
    0 32px 72px rgba(0,0,0,.18),
    0 0 0 1px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
  overflow: hidden;
}
.phone-notch {
  height: 28px;
  background: #e8e6e1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 64px;
  height: 8px;
  background: #d0cdc7;
  border-radius: 4px;
}
.phone-screen {
  background: #000;
  aspect-ratio: 9/16;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.phone-screen:hover img { transform: scale(1.04); }
.phone-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  pointer-events: none;
  transition: transform var(--ease);
  box-shadow: 0 4px 20px rgba(234,88,12,.5);
}
.phone-screen:hover .phone-play { transform: scale(1.1); }

.float-badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.float-badge--fire { top: 16%; right: -28px; animation: float 4.5s -1s ease-in-out infinite; }
.float-badge--star { bottom: 16%; left: -28px; animation: float 4.5s -2.5s ease-in-out infinite; }
.float-badge--fire i { color: var(--orange); }
.float-badge--star i { color: #f59e0b; }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: scroll-hint 2.5s ease-in-out infinite;
}
@keyframes scroll-hint {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50%      { transform: translateX(-50%) translateY(8px); opacity: 0.9; }
}

/* ============================================
   PAIN SECTION — paper
   ============================================ */
.pain-section {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0;
}
.pain-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-hi); }
.pain-icon {
  width: 52px;
  height: 52px;
  background: rgba(234,88,12,.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  margin-bottom: 20px;
}
.pain-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.pain-solution {
  text-align: center;
  padding: 24px 32px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius-lg);
  font-size: 1.2rem;
  color: var(--text);
}

/* ============================================
   STATS — paper light section
   ============================================ */
.stats-section {
  background: var(--bg-2);
  padding: 64px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   SERVICES — white
   ============================================ */
.services-section { background: var(--bg-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-hi); }
.service-card--featured {
  background: #fff7f2;
  border-color: var(--orange);
  box-shadow: 0 8px 40px rgba(234,88,12,.12);
  border-width: 2px;
}
.service-card--featured:hover {
  box-shadow: 0 14px 56px rgba(234,88,12,.2);
  transform: translateY(-7px);
}
.service-card--featured h3,
.service-card--featured p { color: var(--text-2); }
.service-card--featured h3 { color: var(--text); }
.service-card--featured .service-list li { color: var(--text-2); }
.service-card--featured .service-list i { color: var(--green); }

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-bg);
  border: 1px solid var(--orange-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--orange);
}
.service-card--featured .service-icon {
  background: rgba(234,88,12,.2);
  border-color: rgba(234,88,12,.4);
}
.service-badge {
  position: absolute;
  top: -13px;
  right: 20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.service-badge--gold {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.service-card h3 { margin-bottom: 2px; }
.service-list { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-2);
}
.service-list i { color: var(--green); flex-shrink: 0; font-size: 0.8rem; }

/* ============================================
   HOW IT WORKS — paper
   ============================================ */
.how-section { background: var(--bg); }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin: 48px 0;
}
.step {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(234,88,12,.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.step h3 { margin-bottom: 10px; }
.step-arrow { font-size: 1.4rem; color: var(--orange); opacity: 0.4; }
.how-cta { text-align: center; }

/* ============================================
   PORTFOLIO — white
   ============================================ */
.portfolio-section { background: var(--bg-2); }
.pf-wrap { margin-top: 48px; }
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.pf-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-hi); }
.pf-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
}
.pf-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pf-card:hover .pf-thumb img { transform: scale(1.06); }
.pf-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 54px;
  height: 54px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  transition: transform var(--ease);
  pointer-events: none;
  box-shadow: 0 4px 20px rgba(234,88,12,.4);
}
.pf-card:hover .pf-play { transform: scale(1.1); }
.pf-info { padding: 14px 18px; display: flex; align-items: center; gap: 10px; background: #fff; }
.pf-tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--orange-bg);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  border-radius: 6px;
  padding: 3px 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pf-info p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pf-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}
.pf-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.pf-btn:hover:not(:disabled) { border-color: var(--orange); color: var(--orange); }
.pf-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.pf-cta { text-align: center; margin-top: 36px; }

/* ============================================
   REVIEWS — paper
   ============================================ */
.reviews-section { background: var(--bg); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars  { color: #f59e0b; letter-spacing: 2px; font-size: 0.95rem; }
.review-text   { font-size: 0.9rem; color: var(--text-2); flex: 1; line-height: 1.75; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.875rem; color: var(--text); }
.reviews-loading { grid-column: 1 / -1; text-align: center; color: var(--text-3); padding: 60px 0; }

/* ============================================
   TRUSTED LOGOS — white
   ============================================ */
.trusted-section {
  padding: 64px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  margin-bottom: 40px;
}
.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.trusted-logos a { display: inline-flex; align-items: center; }
.trusted-logos img {
  height: 80px;
  width: auto;
  filter: grayscale(1);
  opacity: 0.55;
  transition: var(--ease);
}
.trusted-logos a:hover img { opacity: 1; filter: grayscale(0); transform: scale(1.05); }

/* ============================================
   FAQ — paper
   ============================================ */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item.active { border-color: var(--orange-border); box-shadow: 0 4px 20px rgba(234,88,12,.08); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  text-align: left;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.faq-q i { flex-shrink: 0; color: var(--text-3); transition: transform 0.3s ease, color 0.3s ease; }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--orange); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a p { padding: 0 24px 24px; font-size: 0.9rem; line-height: 1.75; }

/* ============================================
   CONTACT — white
   ============================================ */
.contact-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.contact-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.contact-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-card:nth-child(1):hover { border-color: rgba(37,211,102,.3); }
.contact-card:nth-child(2):hover { border-color: rgba(234,88,12,.3); }
.contact-card:nth-child(3):hover { border-color: rgba(37,211,102,.3); }
.cc-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
}
.cc-icon--wa    { background: rgba(37,211,102,.1);  color: var(--wa); }
.cc-icon--phone { background: var(--orange-bg);      color: var(--orange); }
.cc-icon--mail  { background: rgba(37,99,235,.08);   color: var(--blue); }
.contact-card h3 { margin-bottom: -6px; }
.cc-action {
  display: inline-block;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-2);
  word-break: break-all;
}

/* ============================================
   FOOTER — DARK section
   ============================================ */
.site-footer {
  background: var(--dark);
  border-top: none;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding: 64px 24px;
}
.footer-logo  { height: 50px; width: auto; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; margin-bottom: 24px; color: rgba(255,255,255,.5); }
.social-links   { display: flex; gap: 10px; }
.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,.45);
  transition: var(--ease);
}
.social-links a:hover { color: var(--orange-light); border-color: rgba(234,88,12,.3); }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.875rem; color: rgba(255,255,255,.5); transition: color var(--ease); }
.footer-col ul a:hover { color: #fff; }
.footer-contact-links { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--ease);
}
.footer-contact-links a:hover { color: #fff; }
.footer-contact-links i { color: var(--orange-light); width: 14px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid var(--dark-border); padding: 20px 24px; text-align: center; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,.3); }

/* ============================================
   VIDEO MODAL
   ============================================ */
.vid-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.vid-modal.open { opacity: 1; pointer-events: all; }
.vid-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.94); cursor: pointer; }
.vid-content  { position: relative; z-index: 1; width: 90%; max-width: 900px; }
.vid-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--dark-2);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  transition: var(--ease);
}
.vid-close:hover { color: var(--orange-light); }
.vid-frame { aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; background: #000; }
.vid-frame iframe { width: 100%; height: 100%; border: none; display: block; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-hero {
  padding: 64px 0 56px;
  border-bottom: 1px solid var(--border);
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.gallery-hero::before {
  content: '';
  position: absolute;
  top: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(234,88,12,.1) 0%, transparent 65%);
  pointer-events: none;
}
.gallery-hero h1 { margin-bottom: 12px; color: #fff; position: relative; }
.gallery-hero p  { font-size: 1.05rem; max-width: 540px; color: rgba(255,255,255,.6); position: relative; }
.gallery-hero .section-label { position: relative; }

.filter-bar {
  position: sticky;
  top: 72px;
  z-index: 50;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.filter-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.filter-inner::-webkit-scrollbar { display: none; }
.filter-group {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  flex-shrink: 0;
}
.filter-group + .filter-group {
  border-left: 1px solid var(--border);
  margin-left: 16px;
  padding-left: 16px;
}
.filter-label-txt {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
  white-space: nowrap;
}
.filter-btn {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  border: 1px solid transparent;
  transition: var(--ease);
  white-space: nowrap;
  cursor: pointer;
  background: none;
}
.filter-btn:hover { color: var(--text); border-color: var(--border); }
.filter-btn.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.gallery-main { padding: 48px 0 96px; }
.gallery-grid { columns: 3; column-gap: 16px; }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.gallery-item:hover { border-color: var(--border-hi); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gallery-item.hidden { display: none; }
.gallery-thumb { position: relative; overflow: hidden; }
.gallery-thumb img { width: 100%; display: block; transition: transform 0.4s ease; }
.gallery-item:hover .gallery-thumb img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .play-icon {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(234,88,12,.5);
}
.gallery-info {
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
}
.gallery-info p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--orange-bg);
  color: var(--orange);
  border: 1px solid var(--orange-border);
  border-radius: 6px;
  padding: 2px 7px;
  flex-shrink: 0;
}
.gallery-empty { text-align: center; padding: 80px 0; color: var(--text-3); display: none; }
.gallery-empty.show { display: block; }

/* Gallery CTA strip */
.gallery-cta-strip {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

/* ============================================
   PAPER TEXTURE — global overlay
   Every light section gets subtle paper grain.
   mix-blend-mode: multiply keeps it invisible
   on dark sections (hero, stats, footer).
   ============================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  opacity: 1;
}

/* ============================================
   PHASE — QUOTE (pain section)
   Ruled notebook paper lines + large watermark
   ============================================ */
.phase-quote {
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(
      transparent, transparent 31px,
      rgba(0,0,0,.042) 31px, rgba(0,0,0,.042) 32px
    ) !important;
}
.phase-quote::before {
  content: 'QUOTE';
  position: absolute;
  font-size: clamp(7rem, 20vw, 20rem);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(234,88,12,.03);
  right: -3%;
  bottom: -8%;
  transform: rotate(-8deg);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
.phase-quote > .container { position: relative; z-index: 1; }

/* ============================================
   PHASE — BLUEPRINT (stats dark + services)
   Technical graph-paper grid + watermark
   ============================================ */
.phase-blueprint {
  position: relative;
  overflow: hidden;
}
/* Light blueprint sections (services) */
.phase-blueprint::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.05) 1px, transparent 1px),
    linear-gradient(rgba(37,99,235,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  pointer-events: none;
  z-index: 0;
}
.phase-blueprint::after {
  content: 'BLUEPRINT';
  position: absolute;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(37,99,235,.03);
  left: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
.phase-blueprint > .container { position: relative; z-index: 1; }

/* Dark blueprint (stats section) — white grid on dark bg */
.phase-blueprint-dark {
  position: relative;
  overflow: hidden;
}
.phase-blueprint-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  pointer-events: none;
  z-index: 0;
}
.phase-blueprint-dark > .container { position: relative; z-index: 1; }

/* ============================================
   PHASE — ON SITE (how + portfolio)
   Diagonal orange safety-stripe pattern
   ============================================ */
.phase-onsite {
  position: relative;
  overflow: hidden;
}
.phase-onsite::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent, transparent 22px,
    rgba(234,88,12,.032) 22px, rgba(234,88,12,.032) 23px
  );
  pointer-events: none;
  z-index: 0;
}
.phase-onsite::after {
  content: 'ON SITE';
  position: absolute;
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(234,88,12,.04);
  right: -2%;
  bottom: -8%;
  transform: rotate(-8deg);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
.phase-onsite > .container { position: relative; z-index: 1; }

/* ============================================
   PHASE — DONE (reviews, faq, contact)
   Clean radial glow + faint watermark
   ============================================ */
.phase-done {
  position: relative;
  overflow: hidden;
}
.phase-done::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 85% 50%, rgba(234,88,12,.05), transparent);
  pointer-events: none;
  z-index: 0;
}
.phase-done::after {
  content: 'DONE';
  position: absolute;
  font-size: clamp(7rem, 20vw, 20rem);
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: rgba(0,0,0,.022);
  left: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
  letter-spacing: -0.04em;
  line-height: 1;
  z-index: 0;
  white-space: nowrap;
  user-select: none;
}
.phase-done > .container { position: relative; z-index: 1; }

/* ============================================
   PHASE SVG ILLUSTRATIONS — animated line-draw
   ============================================ */

/* Suppress old text watermarks — SVGs replace them */
.phase-quote::before   { content: none; }
.phase-blueprint::after { content: none; }
.phase-onsite::after   { content: none; }
.phase-done::after     { content: none; }

/* Illustration container — fills section behind content */
.phase-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.phase-bg svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.32;
}

/* All animated elements start hidden (stroke-dashoffset = pathLength) */
.phase-bg .D,
.phase-bg .Dr,
.phase-bg .Dp {
  fill: none;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.phase-bg .D  { transition: stroke-dashoffset 3.8s cubic-bezier(.4,0,.2,1); }
.phase-bg .Dr { transition: stroke-dashoffset 4.5s cubic-bezier(.4,0,.2,1); }
.phase-bg .Dp { transition: stroke-dashoffset 4.0s cubic-bezier(.4,0,.2,1); }

/* Trigger: add .animate class via JS when section enters viewport */
.phase-bg.animate .D,
.phase-bg.animate .Dr,
.phase-bg.animate .Dp { stroke-dashoffset: 0; }

/* Text elements fade in after lines draw */
.phase-bg .txt {
  opacity: 0;
  transition: opacity 1.4s ease;
}
.phase-bg.animate .txt { opacity: 1; }

/* ============================================
   STORY PROGRESS NAV — right side fixed
   ============================================ */
.story-nav {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}
.story-nav.hidden { opacity: 0; pointer-events: none; }

.story-step {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: default;
  position: relative;
}
/* The dot */
.story-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(0,0,0,.15);
  border: 2px solid rgba(0,0,0,.1);
  transition: all 0.45s cubic-bezier(.34,1.56,.64,1);
  flex-shrink: 0;
  position: relative;
}
.story-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--orange);
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.45s ease;
}
.story-step.active .story-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 14px rgba(234,88,12,.55);
  transform: scale(1.35);
}
.story-step.active .story-dot::after {
  opacity: 0.25;
  transform: scale(1);
}
.story-step.passed .story-dot {
  background: rgba(234,88,12,.4);
  border-color: rgba(234,88,12,.4);
}

/* The label (hidden by default, visible on active) */
.story-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.35s ease;
  position: absolute;
  right: 20px;
  pointer-events: none;
}
.story-step.active .story-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--orange);
}

/* Connector line between dots */
.story-line {
  width: 1px;
  height: 28px;
  background: rgba(0,0,0,.1);
  margin: 3px 0;
  position: relative;
  overflow: hidden;
}
.story-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: var(--orange);
  transition: height 0.55s ease;
}
.story-line.filled .story-line-fill { height: 100%; }

/* Story nav dots on light bg — no overrides needed */

@media (max-width: 1100px) { .story-nav { display: none; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 960px) {
  .hero-inner      { grid-template-columns: 1fr; text-align: center; gap: 48px; }
  .hero-visual     { order: -1; }
  .hero-trust, .cta-group { justify-content: center; }
  .hero-sub        { margin: 0 auto 36px; }
  .pain-grid       { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .stat-item       { border-right: none; border-bottom: 1px solid var(--dark-border); }
  .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
  .services-grid   { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .steps-grid      { grid-template-columns: 1fr; }
  .step-arrow      { display: none; }
  .pf-grid         { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid    { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .contact-options { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .footer-inner    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand    { grid-column: 1 / -1; }
  .main-nav, .nav-cta { display: none; }
  .nav-toggle      { display: flex; }
  .mobile-nav      { display: block; }
  .gallery-grid    { columns: 2; }
}
@media (max-width: 600px) {
  section          { padding: 64px 0; }
  .hero            { padding: 56px 0 72px; }
  .pf-grid         { grid-template-columns: 1fr; }
  .footer-inner    { grid-template-columns: 1fr; }
  .trusted-logos   { gap: 32px; }
  .trusted-logos img { height: 60px; }
  .float-badge     { display: none; }
  .phone-wrap      { width: 200px; }
  .gallery-grid    { columns: 1; }
}

/* ============================================
   TRADIE ENHANCEMENTS — sparky badge, prices, callout
   ============================================ */

/* Yellow pill badge variant */
.hero-badge--spark {
  background: rgba(244,183,49,.12);
  border-color: rgba(244,183,49,.4);
  color: #b8860b;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Service starting price */
.service-price {
  color: #c9961a;
  font-size: 1rem;
  font-weight: 700;
  margin: -8px 0 14px;
  letter-spacing: -0.01em;
}

/* Disclaimer below services grid */
.services-disclaimer {
  text-align: center;
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-3);
  font-style: italic;
}

/* Sparky callout quote box */
.sparky-quote {
  border-left: 4px solid #F4B731;
  background: rgba(244,183,49,.06);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 0 0 48px;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.65;
  max-width: 700px;
}

/* Leave a Review CTA */
.review-cta {
  text-align: center;
  margin-top: 48px;
}
.review-cta-label {
  font-size: 0.95rem;
  color: var(--text-2);
  margin-bottom: 16px;
}

/* WhatsApp button variant */
.btn-wa {
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.btn-wa:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
}

/* Dual SMS + WhatsApp CTA pair */
.cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}
