/* ═══════════════════════════════════════════════
   DESIGN — LIFESTYLE · Bornes Recharges
   Apple keynote × Tesla product · Big imagery · Centered
   ═══════════════════════════════════════════════ */
:root {
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --bg-dark: #1d1d1f;
  --bg-darker: #0a0a0a;
  --ink: #1d1d1f;
  --ink-2: #4a4a4a;
  --mute: #6e6e73;
  --line: #d2d2d7;
  --line-dark: #2a2a2a;
  --green: #34d399;
  --green-deep: #16a34a;
  --blue: #0066cc;
  --voltage: #34d399;
  /* legacy */
  --primary: var(--green);
  --primary-dark: var(--green-deep);
  --primary-light: var(--bg-alt);
  --primary-rgb: 52,211,153;
  --accent: var(--green);
  --dark: var(--ink);
  --light: var(--bg-alt);
  --paper: var(--bg);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--green); color: var(--bg-darker); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }

h1, h2, h3, h4 {
  font-family: 'SF Pro Display', 'Helvetica Neue', system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.08;
}

/* ─── Skip ─── */
.skip-to-content { position: absolute; left: -9999px; top: -9999px; padding: .5rem 1rem; background: var(--ink); color: var(--bg); }
.skip-to-content:focus { left: 1rem; top: 1rem; z-index: 999; }

/* ─── Header (Apple-style) ─── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.05);
  padding: 0 24px;
  height: 48px;
  display: flex; align-items: center; justify-content: center;
}
header::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
}
header .logo {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 17px;
  letter-spacing: -0.02em;
}
header .logo i { color: var(--green); width: 18px; height: 18px; }
header .logo span { color: var(--ink); }
header .logo .dot { display: none; }
header nav ul {
  display: flex; gap: 30px; list-style: none;
}
header nav a {
  color: var(--ink); opacity: .8; font-size: 13px;
  font-weight: 400; letter-spacing: -0.01em;
  transition: opacity .2s;
}
header nav a:hover { opacity: 1; color: var(--ink); }
.header-cta {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  background: var(--blue); color: white !important;
  padding: 7px 14px; border: none; cursor: pointer; border-radius: 100px;
  font-family: inherit; font-weight: 500; font-size: 13px;
  letter-spacing: -0.005em; transition: opacity .2s;
}
.header-cta:hover { opacity: .85; }
.hide-mobile { display: inline-flex; }
.hamburger { display: none; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; width: 32px; height: 32px; flex-direction: column; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--ink); margin: 0 auto; }
.mobile-menu { display: none; }

/* ─── Breadcrumb ─── */
.breadcrumb { padding: 24px 24px 0; max-width: 1200px; margin: 0 auto; }
.breadcrumb-inner { font-size: 12px; color: var(--mute); }
.breadcrumb a { color: var(--mute); }
.breadcrumb a:hover { color: var(--ink); opacity: 1; }
.breadcrumb-sep { color: var(--line); margin: 0 .5em; }
.breadcrumb-current { color: var(--ink); }

/* ─── Hero (full bleed video) ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 48px);
  background: var(--bg-darker);
  overflow: hidden;
  color: white;
  padding: 0;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://image.pollinations.ai/prompt/luxury%20Tesla%20electric%20car%20charging%20at%20home%20in%20elegant%20modern%20garage%20at%20dusk%2C%20warm%20ambient%20lighting%2C%20premium%20architectural%20setting%2C%20cinematic%20photorealistic?width=2000&height=1200&seed=42&nologo=true&model=flux&enhance=true');
  background-size: cover; background-position: center;
  z-index: 1;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.7) 100%);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: calc(100vh - 48px);
  padding: 80px 60px;
  max-width: 1400px; margin: 0 auto;
}
.hero-badge {
  font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
  margin-bottom: 16px; opacity: .85; color: white; display: inline-block;
}
.hero h1 {
  font-family: inherit !important;
  font-size: clamp(48px, 9vw, 112px) !important;
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  max-width: 14ch;
  color: white;
}
.hero p {
  font-size: 21px;
  line-height: 1.4;
  opacity: .92;
  max-width: 38ch;
  margin-bottom: 32px;
  color: white;
  font-weight: 400;
}
.hero-actions { display: inline-flex; gap: 18px; align-items: center; flex-wrap: wrap; margin-top: 12px; }
.hero-cta-secondary {
  color: white; opacity: .9; text-decoration: none;
  font-size: 16px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 6px;
}
.hero-cta-secondary::after { content: '→'; transition: transform .2s; }
.hero-cta-secondary:hover { opacity: 1; }
.hero-cta-secondary:hover::after { transform: translateX(4px); }
.hero-stats {
  display: flex; gap: 48px; margin-top: 48px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}
.stat-card { text-align: left; }
.stat-number { font-size: 36px; font-weight: 600; line-height: 1; color: white; letter-spacing: -0.02em; }
.stat-label { font-size: 12px; opacity: .75; margin-top: 8px; color: white; letter-spacing: -0.005em; }
.trust-row { display: flex; gap: 32px; flex-wrap: wrap; margin-top: 24px; font-size: 13px; opacity: .8; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; color: white; }

/* ─── Cluster hero (topic pages) ─── */
.cluster-hero {
  padding: 100px 24px 80px;
  background: var(--bg-alt);
  text-align: center;
}
.cluster-hero .badge {
  font-size: 13px; font-weight: 500; color: var(--green-deep);
  letter-spacing: -0.005em; margin-bottom: 12px;
  display: inline-block; background: none; padding: 0; border: 0;
  text-transform: none;
}
.cluster-hero h1 {
  font-family: inherit !important;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 18ch; margin-left: auto; margin-right: auto;
}
.cluster-hero p {
  font-size: 21px; color: var(--mute); max-width: 56ch;
  margin: 0 auto; line-height: 1.4;
}

/* ─── Buttons (Apple style) ─── */
.btn-cta, .btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; background: var(--blue); color: white;
  border: none; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-weight: 500; font-size: 16px;
  letter-spacing: -0.01em; text-decoration: none;
  transition: opacity .2s;
}
.btn-cta:hover, .btn-primary:hover { opacity: .85; color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border: 1px solid white;
  color: white; background: transparent; text-decoration: none;
  font-family: inherit; font-weight: 500; font-size: 16px;
  border-radius: 100px;
  letter-spacing: -0.01em; transition: background .2s, color .2s;
}
.btn-outline:hover { background: white; color: var(--ink); }
.btn-link {
  font-size: 16px; color: var(--blue); font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; padding: 0; border: 0;
}
.btn-link::after { content: '→'; transition: transform .2s; }
.btn-link:hover::after { transform: translateX(4px); }

/* ─── Section base ─── */
.section { padding: 100px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section-white { background: var(--bg); }
.section-alt { background: var(--bg-alt); }

/* ─── Feature blocks (Apple keynote style) ─── */
.feature-block {
  padding: 100px 24px; text-align: center;
  background: var(--bg);
}
.feature-block.dark {
  background: var(--bg-darker);
  color: white;
}
.feature-block.dark h2,
.feature-block.dark p { color: white; }
.feature-block h2 {
  font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 16px; max-width: 18ch;
  margin-left: auto; margin-right: auto;
}
.feature-block .accent { color: var(--green); }
.feature-block p {
  font-size: 21px; color: var(--mute);
  max-width: 38ch; margin: 0 auto 40px;
  line-height: 1.4;
}
.feature-block.dark p { color: rgba(255,255,255,.7); }
.feature-block .image, .feature-block .photo {
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 16/9; border-radius: 18px;
  background-size: cover; background-position: center;
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* ─── Two-column duo block ─── */
.duo {
  padding: 100px 24px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.duo-alt { background: var(--bg-alt); }
.duo h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 600;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.duo p {
  font-size: 17px; line-height: 1.55;
  color: var(--mute); margin-bottom: 16px;
}
.duo .image, .duo .photo {
  aspect-ratio: 1; border-radius: 18px;
  background-size: cover; background-position: center;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}

/* ─── Specs (Tesla style) ─── */
.specs {
  background: var(--bg-darker); color: white;
  padding: 100px 24px;
}
.specs h2 {
  text-align: center; font-size: clamp(36px, 5vw, 56px);
  font-weight: 600; margin-bottom: 16px;
  color: white; letter-spacing: -0.025em;
}
.specs-sub {
  text-align: center; font-size: 18px;
  opacity: .7; margin-bottom: 60px; color: white;
  max-width: 50ch; margin-left: auto; margin-right: auto;
}
.specs-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--line-dark);
  border: 1px solid var(--line-dark);
  border-radius: 12px; overflow: hidden;
}
.spec-card {
  background: var(--bg-darker);
  padding: 36px 24px;
  transition: background .2s;
}
.spec-card:hover { background: #0f0f0f; }
.spec-card .num {
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 600; line-height: 1;
  letter-spacing: -0.025em; margin-bottom: 12px;
  color: white;
}
.spec-card .num small { font-size: 24px; opacity: .6; font-weight: 400; }
.spec-card .label {
  font-size: 13px; line-height: 1.45;
  color: rgba(255,255,255,.7);
}

/* ─── Gallery scroll horizontal ─── */
.gallery-row { padding: 80px 0; }
.gallery-row h2 {
  text-align: center; font-size: clamp(36px, 5vw, 56px);
  font-weight: 600; margin-bottom: 48px;
  padding: 0 24px; letter-spacing: -0.025em;
}
.gallery-scroll {
  display: flex; gap: 16px;
  overflow-x: auto; padding: 0 24px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 4px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
.gallery-card {
  flex: 0 0 380px; aspect-ratio: 4/5;
  border-radius: 18px; overflow: hidden;
  position: relative; scroll-snap-align: start;
  background-color: var(--bg-alt);
  background-size: cover; background-position: center;
  cursor: pointer; transition: transform .35s;
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0,0,0,.85));
  color: white;
}
.gallery-card-overlay h3 {
  font-size: 24px; font-weight: 600;
  margin-bottom: 6px; color: white; letter-spacing: -0.015em;
}
.gallery-card-overlay p { font-size: 14px; opacity: .85; }

/* ─── Pricing table — Apple plain table style ─── */
.pricing-table {
  width: 100%; border-collapse: collapse;
  margin: 2rem 0; font-size: 15px;
}
.pricing-table tr { border-bottom: 1px solid var(--line); }
.pricing-table tr:first-child { border-top: 1px solid var(--ink); }
.pricing-table th {
  text-align: left; padding: 16px 16px;
  font-size: 12px; font-weight: 500; color: var(--mute);
  text-transform: uppercase; letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
}
.pricing-table td { padding: 22px 16px; vertical-align: baseline; color: var(--ink-2); }
.pricing-table td:first-child { font-size: 17px; font-weight: 500; color: var(--ink); }
.pricing-table .price {
  font-weight: 600; font-size: 17px; color: var(--green-deep);
  text-align: right; white-space: nowrap; letter-spacing: -0.01em;
}
.pricing-table .num { color: var(--mute); font-size: 13px; width: 50px; }
.pricing-table .name { font-size: 17px; font-weight: 500; color: var(--ink); }
.pricing-table .detail { font-size: 14px; color: var(--mute); }
.pricing-table tr:hover td { background: rgba(0,0,0,.02); }

/* ─── FAQ ─── */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 0;
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-weight: 500; font-size: 18px;
  color: var(--ink); line-height: 1.4; letter-spacing: -0.015em;
  position: relative; padding-right: 40px;
  transition: opacity .2s;
}
.faq-q:hover { opacity: .7; }
.faq-q::after {
  content: '+'; position: absolute; right: 0; top: 22px;
  font-size: 24px; color: var(--mute); font-weight: 300;
  transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s, padding .4s; }
.faq-a p { padding: 0 0 24px 0; color: var(--mute); font-size: 16px; line-height: 1.55; }
.faq-item.open .faq-a { max-height: 600px; }

/* ─── Article content (topic pages) ─── */
.article-content {
  max-width: 720px; margin: 0 auto; padding: 0 24px;
  font-size: 17px; line-height: 1.7; color: var(--ink);
}
.article-content h2 {
  font-size: clamp(32px, 4vw, 48px); font-weight: 600;
  margin: 4rem 0 1.5rem; line-height: 1.1; letter-spacing: -0.025em;
}
.article-content h3 {
  font-size: 22px; font-weight: 600;
  line-height: 1.3; margin: 2.5rem 0 1rem;
  color: var(--ink); letter-spacing: -0.015em;
}
.article-content p { margin-bottom: 1.2rem; color: var(--ink-2); }
.article-content ul, .article-content ol { margin: 1rem 0 1.5rem 1.5rem; }
.article-content li { margin-bottom: .5rem; color: var(--ink-2); }
.article-content strong { color: var(--green-deep); font-weight: 600; }

/* ─── Section head (universal for topic pages) ─── */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2, .section-head .section-h2 {
  font-family: inherit !important;
  font-size: clamp(36px, 5vw, 64px); font-weight: 600;
  line-height: 1.08; letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.section-head p, .section-head .section-sub {
  font-size: 19px; color: var(--mute);
  max-width: 50ch; margin: 0 auto;
}
.badge {
  display: inline-block; font-size: 13px;
  font-weight: 500; color: var(--green-deep);
  margin-bottom: 12px; background: none; padding: 0;
  text-transform: none; letter-spacing: -0.005em;
}

/* ─── Logo cloud ─── */
.logo-cloud {
  padding: 30px 24px; background: var(--bg);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; justify-content: center; align-items: center;
  gap: 40px; flex-wrap: wrap;
  font-size: 13px; color: var(--mute);
}
.logo-cloud .label { color: var(--mute); text-transform: none; font-weight: 500; }
.logo-cloud .logo-item { color: var(--ink); font-weight: 500; }

/* ─── Process steps ─── */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; max-width: 1200px; margin: 60px auto 0;
}
.step {
  background: var(--bg); padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--line);
}
.step-icon {
  width: 40px; height: 40px; margin-bottom: 24px;
  background: var(--green); color: white; border-radius: 100px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.step h3, .step h4 {
  font-size: 21px; font-weight: 600;
  margin-bottom: 8px; letter-spacing: -0.015em;
}
.step p { color: var(--mute); font-size: 15px; line-height: 1.55; }

/* ─── Features grid (legacy) ─── */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; max-width: 1200px; margin: 0 auto;
}
.feature-card {
  background: var(--bg); padding: 36px 28px;
  border-radius: 16px; border: 1px solid var(--line);
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--green); transform: translateY(-2px); }
.feature-icon {
  width: 36px; height: 36px; margin-bottom: 20px;
  background: var(--green); color: white; border-radius: 100px;
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 19px; font-weight: 600; margin-bottom: .5rem; letter-spacing: -0.01em; }
.feature-card p { color: var(--mute); font-size: 15px; line-height: 1.55; }

/* ─── Testimonials ─── */
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  padding: 32px 28px; background: var(--bg);
  border: 1px solid var(--line); border-radius: 16px;
}
.testimonial .stars { color: var(--green); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial p { font-size: 16px; line-height: 1.6; color: var(--ink); margin-bottom: 20px; }
.author { display: flex; gap: 12px; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); }
.avatar {
  width: 40px; height: 40px; border-radius: 100px;
  background: var(--green); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.author .name { font-weight: 600; font-size: 14px; color: var(--ink); }
.author .role { font-size: 12px; color: var(--mute); }

/* ─── Regions grid ─── */
.regions-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px; max-width: 1200px; margin: 0 auto;
}
.region-card {
  padding: 24px; background: var(--bg-alt);
  border-radius: 12px;
  text-decoration: none; color: var(--ink);
  transition: background .2s, transform .2s;
  display: block;
}
.region-card:hover { background: var(--bg); transform: translateY(-2px); border: 1px solid var(--green); margin: -1px; }
.region-card h3 {
  font-size: 19px; font-weight: 600;
  line-height: 1.2; margin-bottom: 4px;
  color: var(--ink); letter-spacing: -0.01em;
}
.region-card p { font-size: 13px; color: var(--mute); }

/* ─── Chips ─── */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--bg-alt);
  border-radius: 100px;
  color: var(--ink); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: background .2s;
}
.chip:hover { background: var(--green); color: white; }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; margin-bottom: 8px;
  font-size: 13px; font-weight: 500; color: var(--ink);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--line); background: var(--bg);
  font-family: inherit; font-size: 16px;
  color: var(--ink); border-radius: 12px;
  transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--blue);
}

/* ─── Reassurance ─── */
.reassurance-bar {
  padding: 18px 24px; background: var(--bg-alt);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; justify-content: center; flex-wrap: wrap; gap: 28px;
  font-size: 13px; color: var(--mute);
}
.reassurance-bar strong { color: var(--green-deep); font-weight: 600; }

/* ─── Final CTA ─── */
.final-cta, .cta-section {
  text-align: center; padding: 140px 24px;
  background: var(--bg-alt);
}
.cta-eyebrow {
  font-size: 13px; color: var(--green-deep); font-weight: 500;
  margin-bottom: 16px; display: inline-block;
  text-transform: none;
}
.final-cta h2, .cta-section h2, .cta-h2 {
  font-family: inherit !important;
  font-size: clamp(40px, 6vw, 80px); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 18ch; margin-left: auto; margin-right: auto;
  color: var(--ink);
}
.cta-h2 .accent, .cta-h2 em { color: var(--green-deep); font-style: normal; }
.cta-h2 .dot { color: var(--green-deep); }
.cta-row { display: inline-flex; align-items: center; gap: 24px; }

/* ─── Widget devis ─── */
.widget-section, .widget-frame, .widget-wrapper {
  background: var(--bg); padding: 40px;
  border: 1px solid var(--line); border-radius: 18px;
  max-width: 780px; margin: 0 auto;
  color: var(--ink);
}
.widget-section { padding: 100px 24px; background: var(--bg-alt); border: none; max-width: none; }
.widget-section .widget-frame, .widget-section .widget-wrapper {
  background: var(--bg); padding: 40px; max-width: 780px; margin: 0 auto;
}
.widget-frame *, .widget-wrapper * { color: var(--ink); }
.widget-frame .widget-header { text-align: center; margin-bottom: 28px; }
.widget-frame .badge { color: var(--green-deep); margin-bottom: 14px; }
.widget-wrapper h2 { font-size: 28px; font-weight: 600; margin-bottom: 8px; }
.widget-wrapper p { color: var(--mute); font-size: 16px; }

/* ─── Footer ─── */
footer {
  background: var(--bg-alt); padding: 60px 24px 30px;
  border-top: 1px solid var(--line);
}
.footer-content {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto;
}
.footer-section h4 {
  font-size: 13px; font-weight: 600;
  color: var(--ink); margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.footer-section p {
  color: var(--mute); font-size: 13px; line-height: 1.55;
  max-width: 28ch;
}
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 8px; }
.footer-section a {
  color: var(--mute); text-decoration: none; font-size: 13px;
  transition: color .2s;
}
.footer-section a:hover { color: var(--ink); opacity: 1; }
.footer-bottom {
  margin-top: 60px; padding-top: 20px;
  border-top: 1px solid var(--line); text-align: center;
  font-size: 12px; color: var(--mute);
}

/* ─── Sticky CTAs ─── */
.mobile-sticky-bar {
  display: none;
  position: fixed; bottom: 16px; left: 16px; right: 16px;
  z-index: 40; text-align: center;
}
.mobile-sticky-bar a {
  display: block; padding: 14px 20px;
  background: var(--blue); color: white !important;
  border-radius: 100px; font-weight: 500; font-size: 15px;
  text-decoration: none; box-shadow: 0 8px 24px rgba(0,102,204,.3);
}
.desktop-sticky-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 40;
  background: var(--bg); border: 1px solid var(--line);
  padding: 14px 20px; max-width: 360px; border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.dsc-inner { display: flex; align-items: center; gap: 16px; }
.dsc-inner span { font-size: 14px; color: var(--ink); }
.dsc-inner strong { color: var(--green-deep); font-weight: 600; }

.rgpd-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 60;
  background: var(--ink); color: white; padding: 16px 24px;
}
.rgpd-inner { max-width: 1200px; margin: 0 auto; display: flex; gap: 24px; align-items: center; flex-wrap: wrap; justify-content: space-between; }
.rgpd-banner p { font-size: 14px; }
.rgpd-banner a { color: var(--green); }
.rgpd-btns { display: flex; gap: 8px; }

/* ─── Reveal ─── */
.reveal-on-scroll, .reveal {
  opacity: 1; transform: none;
  transition: opacity .6s ease, transform .6s ease;
}

*:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
.region-card:focus-visible { background: var(--bg); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── Mobile ─── */
@media (max-width: 900px) {
  header { padding: 0 16px; }
  header .logo { left: 16px; font-size: 15px; }
  header nav, .header-cta { display: none; }
  .hide-mobile { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; position: fixed; top: 48px; left: 0; right: 0; bottom: 0; background: var(--bg); padding: 32px 24px; z-index: 49; overflow-y: auto; }
  .mobile-menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 18px; color: var(--ink); text-decoration: none; }
  .breadcrumb { padding: 16px 16px 0; }
  .hero-content { padding: 60px 24px; }
  .hero h1 { font-size: clamp(40px, 12vw, 72px) !important; }
  .hero-stats { gap: 20px; }
  .feature-block, .duo, .specs, .gallery-row, .final-cta, .section, .widget-section { padding: 60px 16px; }
  .duo { grid-template-columns: 1fr; gap: 40px; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .gallery-card { flex: 0 0 280px; }
  .footer-content { grid-template-columns: 1fr 1fr; gap: 32px; }
  .article-content { padding: 0 16px; }
  .desktop-sticky-cta { display: none !important; }
  .mobile-sticky-bar { display: block; }
  body { padding-bottom: 80px; }
}
