/* Pas Urbain - Styles */
:root {
  --ink: #1c1a17;
  --ink-soft: #3a342e;
  --paper: #f7f3ee;
  --paper-strong: #efe7dd;
  --accent: #e24a3b;
  --accent-dark: #b63a2f;
  --olive: #2f4b3c;
  --sand: #d8c9ba;
  --white: #ffffff;
  --shadow: 0 16px 30px rgba(28, 26, 23, 0.12);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--paper-strong);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: var(--accent);
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 1.6rem;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: var(--white);
}

.btn.primary:hover,
.btn.primary:focus {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn.outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn.outline:hover,
.btn.outline:focus {
  background: var(--ink);
  color: var(--white);
}

.btn.ghost {
  border-color: var(--sand);
  background: transparent;
  color: var(--ink-soft);
}

header.site-header {
  position: sticky;
  top: 0;
  background: rgba(247, 243, 238, 0.98);
  backdrop-filter: blur(6px);
  z-index: 20;
  border-bottom: 1px solid var(--sand);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-toggle {
  background: transparent;
  border: 1px solid var(--sand);
  border-radius: 10px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid var(--sand);
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 64px 0 32px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.icon-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  flex: 1 1 200px;
  box-shadow: 0 10px 18px rgba(28, 26, 23, 0.08);
}

.icon-card img {
  width: 36px;
  height: 36px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.stat strong {
  font-size: 1.4rem;
  color: var(--accent);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card.service {
  border-left: 4px solid var(--accent);
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--paper-strong);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature img {
  width: 32px;
  height: 32px;
}

.quote {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  box-shadow: var(--shadow);
}

.testimonial span {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--olive);
}

.comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
}

.comparison-row strong {
  color: var(--accent);
}

.process {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.faq-button {
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-panel {
  margin-top: 12px;
  display: none;
}

.faq-item.open .faq-panel {
  display: block;
}

.cta {
  background: var(--olive);
  color: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--sand);
  background: var(--paper-strong);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: var(--ink-soft);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 26, 23, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-panel {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.cookie-option input {
  width: 18px;
  height: 18px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1 1 50%;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split > div {
    flex: 1 1 50%;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 16px);
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1 1 0;
  }

  .testimonials {
    flex-direction: row;
  }

  .testimonial {
    flex: 1 1 0;
  }

  .comparison-row {
    align-items: center;
  }

  .process {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(50% - 14px);
  }

  .two-col {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
