/* =========================================================
   LAURE – Maintenance WordPress
   style.css — Design system & components
   ========================================================= */

/* ── CSS Variables ── */
:root {
  --navy:    #0F1F3D;
  --navy-mid:#1A2F55;
  --orange:  #FF6B35;
  --orange-h:#E55A26;
  --white:   #FFFFFF;
  --gray-50: #F8F9FC;
  --gray-100:#F1F3F8;
  --gray-200:#E2E7F0;
  --gray-400:#9AA5BC;
  --gray-600:#5C6883;
  --gray-800:#2D3856;
  --green:   #22C55E;
  --blue-acc:#3B82F6;

  --font-head: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(15,31,61,.07);
  --shadow-md: 0 6px 24px rgba(15,31,61,.10);
  --shadow-lg: 0 12px 48px rgba(15,31,61,.14);

  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.highlight { color: var(--orange); }
.section-label {
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,53,.35);
}
.btn-primary:hover {
  background: var(--orange-h);
  box-shadow: 0 6px 28px rgba(255,107,53,.45);
}

.btn-whatsapp {
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-whatsapp:hover {
  background: var(--navy-mid);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.35);
}
.btn-whatsapp-outline:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.6);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--gray-200);
  font-size: .85rem;
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--gray-50);
}

.btn-sm { padding: 9px 16px; font-size: .82rem; }

/* ── Reveal animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp .7s ease forwards;
}
.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  animation: fadeRight .8s .15s ease forwards;
}
@keyframes fadeUp   { to { opacity:1; transform:translateY(0); } }
@keyframes fadeRight{ to { opacity:1; transform:translateX(0); } }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img{
  height: 40px;
  width: auto;
  object-fit: contain;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--navy); letter-spacing: .05em; }
.logo-sub  { font-size: .65rem; color: var(--orange); font-weight: 600; letter-spacing: .04em; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 500;
  color: var(--gray-800);
  padding: 6px 14px;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--gray-100);
}
.nav-link.active {
  font-weight: 700;
  color: var(--orange);
  background: rgba(255,107,53,.08);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 130px 0 90px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff 55%, var(--gray-50) 100%);
}
.hero-bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  transform: scale(1.05);
  filter: saturate(.95) contrast(.95);
}
.hero-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 45%, rgba(255,255,255,.30) 100%),
    radial-gradient(circle at 70% 40%, rgba(15,31,61,.20), transparent 55%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.25);
  color: #15803d;
  font-size: .78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

/* Hero title */
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -.02em;
}

.hero-desc {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: 1.02rem;
  max-width: 480px;
  margin-bottom: 28px;
}

/* Pills */
.hero-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: .8rem;
  font-weight: 500;
  color: var(--gray-800);
  box-shadow: var(--shadow-sm);
}

/* CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.mockup-browser {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot.red    { background: #FF5F56; }
.dot.yellow { background: #FFBD2E; }
.dot.green  { background: #27C93F; }
.browser-url {
  flex: 1;
  background: var(--gray-200);
  border-radius: 6px;
  height: 22px;
  padding: 0 10px;
  font-size: .7rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  margin-left: 8px;
  font-family: monospace;
}
.mockup-content {
  display: flex;
  height: 280px;
}
.mockup-sidebar {
  width: 52px;
  background: var(--navy);
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-item {
  height: 6px;
  background: rgba(255,255,255,.18);
  border-radius: 3px;
}
.sidebar-item.active { background: var(--orange); height: 6px; }

.mockup-main {
  flex: 1;
  padding: 14px;
  overflow: hidden;
}
.mockup-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.mh-title { height: 10px; width: 120px; background: var(--gray-200); border-radius: 5px; }
.mh-btn   { height: 22px; width: 70px; background: var(--orange); border-radius: 6px; opacity: .8; }

/* Stat cards */
.mockup-stats {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.stat-card {
  flex: 1;
  border-radius: var(--radius-sm);
  padding: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.green-card  { background: rgba(34,197,94,.1);  }
.blue-card   { background: rgba(59,130,246,.1); }
.orange-card { background: rgba(255,107,53,.1); }
.sc-icon { font-size: .9rem; }
.sc-val  { height: 8px; width: 30px; background: rgba(0,0,0,.12); border-radius: 4px; margin-bottom: 4px; }
.sc-label{ height: 6px; width: 40px; background: rgba(0,0,0,.08); border-radius: 3px; }

/* Chart */
.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 70px;
  margin-bottom: 12px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 8px;
}
.chart-bar {
  flex: 1;
  background: var(--gray-200);
  border-radius: 4px 4px 0 0;
  transition: height .3s ease;
}
.chart-bar.active { background: var(--orange); }

/* Rows */
.mockup-rows { display: flex; flex-direction: column; gap: 6px; }
.mock-row { display: flex; align-items: center; gap: 8px; }
.mr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.green-dot  { background: var(--green); }
.orange-dot { background: var(--orange); }
.mr-line { height: 6px; background: var(--gray-200); border-radius: 3px; flex: 1; }
.l80 { width: 80%; }
.l60 { width: 60%; }
.l70 { width: 70%; }
.mr-badge { font-size: .6rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.mr-badge.ok   { background: rgba(34,197,94,.15);  color: #15803d; }
.mr-badge.warn { background: rgba(255,107,53,.15); color: var(--orange); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  border: 1px solid var(--gray-200);
  animation: floatY 3s ease-in-out infinite;
}
.float-badge-1 { bottom: -18px; left: -20px; animation-delay: 0s; }
.float-badge-2 { top: -16px; right: -10px; animation-delay: 1.5s; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.fb-icon { font-size: 1.2rem; }
.fb-title { font-weight: 700; color: var(--navy); font-family: var(--font-head); line-height:1.1; }
.fb-sub   { color: var(--gray-600); font-size: .7rem; }

/* Hero blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}
.blob-1 {
  width: 500px; height: 500px;
  background: rgba(255,107,53,.07);
  top: -100px; right: -100px;
}
.blob-2 {
  width: 350px; height: 350px;
  background: rgba(59,130,246,.06);
  bottom: -80px; left: -60px;
}
.hero-inner { position: relative; z-index: 1; }

/* =========================================================
   PROBLEMS
   ========================================================= */
.problems {
  padding: 100px 0;
  background: var(--white);
}
.problems-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.problems-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.problems-left p { color: var(--gray-600); line-height: 1.7; }

.problems-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.prob-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
}
.prob-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,.25);
}
.prob-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.orange-icon { background: rgba(255,107,53,.1); color: var(--orange); }
.prob-card h3 {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.prob-card p { font-size: .85rem; color: var(--gray-600); line-height: 1.65; }

/* =========================================================
   INTERVENTIONS TECHNIQUES
   ========================================================= */
.interv {
  padding: 100px 0;
  background: var(--gray-50);
}

/* Header */
.interv-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.interv-header-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-top: 12px;
  color: var(--navy);
}
.interv-header-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.interv-header-right p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: .95rem;
}
.interv-header-visual {
  display: flex;
  justify-content: flex-end;
  opacity: .7;
}

/* Grid */
.interv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

/* Card */
.interv-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.interv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255,107,53,.25);
}
.interv-icon {
  width: 52px; height: 52px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.interv-icon-pill {
  background: var(--gray-100);
  border-radius: 50px;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .04em;
  width: auto;
  padding: 8px 16px;
  height: auto;
}
.interv-sub-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  color: var(--orange);
  margin-top: -6px;
  margin-bottom: -4px;
}
.interv-card h3 {
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
}
.interv-card p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
}
.interv-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 50px;
  padding: 6px 10px;
  margin-top: 4px;
}
.interv-badge svg { color: var(--green); flex-shrink: 0; }

/* Footer banner */
.interv-footer {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.interv-footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}
.interv-footer-bulb {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.interv-footer-left strong {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.interv-footer-left p {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}
.interv-footer-right {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.interv-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.interv-stat svg { flex-shrink: 0; }
.interv-stat strong {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1.2;
}
.interv-stat span {
  font-size: .75rem;
  color: rgba(255,255,255,.55);
}

/* Responsive */
@media (max-width: 1100px) {
  .interv-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .interv-header { grid-template-columns: 1fr; gap: 24px; }
  .interv-header-visual { display: none; }
  .interv-grid { grid-template-columns: repeat(2, 1fr); }
  .interv-footer { flex-direction: column; gap: 24px; }
  .interv-footer-right { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .interv-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   A PROPOS
   ========================================================= */
.apropos {
  position: relative;
  padding: 120px 0 140px;
  background: #FDF8F5;
  overflow: hidden;
}
.apropos-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.apropos-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}
.apropos-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(253,248,245,0.8) 60%, #FDF8F5 80%);
}

.apropos-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}
.apropos-content-wrap {
  width: 55%;
  max-width: 600px;
}

.apropos-content-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--navy);
  letter-spacing: -.02em;
}

.apropos-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 16px;
  line-height: 1.6;
}

.apropos-text {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 32px;
}

.apropos-features {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: 0 10px 40px rgba(15,31,61,.04);
}

.apropos-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.af-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-text strong {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.af-text span {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.af-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 20px 0;
  width: 100%;
}

/* Thomas Card */
.apropos-thomas-wrap {
  position: relative;
  z-index: 2;
  margin-top: -60px;
  padding: 0 24px;
}

.apropos-thomas {
  background: linear-gradient(to right, #F4EAE3, #F2E4DA);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 10px 40px rgba(15,31,61,.05);
  max-width: 850px;
  margin: 0 auto;
}

.at-left {
  flex: 1;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.at-icon {
  color: var(--navy);
  flex-shrink: 0;
  margin-top: 4px;
}

.at-left p {
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.6;
}

.at-divider {
  width: 1px;
  height: 60px;
  background: rgba(15,31,61,.1);
}

.at-right {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 280px;
  flex-shrink: 0;
}

.at-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.at-info {
  display: flex;
  flex-direction: column;
}

.at-name {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--orange);
  margin-bottom: 2px;
}

.at-role {
  font-weight: 700;
  font-size: .85rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.at-desc {
  font-size: .7rem;
  color: var(--gray-600);
  line-height: 1.4;
}

@media (max-width: 992px) {
  .apropos {
    padding: 0 0 100px 0;
    display: flex;
    flex-direction: column;
  }
  .apropos-bg {
    position: relative;
    width: 100%;
    height: 450px;
  }
  .apropos-bg img {
    object-position: 20% center;
  }
  .apropos-bg::after {
    background: linear-gradient(to bottom, transparent 40%, rgba(253,248,245,0.9) 75%, #FDF8F5 100%);
  }
  .apropos-inner {
    justify-content: center;
    margin-top: -120px;
  }
  .apropos-content-wrap {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(15,31,61,.08);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
  }
  .apropos-thomas-wrap {
    margin-top: 30px;
  }
  .apropos-thomas {
    flex-direction: column;
    gap: 20px;
  }
  .at-divider {
    width: 100%;
    height: 1px;
  }
  .at-right {
    width: 100%;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}
.testi-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 60px;
}
.testi-left h2 {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 2.2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.02em;
}
.testi-left p { color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; }

/* Rating */
.rating-row { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.stars { font-size: 1.3rem; color: #F59E0B; letter-spacing: 2px; }
.half-star { opacity: .5; }
.rating-info { display: flex; flex-direction: column; gap: 2px; }
.rating-info strong { font-family: var(--font-head); font-size: 1.1rem; color: var(--navy); }
.rating-info span   { font-size: .78rem; color: var(--gray-600); }
.powered-google { font-size: .75rem; color: var(--gray-600); }
.powered-google strong { color: #4285F4; }

/* Testi cards */
.testi-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testi-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.quote-icon {
  font-family: Georgia, serif;
  font-size: 3rem;
  color: var(--orange);
  line-height: .6;
  margin-bottom: 12px;
  opacity: .4;
}
.testi-card p {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}
.testi-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar-circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.blue-av { background: var(--blue-acc); }
.testi-meta > div { display: flex; flex-direction: column; gap: 1px; }
.testi-meta strong { font-size: .88rem; color: var(--navy); font-family: var(--font-head); }
.testi-meta span   { font-size: .75rem; color: var(--gray-600); }
.testi-tag {
  font-size: .7rem;
  color: var(--orange);
  background: rgba(255,107,53,.08);
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-block;
  font-weight: 600;
}

/* Brands */
.brands { border-top: 1px solid var(--gray-200); padding-top: 40px; }
.brand-label { font-size: .75rem; font-weight: 700; color: var(--gray-400); letter-spacing: .08em; text-transform: uppercase; display: block; margin-bottom: 20px; }
.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 8px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .75rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: border-color var(--transition), box-shadow var(--transition);
  text-align: center;
}
.brand-item:hover { border-color: var(--orange); box-shadow: 0 2px 12px rgba(255,107,53,.1); }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  padding: 100px 0;
  background: var(--gray-50);
}
.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-inner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 40px;
  letter-spacing: -.02em;
}
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(255,107,53,.3); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  gap: 16px;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--orange); }
.faq-arrow {
  font-size: 1.4rem;
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
  flex-shrink: 0;
}
.faq-item.open .faq-arrow {
  transform: rotate(90deg);
  color: var(--orange);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a p {
  padding: 0 22px 20px;
  color: var(--gray-600);
  line-height: 1.7;
  font-size: .9rem;
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a .faq-result {
  padding-top: 0;
  padding-bottom: 20px;
  font-weight: 600;
  color: var(--orange);
}

/* =========================================================
   CONTACT
   ========================================================= */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 54px;
  align-items: start;
}
.contact-copy h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 2.6vw, 2.45rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
}
.contact-copy p {
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 430px;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
  word-break: break-word;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-row-full {
  grid-column: 1 / -1;
}
.form-row label {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  color: var(--navy);
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: .95rem;
  padding: 13px 14px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-row textarea {
  resize: vertical;
  min-height: 150px;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,107,53,.12);
}
.contact-submit {
  grid-column: 1 / -1;
  justify-content: center;
  width: fit-content;
}
.contact-helper {
  grid-column: 1 / -1;
  color: var(--gray-600);
  font-size: .82rem;
  line-height: 1.5;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--navy) 0%, #142444 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.cta-icon-wrap {
  width: 64px; height: 64px;
  background: rgba(255,107,53,.15);
  border: 2px solid rgba(255,107,53,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cta-text { flex: 1; }
.cta-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
  letter-spacing: -.01em;
}
.cta-text p { color: rgba(255,255,255,.65); font-size: .95rem; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.8);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo .logo-name { color: #fff; }
.footer-avatar { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ff9a6c);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.footer-avatar p { font-size: .82rem; line-height: 1.65; color: rgba(255,255,255,.55); }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}
.footer-col li a:hover { color: var(--orange); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet ≤ 900px */
@media (max-width: 900px) {
  .hero-inner,
  .solution-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { padding: 110px 0 70px; }
  .hero-title { font-size: clamp(2rem, 5vw, 3rem); }

  .problems-grid { grid-template-columns: 1fr; gap: 32px; }

  .testi-header { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile ≤ 640px */
@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 24px 20px;
    box-shadow: var(--shadow-md);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; padding: 10px 14px; }
  .burger { display: flex; }
  .btn-whatsapp.btn-sm { display: none; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { justify-content: center; }
  .hero-badges-row { gap: 8px; }

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

  .contact {
    padding: 80px 0;
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .contact-submit {
    width: 100%;
  }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { justify-content: center; }
  .cta-icon-wrap { margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }

  .solution-inner { gap: 40px; }
  .sol-float { position: relative; bottom: auto; right: auto; margin-top: 16px; }
}

/* ── Google Review Widget Cards ── */
.testi-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-md);
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(15,31,61,.13);
}

.rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.rc-quote {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--navy);
  font-weight: 800;
  font-family: Georgia, serif;
}

.rc-text {
  font-size: .88rem;
  color: var(--gray-800);
  line-height: 1.6;
  flex: 1;
}

.rc-stars {
  color: #FABC2A;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.rc-divider {
  height: 1px;
  background: var(--gray-200);
}

.rc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem;
  color: #fff;
  flex-shrink: 0;
}
.rc-avatar-dark  { background: #1a1a1a; }
.rc-avatar-rose  { background: #c47a6b; }
.rc-avatar-green { background: #3d8a5c; }
.rc-avatar-hayin { background: #6b5c3a; }

.rc-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rc-author-info strong {
  font-size: .85rem;
  color: var(--navy);
  font-family: var(--font-head);
}
.rc-author-info span {
  font-size: .75rem;
  color: var(--gray-600);
}

.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gray-800);
  align-self: flex-start;
  margin-top: 2px;
}
.rc-badge svg { opacity: .7; }

@media (max-width: 1100px) {
  .testi-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .testi-cards-grid { grid-template-columns: 1fr; }
}

/* ── Google Business Card (1ère card témoignages) ── */
.gw-business-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 22px 20px;
}

.gw-business-card .gw-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gw-business-card .gw-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gray-200);
  flex-shrink: 0;
}

.gw-business-card .gw-title strong {
  font-family: var(--font-head);
  font-size: .85rem;
  color: var(--navy);
  line-height: 1.4;
}

.gw-business-card .gw-tagline {
  font-size: .88rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin: 0;
}

.gw-business-card .gw-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gw-business-card .gw-num {
  font-size: 1.35rem;
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--navy);
}

.gw-stars-row {
  display: flex;
  gap: 1px;
}

.gw-star {
  font-size: 1.2rem;
  color: #FABC2A;
}

.gw-star.half-star {
  position: relative;
  display: inline-block;
  color: var(--gray-200);
}

.gw-star.half-star::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  overflow: hidden;
  color: #FABC2A;
  display: inline-block;
}

.gw-business-card .gw-sub {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.google-wordmark {
  font-weight: 700;
  font-size: .85rem;
}

.gw-business-card .btn-google-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  border-radius: 99px;
  padding: 10px 18px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  width: fit-content;
  transition: background .2s;
}
.gw-business-card .btn-google-cta:hover {
  background: var(--orange-h);
}

.gw-business-card .gw-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.gw-business-card .gw-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 99px;
  padding: 5px 11px;
  font-size: .75rem;
  color: var(--gray-800);
}
