/* ============================================================
   Pirker Electricité SA — Landing Craft V2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Sora:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600;1,700;1,800&display=swap');

:root {
  --primary: #0d247d;
  --primary-d: #081757;
  --accent: #2563eb;
  --accent-d: #1d4ed8;
  --accent-soft: rgba(37, 99, 235, 0.10);
  --ink: #111827;
  --ink-soft: #4b5563;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #f4f6fb;
  --line: #e2e8f0;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 60px rgba(13, 36, 125, 0.14);
  --shadow-sm: 0 8px 26px rgba(13, 36, 125, 0.08);
  --maxw: 1180px;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent);
}

.wrap {
  width: min(var(--maxw), 92%);
  margin-inline: auto;
}

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-dark h2, .section-dark h3, .section-dark h1 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
}
.eyebrow.eyebrow-light { color: rgba(255,255,255,.85); }
.eyebrow.eyebrow-light::before { background: rgba(255,255,255,.7); }

.sec-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.sec-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.08;
}
.sec-head p {
  color: var(--ink-soft);
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.6;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.96rem;
  padding: 15px 30px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37,99,235,.28);
}
.btn-primary:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: #fff;
}
.btn-dark:hover { background: var(--primary-d); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover {
  border-color: var(--ink-soft);
  transform: translateY(-2px);
}
.btn-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.55);
}
.btn-white:hover { background: #fff; color: var(--primary); border-color: #fff; }
.btn-lg { padding: 17px 36px; font-size: 1.02rem; }
.btn-sm { padding: 11px 22px; font-size: 0.88rem; }

/* Reveal */
.reveal-el {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
html.js-ready .reveal-el {
  opacity: 0;
  transform: translateY(30px);
}
html.js-ready .reveal-el.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   Topbar
   ============================================================ */
.topbar {
  background: var(--primary-d);
  color: rgba(255,255,255,.78);
  font-size: 0.78rem;
  position: relative;
  z-index: 200;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 0;
  padding: 10px 0;
}
.topbar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.14);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.topbar-inner span:last-child { border-right: none; }
.topbar-inner svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 150;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: color .15s;
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.nav-cta .btn-sm { display: inline-flex; }
.nav-cta-mobile { display: none; margin-top: 8px; }
.nav-cta-mobile .btn { width: 100%; justify-content: center; }
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span { width: 26px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .25s, opacity .25s; }

/* ============================================================
   Hero — plein cadre + volet d'ouverture
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--primary-d);
}
.hero-bg,
.hero-shutter {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-bg {
  z-index: 1;
  background-image: url('assets/stock-1.jpg');
}
.hero-shutters {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  opacity: 0;
  pointer-events: none;
}
html.js-ready .hero-shutters { opacity: 1; }
.hero-shutter {
  width: 50%;
  background-image: url('assets/stock-4.jpg');
  background-size: 200% 100%;
  transition: transform 1.2s cubic-bezier(.65,0,.35,1);
}
.hero-shutter--left { background-position: 0% 50%; transform: translateX(0); }
.hero-shutter--right { background-position: 100% 50%; transform: translateX(0); }
html.js-ready .hero--open .hero-shutter--left { transform: translateX(-100%); }
html.js-ready .hero--open .hero-shutter--right { transform: translateX(100%); }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, rgba(8,23,87,.82) 0%, rgba(8,23,87,.45) 45%, rgba(8,23,87,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 4;
  padding: 170px 0 100px;
  width: min(var(--maxw), 92%);
  margin-inline: auto;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  max-width: 16ch;
  line-height: 0.98;
  font-weight: 700;
}
.hero h1 em { color: #fff; }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255,255,255,.88);
  margin: 24px 0 36px;
  max-width: 52ch;
  font-weight: 400;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-proof {
  display: flex;
  gap: 38px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero-proof .p {
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.hero-proof .p b {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  line-height: 1;
}
.hero-proof .p span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(255,255,255,.72);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html.js-ready .hero-content {
  opacity: 0;
  transform: translateY(20px);
}
html.js-ready .hero--open .hero-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease .7s, transform 1s ease .7s;
}

/* ============================================================
   Trust / Badges
   ============================================================ */
.trust {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
  padding: 30px 0;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust-badge .ico {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.trust-badge .ico svg { width: 20px; height: 20px; }

/* ============================================================
   Problem
   ============================================================ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.problem-card .ico {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.problem-card .ico svg { width: 26px; height: 26px; }
.problem-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.problem-card p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.65; }

/* ============================================================
   Services — Bento asymétrique
   ============================================================ */
.bento-head { text-align: center; margin-bottom: 50px; }
.bento-head h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
.bento-head p { color: var(--ink-soft); margin-top: 16px; font-size: 1.08rem; }
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 22px;
}
.bento-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--accent) 30%, var(--line)); }
.bento-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--primary) 0%, #143ba8 100%);
  color: #fff;
  border-color: transparent;
}
.bento-card--feature h3, .bento-card--feature p { color: #fff; }
.bento-card--feature .ico { background: rgba(255,255,255,.12); color: #fff; }
.bento-card--photo {
  grid-column: span 2;
  min-height: 220px;
  padding: 0;
  color: #fff;
  border-color: transparent;
}
.bento-card--photo .bento-photo {
  position: absolute;
  inset: 0;
  background-image: url('assets/stock-2.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.bento-card--photo .bento-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,23,87,.55) 0%, rgba(8,23,87,.85) 100%);
}
.bento-card--photo .bento-card-body { position: relative; z-index: 1; margin-top: auto; padding: 30px; }
.bento-card--photo h3, .bento-card--photo p { color: #fff; }
.bento-card .ico {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.bento-card .ico svg { width: 26px; height: 26px; }
.bento-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  line-height: 1.2;
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}
.bento-card p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; margin-top: auto; }
.bento-ribbon {
  position: absolute;
  top: 14px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  z-index: 2;
}
.bento-list {
  margin-top: 18px;
  list-style: none;
  display: grid;
  gap: 10px;
}
.bento-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: rgba(255,255,255,.85);
}
.bento-list li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   Proof — citation + compteurs
   ============================================================ */
.proof-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.proof-quote {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
}
.proof-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  color: var(--ink);
  margin: 0;
}
.proof-quote cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.proof-stat {
  padding: 34px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  border-left: 2px solid var(--accent);
}
.proof-stat:last-child { border-right: none; }
.proof-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.proof-stat span {
  display: block;
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   About — split text / collage 2 photos + stat
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.about-text h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 20px; }
.about-text > p { color: var(--ink-soft); margin-bottom: 26px; max-width: 55ch; }
.about-checklist {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}
.about-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.about-checklist li svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.about-collage {
  position: relative;
  min-height: 520px;
}
.about-photo {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo--1 { width: 58%; top: 0; left: 0; aspect-ratio: 4/5; z-index: 1; }
.about-photo--2 { width: 54%; bottom: 0; right: 0; aspect-ratio: 1/1; z-index: 2; border: 6px solid var(--bg-soft); }
.about-stat {
  position: absolute;
  left: 28px;
  bottom: 60px;
  z-index: 3;
  background: var(--accent);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.about-stat b { font-family: var(--font-display); font-size: 2.2rem; display: block; line-height: 1; }
.about-stat span { font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: .9; }

/* Timeline mini */
.timeline {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.timeline-item {
  text-align: center;
  min-width: 80px;
}
.timeline-item b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
}
.timeline-item span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   Parallax / Quote
   ============================================================ */
.parallax {
  position: relative;
  padding: 140px 0;
  background-color: var(--primary);
  background-image: url('assets/stock-2.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
.parallax::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8,23,87,.78);
}
.parallax blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  max-width: 24ch;
  margin: 0 auto;
  line-height: 1.25;
}
.parallax cite {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 24px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: rgba(255,255,255,.75);
}

/* ============================================================
   Steps / Method
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step {
  position: relative;
  padding: 40px 30px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.step .n {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3rem;
  color: var(--accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 10px;
}
.step h3 { font-size: 1.22rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 0.96rem; line-height: 1.6; }

/* ============================================================
   Pricing / Devis transparent
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { border: 2px solid var(--accent); transform: scale(1.03); box-shadow: var(--shadow); }
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-icon {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}
.price-icon svg { width: 28px; height: 28px; }
.price-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.price-card .desc { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; margin-bottom: 18px; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.price-card .price-note {
  display: block;
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 10px;
  font-weight: 700;
}
.price-features { list-style: none; margin-top: 22px; display: grid; gap: 10px; text-align: left; }
.price-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; color: var(--ink-soft); }
.price-features li svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ============================================================
   Testimonials
   ============================================================ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testi-stars { color: var(--accent); display: flex; gap: 4px; }
.testi-stars svg { width: 18px; height: 18px; }
.testi-card p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; margin: 0; flex: 1; }
.testi-card footer { font-size: 0.9rem; color: var(--ink); font-weight: 600; }
.testi-card footer span { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 400; margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  transition: background .2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { background: var(--bg-soft); }
.faq .pm { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform .25s; display: grid; place-items: center; }
.faq .pm svg { display: none; }
.faq .pm::before { content: "+"; font-size: 22px; font-weight: 700; line-height: 1; }
.faq details[open] .pm { transform: rotate(45deg); }
.faq .a { padding: 0 26px 24px; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.7; }

/* ============================================================
   CTA + Contact + Footer
   ============================================================ */
.cta-band {
  background: var(--primary);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 16px; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 60ch; margin: 0 auto 30px; font-size: 1.08rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-bottom: 18px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 28px; }
.contact-block { margin-bottom: 26px; }
.contact-block h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 700;
}
.contact-block p, .contact-block a { color: var(--ink); font-size: 1.02rem; line-height: 1.6; }
.contact-block a:hover { color: var(--accent); text-decoration: underline; }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.35rem; margin-bottom: 8px; }
.form-card .form-lead { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.96rem;
  background: var(--bg-soft);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-success {
  display: none;
  padding: 14px 18px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent-d);
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.is-visible { display: block; }

.footer {
  background: var(--primary-d);
  color: rgba(255,255,255,.68);
  padding: 70px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand .wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}
.footer-brand p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; max-width: 30ch; }
.footer-socials { display: flex; gap: 12px; list-style: none; }
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  color: #fff;
  transition: background .2s, transform .2s;
}
.footer-socials a:hover { background: var(--accent); transform: translateY(-2px); }
.footer-socials svg { width: 18px; height: 18px; }
.footer h5 {
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.68); font-size: 0.92rem; transition: color .15s; }
.footer-links a:hover { color: #fff; }
.footer-contact p { font-size: 0.92rem; line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,.68); transition: color .15s; }
.footer-contact a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1040px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-card--feature { grid-column: span 2; grid-row: span 2; }
  .bento-card--photo { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .problem-grid,
  .steps,
  .testi-grid,
  .pricing-grid { grid-template-columns: 1fr; }
  .about-grid,
  .contact-grid,
  .proof-split { grid-template-columns: 1fr; }
  .proof-stats { margin-top: 20px; }
  .about-collage { min-height: 420px; }
  .hero-content { padding: 150px 0 70px; }
  .hero h1 { max-width: none; }
  .parallax { padding: 110px 0; background-attachment: scroll; }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    gap: 0;
    padding: 0 6%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s, padding .35s;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { max-height: 420px; padding: 12px 6%; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-cta .btn-sm { display: none; }
  .burger { display: flex; }
  .nav-cta-mobile { display: block; }
  .topbar-inner span { border-right: none; padding: 0 14px; }
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid > .bento-card { grid-column: 1 / -1; }
  .bento-card--feature,
  .bento-card--photo { grid-column: 1 / -1; grid-row: span 1; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-proof { gap: 22px; }
  .proof-stats { grid-template-columns: 1fr; }
  .proof-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-stat:last-child { border-bottom: none; }
  .about-photo--1, .about-photo--2 { width: 100%; position: relative; aspect-ratio: 16/10; }
  .about-collage { display: grid; gap: 16px; min-height: auto; }
  .about-photo { position: relative; }
  .about-stat { position: relative; left: auto; bottom: auto; margin-top: -30px; margin-left: 16px; width: max-content; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-band h2, .about-text h2, .contact-info h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-proof .p b { font-size: 1.6rem; }
}
