/* === VITRINE DIGITALE — Portfolio CSS === */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #132238;
  --navy-light: #1e3a5f;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-900: #111827;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.16);
  --radius: 12px;
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-900);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
  padding: 12px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.01em;
}
.logo-img {
  height: 42px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: .9rem;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.btn-nav {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.btn-nav:hover { background: var(--orange-dark) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(249,115,22,.14) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 85%, rgba(30,58,95,.6) 0%, transparent 45%),
    linear-gradient(180deg, var(--navy) 0%, #0d1f35 100%);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,115,22,.15);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .825rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(249,115,22,.25);
}
h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.highlight { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { text-align: center; }
.stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--white); }
.stat span { font-size: .75rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

/* Browser mockup */
.hero-visual { position: relative; display: flex; justify-content: center; }
.mockup-browser {
  background: #182a44;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08);
}
.browser-bar {
  background: #0d1f35;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.url-bar {
  flex: 1;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  padding: 4px 12px;
  font-size: .72rem;
  color: rgba(255,255,255,.35);
  margin-left: 8px;
}
.browser-content { padding: 14px; }
.mock-nav {
  height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  margin-bottom: 10px;
}
.mock-hero {
  height: 110px;
  background: linear-gradient(135deg, rgba(249,115,22,.25) 0%, rgba(14,58,95,.4) 100%);
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px;
  gap: 6px;
}
.mock-hero-text {
  height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 4px;
  width: 70%;
}
.mock-hero-text.short { width: 45%; }
.mock-btn {
  height: 28px;
  width: 100px;
  background: var(--orange);
  border-radius: 5px;
  opacity: .8;
  margin-top: 4px;
}
.mock-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.mock-card {
  height: 56px;
  background: rgba(255,255,255,.05);
  border-radius: 6px;
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  animation: float 3s ease-in-out infinite;
}
.floating-badge i { color: var(--orange); }
.badge-1 { bottom: 60px; left: -20px; animation-delay: 0s; }
.badge-2 { top: 40px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.bg-light { background: var(--gray-100); }
.bg-navy { background: var(--navy); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header.light h2,
.section-header.light p { color: var(--white); }
.section-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-header p { color: var(--gray-600); font-size: 1rem; line-height: 1.7; }
.section-header.light p { color: rgba(255,255,255,.65); }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  align-items: start;
}
.pricing-card {
  background: linear-gradient(145deg, var(--navy-mid), var(--navy-light));
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.06);
}
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 20px; }
.price { margin-bottom: 16px; }
.amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.amount sup { font-size: 2rem; vertical-align: top; padding-top: .4em; }
.period { display: block; font-size: .85rem; color: rgba(255,255,255,.45); margin-top: 6px; }
.pricing-desc { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: .95rem; line-height: 1.6; }
.pricing-features { list-style: none; margin-bottom: 36px; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.pricing-features li:last-child { border: none; }
.pricing-features i { color: var(--orange); margin-top: 3px; flex-shrink: 0; font-size: .85rem; }

.pricing-aside { display: flex; flex-direction: column; gap: 16px; }
.addon-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 16px;
  padding: 24px;
  transition: var(--transition);
}
.addon-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.addon-icon {
  width: 48px; height: 48px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange);
  flex-shrink: 0;
}
.addon-content h4 { font-weight: 700; margin-bottom: 6px; font-size: .95rem; }
.addon-content p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 10px; }
.addon-price { font-weight: 800; font-size: 1.15rem; color: var(--orange); }
.addon-price span { font-size: .85rem; color: var(--gray-600); font-weight: 400; }
.addon-price.free { color: #16a34a; }

.guarantee-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(249,115,22,.06);
  border: 1.5px solid rgba(249,115,22,.2);
  border-radius: 16px;
  padding: 20px 24px;
}
.guarantee-icon { font-size: 1.75rem; color: var(--orange); flex-shrink: 0; }
.guarantee-box strong { display: block; font-weight: 700; margin-bottom: 4px; }
.guarantee-box p { font-size: .85rem; color: var(--gray-600); line-height: 1.55; margin: 0; }

/* ── DEMOS ── */
.demos-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.demo-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.demo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.demo-img {
  height: 210px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-img.plombier { background: linear-gradient(145deg, #1a3a6b 0%, #2d6abf 100%); }
.demo-img.electricien { background: linear-gradient(145deg, #1a1a2e 0%, #2d2d50 100%); }
.demo-img.peintre { background: linear-gradient(145deg, #8b4513 0%, #c17b50 100%); }

/* Mini mockup dans la demo card */
.demo-screen {
  width: 75%; background: white; border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  pointer-events: none;
}
.ds-nav { height: 24px; }
.ds-nav { background: rgba(0,0,0,.08); }
.ds-nav.dark { background: #1a1a2e; }
.ds-nav.warm { background: #3d2b1f; }
.ds-hero { height: 70px; }
.ds-hero.blue { background: linear-gradient(90deg, #1a3a6b, #2d6abf); }
.ds-hero.yellow { background: linear-gradient(90deg, #1a1a2e, #f7c523); }
.ds-hero.terracotta { background: linear-gradient(90deg, #c17b50, #e8d5c0); }
.ds-row { display: flex; gap: 4px; padding: 6px 6px 6px; }
.ds-card { flex: 1; height: 28px; background: #f3f4f6; border-radius: 3px; }
.ds-card.dark { background: #2d2d44; }
.ds-card.warm { background: #f5e6d3; }

.demo-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}
.demo-card:hover .demo-overlay { opacity: 1; }
.btn-demo {
  background: var(--orange);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition);
}
.btn-demo:hover { background: var(--orange-dark); }
.demo-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-size: .75rem; font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.2);
}
.demo-info { padding: 22px 24px; }
.demo-info h3 { font-weight: 700; margin-bottom: 8px; font-size: 1.05rem; }
.demo-info p { font-size: .875rem; color: var(--gray-600); margin-bottom: 14px; line-height: 1.55; }
.demo-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.demo-tags span {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
}

/* ── AVANTAGES ── */
.avantages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.avantage {
  padding: 32px;
  border-radius: 16px;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
}
.avantage:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(249,115,22,.1);
  transform: translateY(-4px);
}
.avantage-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.avantage-icon.orange { background: rgba(249,115,22,.1); color: var(--orange); }
.avantage-icon.blue { background: rgba(10,22,40,.07); color: var(--navy); }
.avantage h3 { font-weight: 700; margin-bottom: 10px; }
.avantage p { font-size: .9rem; color: var(--gray-600); line-height: 1.65; }

/* ── PROCESS ── */
.steps {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 180px; max-width: 230px;
  text-align: center;
}
.step-number {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(249,115,22,.65);
  line-height: 1;
  margin-bottom: 16px;
}
.step h3 { color: var(--white); font-weight: 700; margin-bottom: 10px; }
.step p { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.6; }
.step-arrow { color: var(--orange); font-size: 1.25rem; padding-top: 28px; opacity: .5; }

/* ── FAQ ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active { border-color: var(--orange); }
.faq-question {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  background: none; border: none;
  text-align: left;
  font-size: .95rem; font-weight: 600; font-family: inherit;
  color: var(--gray-900);
  cursor: pointer; gap: 16px;
}
.faq-icon { flex-shrink: 0; color: var(--orange); transition: transform var(--transition); font-size: .9rem; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--gray-600); line-height: 1.75; font-size: .9rem; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-label { margin-bottom: 12px; }
.contact-info h2 { font-size: 2rem; font-weight: 800; margin-bottom: 16px; letter-spacing: -.02em; }
.contact-info > p { color: var(--gray-600); margin-bottom: 36px; line-height: 1.7; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: .9rem; color: var(--gray-600); }
.ci-icon {
  width: 42px; height: 42px;
  background: rgba(249,115,22,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); font-size: .9rem; flex-shrink: 0;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .8rem; font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: .9rem;
  transition: all var(--transition);
  background: var(--gray-100);
  color: var(--gray-900);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--gray-400);
  margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}
.form-success.show { display: block; }
.form-success i { font-size: 3rem; color: #16a34a; margin-bottom: 16px; }
.form-success h3 { font-size: 1.5rem; margin-bottom: 8px; }
.form-success p { color: var(--gray-600); }

/* ── FOOTER ── */
.footer { background: var(--navy); color: rgba(255,255,255,.55); padding: 64px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.65; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); }
.footer-links h4, .footer-legal h4 { color: var(--white); font-weight: 700; margin-bottom: 20px; font-size: .95rem; }
.footer-links ul, .footer-legal ul { list-style: none; }
.footer-links li, .footer-legal li { margin-bottom: 10px; }
.footer-links a, .footer-legal a { font-size: .875rem; transition: color var(--transition); }
.footer-links a:hover, .footer-legal a:hover { color: var(--orange); }
.footer-siret { margin-top: 20px; font-size: .78rem; line-height: 1.6; }
.footer-bottom { text-align: center; font-size: .8rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .avantages-grid { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .hero .container { grid-template-columns: 1fr; gap: 0; }
  .hero-visual { display: none; }
  .demos-grid { grid-template-columns: 1fr; }
  .avantages-grid { grid-template-columns: 1fr; }
  .steps { flex-direction: column; align-items: center; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); padding: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%; bottom: 0;
    width: 280px;
    background: var(--navy);
    flex-direction: column;
    padding: 100px 32px 48px;
    gap: 8px;
    transition: right var(--transition);
    box-shadow: -10px 0 40px rgba(0,0,0,.4);
    overflow-y: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links li { width: 100%; }
  .nav-links a { padding: 12px 0; display: block; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,.06); }
  .btn-nav { border-radius: 8px; padding: 12px 16px !important; margin-top: 16px; }
  .hamburger { display: flex; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .contact-form-wrap { padding: 24px 20px; }
  .pricing-card { padding: 36px 24px; }
  .avantage { padding: 24px; }
}

/* ── 3-PACK PRICING ── */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 40px;
}
.pack-card { padding: 36px 28px; }
.pack-card.featured { padding: 40px 32px; }
.pack-card:not(.featured) {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--gray-900);
  box-shadow: var(--shadow);
}
.pack-card:not(.featured) h3 { color: var(--gray-900); }
.pack-card:not(.featured) .pricing-desc { color: var(--gray-600); }
.pack-card:not(.featured) .pricing-features li {
  color: var(--gray-600);
  border-bottom-color: var(--gray-200);
}
.pack-card:not(.featured) .pricing-features i { color: var(--orange); }
.pack-number {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.pack-card.featured .pack-number { color: rgba(255,255,255,.45); }
.pack-card:not(.featured) .pack-number { color: var(--orange); }
.pricing-options {
  margin: 16px 0 18px;
  border-radius: 10px;
  padding: 14px 16px;
}
.pack-card.featured .pricing-options {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.pack-card:not(.featured) .pricing-options {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}
.options-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--orange);
  margin-bottom: 10px;
}
.pricing-options ul { list-style: none; }
.pricing-options ul li {
  font-size: .8rem;
  padding: 3px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.pricing-options ul li i { color: var(--orange); font-size: .7rem; flex-shrink: 0; margin-top: 3px; }
.pack-card.featured .pricing-options ul li { color: rgba(255,255,255,.72); }
.pack-card:not(.featured) .pricing-options ul li { color: var(--gray-600); }
.pricing-delay {
  font-size: .76rem;
  margin-bottom: 18px;
  text-align: center;
  line-height: 1.5;
}
.pack-card.featured .pricing-delay { color: rgba(255,255,255,.45); }
.pack-card:not(.featured) .pricing-delay { color: var(--gray-400); }
.btn-outline {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,115,22,.25);
}

/* ── GUARANTEE ROW ── */
.guarantee-row {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}
.guarantee-row .guarantee-box { max-width: 620px; width: 100%; }

/* ── COMPARISON TABLE ── */
.comparison-wrap { margin-top: 16px; }
.comparison-title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -.02em;
}
.table-responsive {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: .875rem;
}
.comparison-table th,
.comparison-table td {
  padding: 13px 20px;
  text-align: center;
  border-bottom: 1px solid var(--gray-200);
}
.comparison-table th {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-weight: 700;
  font-size: .8rem;
}
.col-feature { text-align: left !important; width: 40%; }
.comparison-table td:first-child {
  text-align: left;
  color: var(--gray-600);
  font-weight: 500;
}
.comparison-table .col-featured { background: rgba(249,115,22,.05); }
.comparison-table th.col-featured { background: var(--orange); color: var(--white); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: var(--gray-100); }
.comparison-table tbody tr:hover td.col-featured { background: rgba(249,115,22,.08); }
.ct-check { color: #16a34a; font-size: .9rem; }
.ct-dash { color: var(--gray-400); }
.ct-option { color: var(--orange); font-size: .8rem; font-weight: 600; }
.th-price {
  display: block;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--orange);
  margin-top: 4px;
}
.comparison-table th.col-featured .th-price { color: var(--white); }

/* ── DEMO SCREENSHOTS ── */
.demo-screenshot {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: block;
  z-index: 2;
  border: none;
}
.demo-screenshot.loaded { opacity: 1; }
.demo-fallback { transition: opacity 0.3s ease; z-index: 1; }
.demo-screenshot.loaded ~ .demo-fallback { opacity: 0; }
.demo-overlay { z-index: 5; }
.demo-badge { z-index: 6; position: relative; }

/* Solar site colors */
.demo-img.solaire-tarn { background: linear-gradient(145deg, #1a4a1a 0%, #2d8b3d 100%); }
.demo-img.solaire-var  { background: linear-gradient(145deg, #0d2d5c 0%, #1565c0 100%); }
.ds-green       { background: #1a4a1a !important; }
.ds-ocean       { background: #0d2d5c !important; }
.ds-solar       { background: linear-gradient(90deg, #1a4a1a, #f7c523) !important; }
.ds-ocean-hero  { background: linear-gradient(90deg, #0d2d5c, #42a5f5) !important; }
.ds-green-light { background: #c8e6c9 !important; }
.ds-ocean-light { background: #bbdefb !important; }

@media (max-width: 1100px) {
  .pricing-grid-3 { grid-template-columns: 1fr; }
}

