:root {
  --orange: #D84A00;
  --orange-light: #F05A10;
  --orange-dim: rgba(216, 74, 0, 0.07);
  --navy: #1A3055;
  --navy-dim: rgba(26, 48, 85, 0.06);
  --bg: #FFFFFF;
  --bg2: #F5F4F1;
  --bg3: #ECEAE6;
  --border: rgba(0, 0, 0, 0.08);
  --border-orange: rgba(216, 74, 0, 0.22);
  --border-navy: rgba(26, 48, 85, 0.18);
  --text: #1C1B14;
  --text-muted: #64635A;
  --text-faint: #B0AFA8;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
}

/* ── NAV HAMBURGER ── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background .2s;
}

.nav-burger:hover {
  background: var(--bg2);
}

.nav-burger span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 32px 5%;
  gap: 8px;
  animation: slideDown .25s ease;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  color: var(--text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}

.nav-mobile-overlay a:hover {
  color: var(--orange);
}

.nav-mobile-overlay .nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 14px 24px !important;
  border-radius: 10px !important;
  text-align: center !important;
  margin-top: 16px;
  border-bottom: none !important;
  font-size: 16px !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.nav-logo span {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  cursor: pointer;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background .2s !important;
}

.nav-cta:hover {
  background: var(--orange-light) !important;
}

/* ── PAGES ── */
.page {
  display: none;
  padding-top: 68px;
}

.page.active {
  display: block;
}

/* ── HERO ── */
.hero {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 80px 5% 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(216, 74, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.hero-sub {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-faint);
}

.hero-trust svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
  flex-shrink: 0;
}

.hero-trust span {
  color: var(--text-muted);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .2s, transform .15s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color .2s, color .2s;
  cursor: pointer;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
}

.btn-ghost:hover {
  border-color: var(--text-muted);
  color: var(--text);
}

/* Hero visual — mockup dashboard */
.hero-visual {
  position: relative;
}

.mockup-window {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.mockup-bar {
  background: var(--bg3);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mock-dot.r {
  background: #FF5F57;
}

.mock-dot.y {
  background: #FFBD2E;
}

.mock-dot.g {
  background: #28CA41;
}

.mock-url {
  flex: 1;
  background: var(--bg2);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 11px;
  color: var(--text-muted);
  margin: 0 8px;
}

.mockup-body {
  padding: 20px;
}

.mock-calc {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 14px;
}

.mock-calc-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.mock-select-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mock-select {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--text-muted);
}

.mock-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.mock-price-label {
  font-size: 11px;
  color: var(--text-muted);
}

.mock-price-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--orange);
}

.mock-btn {
  width: 100%;
  background: var(--orange);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
}

.mock-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.mock-stat {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.mock-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.mock-stat-l {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 3px;
}

.floating-badge {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.floating-badge .fb-dot {
  width: 8px;
  height: 8px;
  background: #28CA41;
  border-radius: 50%;
  flex-shrink: 0;
}

.fb-1 {
  top: -16px;
  right: -16px;
}

.fb-2 {
  bottom: -16px;
  left: -16px;
}

/* ── SECTION COMMON ── */
section {
  padding: 100px 5%;
}

.section-inner {
  max-width: 3000px;
  margin: 0 auto;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  color: var(--orange);
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 60px;
}

/* ── PAIN SECTION ── */
.pain-section {
  background: var(--bg2);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.pain-card {
  background: var(--bg2);
  padding: 36px;
  transition: background .2s;
}

.pain-card:hover {
  background: var(--bg3);
}

.pain-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pain-icon svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.pain-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}

.feature-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-3px);
}

.feature-card.featured {
  border-color: var(--border-orange);
  background: linear-gradient(135deg, rgba(216, 74, 0, 0.05) 0%, var(--bg2) 60%);
}

.feature-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-pill {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ── DASHBOARD SECTION ── */
.dashboard-section {
  background: var(--bg2);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.dashboard-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.dashboard-content h2 em {
  font-style: normal;
  color: var(--orange);
}

.dashboard-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.check-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5500' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Dashboard mockup */
.dash-mock {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.dash-header {
  background: var(--bg2);
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.dash-badge {
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.dash-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dash-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dash-stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 12px;
}

.dash-stat-n {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.dash-stat-n em {
  color: var(--orange);
  font-style: normal;
}

.dash-stat-l {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

.dash-table {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.dash-table-head {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-faint);
}

.dash-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
  align-items: center;
}

.dash-table-row:last-child {
  border-bottom: none;
}

.dash-check {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--border-orange);
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.dash-check.on {
  background: var(--orange);
  border-color: var(--orange);
}

.dash-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}

.status-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.status-dot.new::before {
  background: #FF5500;
}

.status-dot.rdv::before {
  background: #FFBD2E;
}

.status-dot.done::before {
  background: #28CA41;
}

/* ── PRICING ── */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 74, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 56px;
}

.pricing-toggle span {
  font-size: 14px;
  color: var(--text-muted);
}

.pricing-toggle span.active {
  color: var(--text);
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--border-orange);
  background: linear-gradient(160deg, rgba(216, 74, 0, 0.05) 0%, var(--bg2) 50%);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-name {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-price-block {
  margin-bottom: 28px;
}

.pricing-onetime {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.pricing-price-suffix {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-sub-price {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}

.pricing-sub-price strong {
  color: var(--text);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF5500' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-note {
  font-size: 12px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ── TESTIMONIALS ── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.stars {
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 14px;
}

.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--orange);
  flex-shrink: 0;
}

.testi-name {
  font-size: 14px;
  font-weight: 600;
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--navy);
  border-top: none;
  border-bottom: none;
}

.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-inner h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
}

.cta-inner h2 em {
  font-style: normal;
  color: var(--orange-light);
}

.cta-inner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
}

/* ── CALL BOX ── */
.call-box {
  background: linear-gradient(135deg, rgba(216, 74, 0, 0.08) 0%, var(--bg2) 60%);
  border: 1px solid var(--border-orange);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.call-box-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.call-box-content h3 em {
  font-style: normal;
  color: var(--orange);
}

.call-box-content p {
  font-size: 15px;
  color: var(--text-muted);
}

.call-box-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ── CONTACT SECTION ── */
.contact-section {
  background: var(--bg2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.contact-info h2 em {
  font-style: normal;
  color: var(--orange);
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}

.contact-link:hover {
  color: var(--text);
}

.contact-link-icon {
  width: 40px;
  height: 40px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-icon svg {
  width: 18px;
  height: 18px;
  color: var(--orange);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}

.form-group select {
  color: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select option {
  background: #1a1a1a;
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 5% 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 260px;
  margin-top: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color .2s;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-faint);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-faint);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--text-muted);
}

/* ── BLOG PAGE ── */
.blog-hero {
  padding: 80px 5% 60px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.blog-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.blog-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 36px;
}

/* Blog hero stats bar */
.blog-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.blog-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bhs-num {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
}

.bhs-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.bhs-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.blog-grid-section {
  padding: 60px 5%;
}

.blog-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(216, 74, 0, 0.10);
}

.blog-thumb {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.blog-card:hover .blog-thumb img {
  transform: scale(1.04);
}

.blog-thumb-featured {
  height: 280px;
}

/* Legacy fallback (if no img) */
.blog-thumb-bg {
  position: absolute;
  inset: 0;
  background: var(--bg3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(45deg, var(--navy) 0, var(--navy) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}

.thumb-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  background: white;
  border: 1px solid var(--border-orange);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thumb-icon svg {
  width: 32px;
  height: 32px;
  color: var(--orange);
}

/* image overlay gradient pour lisibilité si badge dessus */
.blog-thumb-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
  pointer-events: none;
}

.blog-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.blog-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.28;
  color: var(--text);
  margin-bottom: 10px;
}

.blog-card.featured h3 {
  font-size: 22px;
}

/* ── FAQ ACCORDION ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.faq-item {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 26px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  transition: background .2s;
}

.faq-question:hover {
  background: var(--bg2);
}

.faq-question-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.faq-chevron {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .35s cubic-bezier(.4, 0, .2, 1);
  color: var(--orange);
}

.faq-chevron svg {
  width: 14px;
  height: 14px;
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
}

.faq-item.open .faq-chevron {
  background: var(--orange);
}

.faq-item.open .faq-chevron svg {
  transform: rotate(180deg);
  color: #fff;
}

.faq-item.open .faq-chevron {
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer-inner {
  padding: 0 32px 26px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-answer-inner strong {
  color: var(--text);
}


.blog-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

.blog-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-faint);
  border-radius: 50%;
}

.blog-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.blog-cta {
  background: var(--navy);
  border: none;
  border-radius: 20px;
  padding: 52px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 60px;
}

.blog-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #fff;
}

.blog-cta h3 em {
  font-style: normal;
  color: var(--orange-light);
}

.blog-cta p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
}

/* ── SERVICES PAGE ── */
.services-page-hero {
  padding: 80px 5% 60px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.services-page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(216, 74, 0, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.services-page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.services-page-hero h1 em {
  font-style: normal;
  color: var(--orange);
}

.services-page-hero p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 36px;
}

.service-detail-section {
  padding: 80px 5%;
}

.service-detail-section:nth-child(even) {
  background: var(--bg2);
}

.service-detail-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-detail-grid.reverse {
  direction: rtl;
}

.service-detail-grid.reverse>* {
  direction: ltr;
}

.service-detail-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}

.service-detail-content h2 em {
  font-style: normal;
  color: var(--orange);
}

.service-detail-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-detail-content .btn-primary {
  margin-top: 8px;
}

/* Fake UI cards for service illustrations */
.service-ui-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.service-ui-header {
  background: var(--bg3);
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.service-ui-header-icon {
  width: 24px;
  height: 24px;
  background: var(--orange-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-ui-header-icon svg {
  width: 14px;
  height: 14px;
  color: var(--orange);
}

.service-ui-body {
  padding: 18px;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.calc-option {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border-color .2s;
}

.calc-option.selected {
  border-color: var(--border-orange);
  background: var(--orange-dim);
  color: var(--text);
}

.calc-option-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}

.calc-option.selected .calc-option-dot {
  background: var(--orange);
}

.calc-result {
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.calc-result-label {
  font-size: 13px;
  color: var(--text-muted);
}

.calc-result-price {
  font-family: 'Syne', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--orange);
}

.rdv-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.rdv-slot {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
}

.rdv-slot.available {
  border-color: var(--border-orange);
  color: var(--text);
}

.rdv-slot.booked {
  opacity: 0.4;
  text-decoration: line-through;
  cursor: not-allowed;
}

.email-preview {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
}

.email-subject {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.email-from {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.email-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.email-highlight {
  color: var(--orange);
  font-weight: 600;
}

.rachat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.rachat-row:last-child {
  border-bottom: none;
}

.rachat-label {
  font-size: 13px;
  color: var(--text-muted);
}

.rachat-val {
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}

.rachat-val.price {
  color: var(--orange);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.big-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.big-stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
}

.big-stat:first-child {
  grid-column: span 2;
  border-color: var(--border-orange);
  background: var(--orange-dim);
}

.big-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.big-stat:first-child .big-stat-num {
  color: var(--orange);
  font-size: 64px;
}

.big-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media only screen and (max-width:1300px) {
  .section-inner {
    max-width: 1000px;
  }
}

@media (max-width: 900px) {

  .hero-grid,
  .dashboard-grid,
  .contact-grid,
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .blog-featured {
    grid-template-columns: 1fr;
  }

  .testi-grid {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 0 4%;
  }

  .nav-links {
    gap: 16px;
  }

  .big-stats {
    grid-template-columns: 1fr 1fr;
  }

  .big-stat:first-child {
    grid-column: span 2;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .service-detail-grid.reverse {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .nav-burger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .nav-links a:not(.nav-cta):not([data-nav]) {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  section {
    padding: 70px 5%;
  }

  .call-box {
    flex-direction: column;
  }
}