:root {
  font-size: 16px;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #f5f2eb;
  background-color: #05060a;
  --primary: #c8a96b;
  --primary-dark: #a78238;
  --dark: #05060a;
  --muted: rgba(245, 242, 235, 0.72);
  --border: rgba(255, 255, 255, 0.08);
  --glow: rgba(200, 169, 107, 0.24);
}

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

html {
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-text-size-adjust: 100%;
}

#three-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 10;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  opacity: 1;
  transition: transform 0.4s ease;
  overflow-x: hidden;
}


.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 1.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-left: 0;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.logo.hidden {
  opacity: 0;
  pointer-events: none;
}

.logo-text {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #f5f2eb;
  transition: color 0.3s ease;
}

.page-light .logo-text,
.header-on-light .logo-text {
  color: #1a1a1a;
  transition: color 0.3s ease;
}

.header-on-light .nav-toggle span {
  background-color: #1a1a1a;
}

.header-on-light .nav a {
  color: #1a1a1a;
}

.header-on-light .nav a:hover {
  color: #1a1a1a;
  background: rgba(0, 0, 0, 0.05);
}

.header-on-light .nav-active {
  color: var(--primary-dark) !important;
}

.header-on-light .nav-cta {
  color: rgba(0, 0, 0, 0.8);
}

.header-on-light .nav-cta:hover {
  color: #1a1a1a;
}

.header-on-light .nav {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  gap: 0;
  align-items: center;
  background: rgba(13, 16, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0.4rem 0.6rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100vw - 3rem);
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(245, 242, 235, 0.85);
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}

.nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.nav-cta {
  color: rgba(245, 242, 235, 0.85);
  font-weight: 600;
  padding-right: 0.75rem;
}

.nav-cta:hover {
  color: #fff;
}

.nav-arrow {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.nav-cta:hover .nav-arrow {
  transform: translateX(2px);
}

.demo-btn {
  background: linear-gradient(120deg, #c8a96b, #8a5e2e);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.demo-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 169, 107, 0.3);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3rem;
  background: none;
  border: none;
  padding: 0.4rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #f5f2eb;
  display: block;
}

.btn {
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(120deg, #c8a96b, #8a5e2e);
  color: #fff;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #f5f2eb;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease, border-color 0.2s ease;
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(200, 169, 107, 0.4);
  transform: translateY(-1px);
  box-shadow: none;
}

.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;

}

.hero::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.08), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 15% 20%, rgba(200, 169, 107, 0.03), transparent 25%),
    radial-gradient(circle at 85% 80%, rgba(200, 169, 107, 0.04), transparent 30%);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-label {
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(200, 169, 107, 0.9);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin: 0 0 1.5rem;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-family: var(--font-main);
}

.hero-title span {
  color: var(--primary);
  font-weight: 600;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: var(--font-main);
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(245, 242, 235, 0.7);
  margin-bottom: 2.5rem;
  line-height: 1.65;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Bannière Intégrations */
.integrations-banner {
  padding: 4rem 0 2rem;
  background: transparent;
  overflow: hidden;
}

.integrations-title {
  text-align: center;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 242, 235, 0.4);
  margin: 0 0 2.5rem;
  font-weight: 500;
}

.logos-track {
  display: flex;
  justify-content: center;
  gap: 4rem;
  width: 100%;
}

.logos-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

.logos-slide img {
  height: 36px;
  width: auto;
  opacity: 0.7;
}

.logos-slide img:hover {
  opacity: 1;
}


.section {
  padding: 10rem 0;
  color: #e8e2d3;
  background: black;
  position: relative;

}

/* Sections opaques avec fond doré clair (pas de Three.js) */
.section-gold {
  background: #f5efe4;
  color: #1a1a1a;
}

.section-gold .eyebrow {
  color: #a0824a;
}

.section-gold h2 {
  color: #1a1a1a;
}

.section-gold p,
.section-gold li,
.section-gold span {
  color: #3a3a3a;
}

.section-gold strong {
  color: #1a1a1a;
}

.section-gold .btn-secondary {
  color: #3a3a3a;
  border-color: rgba(200, 169, 107, 0.4);
}

.section-gold .btn-secondary:hover {
  background: rgba(200, 169, 107, 0.08);
  border-color: rgba(200, 169, 107, 0.6);
  color: #1a1a1a;
}

.section-dark {
  background: #f5efe4;
  color: #1a1a1a;
  position: relative;
}

.section-transparent {
  background: transparent;
  color: #f8fafc;
  position: relative;
}

#process {
  padding: 11rem 0;
}

/* Separateurs dores entre sections */
.impact-section,
.mobile-section,
.features-section,
.use-cases-section,
.pricing-preview-section {
  border-top: 1px solid rgba(200, 169, 107, 0.2);
}

.section-dark .eyebrow {
  color: #a0824a;
}

.section-transparent .eyebrow {
  color: var(--primary);
}

.section-dark p {
  color: #5a5048;
}

.services-intro {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: rgba(245, 242, 235, 1);
  margin: 0 0 3rem 0;
  letter-spacing: -0.01em;
}

.services-grid,
.cases-grid,
.split-grid,
.process-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 4.5rem;
  margin-top: 2.5rem;
}

.service-card-link {
  text-decoration: none;
  color: inherit;
  display: contents;
}

.service-card {
  background: transparent;
  border: 1.5px solid rgba(200, 169, 107, 0.15);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.service-card-bg {
  display: none;
}

.service-card-inner {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-card:hover .service-card-inner {
  transform: translateY(-8px);
}

.service-visual {
  margin-bottom: 1.5rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 169, 107, 0.08) 0%, rgba(8, 10, 15, 0.6) 100%);
  border-radius: 16px;
  border: none;
  position: relative;
  overflow: hidden;
}

.service-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 107, 0.15);
  border-radius: 12px;
  color: var(--primary);
}

.service-visual svg {
  width: 100%;
  height: 100%;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-visual canvas {
  width: 100%;
  height: 100%;
}

.service-card:hover .service-visual svg {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: white;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  position: relative;
}

.service-card h3::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover h3 {
  color: var(--primary);
}

.service-card:hover h3::after {
  width: 60px;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 242, 235, 0.75);
  margin: 0;
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: rgba(245, 242, 235, 0.9);
}

/* Service Card Highlights (Centralisation contacts) */
.service-highlights {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(200, 169, 107, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(245, 242, 235, 0.75);
}

.highlight-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-card:hover .highlight-item svg {
  animation: checkBounce 0.4s ease;
}

@keyframes checkBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

/* Animations SVG Immo Copilot au survol */
/* Animation des lignes de texte - échange client/IA */
.service-card:hover .text-line-1-1 {
  animation: textAppear 6s infinite;
}

.service-card:hover .text-line-1-2 {
  animation: textAppear 6s 0.2s infinite;
}

.service-card:hover .text-line-1-3 {
  animation: textAppear 6s 0.4s infinite;
}

.service-card:hover .text-line-2-1 {
  animation: textAppear 6s 3s infinite;
}

.service-card:hover .text-line-2-2 {
  animation: textAppear 6s 3.2s infinite;
}

.service-card:hover .text-line-2-3 {
  animation: textAppear 6s 3.4s infinite;
}

@keyframes textAppear {
  0%, 16.66% { opacity: 0; }
  20%, 46.66% { opacity: 0.5; }
  50%, 100% { opacity: 0; }
}

/* Animation des ondes de communication */
.service-card:hover .wave-1 {
  animation: wavePulse 2s infinite;
}

.service-card:hover .wave-2 {
  animation: wavePulse 2s 0.3s infinite;
}

.service-card:hover .wave-3 {
  animation: wavePulse 2s 0.6s infinite;
}

@keyframes wavePulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

/* Animations SVG Audit au survol - Minimaliste et subtile */
/* États par défaut - courbe invisible */
.audit-curve {
  opacity: 0;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: opacity 1s ease-out, stroke-dashoffset 1.8s ease-out;
}

.audit-points circle {
  opacity: 0;
  transition: opacity 1s ease-out;
}

/* Animations au survol */
.service-card:hover .audit-bar {
  animation: barGrow 0.8s ease-out forwards;
}

.service-card:hover .audit-curve {
  opacity: 0.8;
  stroke-dashoffset: 0;
}

.service-card:hover .audit-points circle {
  opacity: 1;
}

@keyframes barGrow {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.7;
  }
}

/* Animations SVG Solutions IA au survol */
/* Animation des flux de données */
@keyframes dataFlow {
  0% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -20;
  }
}

@keyframes pulseNode {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

/* Au survol - activer les animations */
.service-card:hover line[stroke-dasharray] {
  animation: dataFlow 1.5s linear infinite;
}

.service-card:hover circle[cx="110"],
.service-card:hover circle[cx="170"],
.service-card:hover circle[cx="140"][cy="62"],
.service-card:hover circle[cx="140"][cy="114"] {
  animation: pulseNode 1.5s ease-in-out infinite;
}

.section-dark .service-card {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(200, 169, 107, 0.2);
}

.service-card ul {
  padding-left: 1.2rem;
  color: var(--muted);
}

.section-dark .service-card ul {
  color: #5a5048;
}

/* ================================================
   Product Showcase (Immo Copilot split layout)
   ================================================ */

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-visual {
  background: rgba(200, 169, 107, 0.08);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.product-visual:hover {
  border-color: rgba(200, 169, 107, 0.5);
  box-shadow: 0 8px 40px rgba(200, 169, 107, 0.12);
}

.product-visual svg {
  width: 100%;
  height: 100%;
  color: #a0824a;
}

.product-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-content .eyebrow {
  margin-bottom: 0.75rem;
}

.product-content h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.product-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #5a5048;
  margin: 0 0 1.5rem;
}

.product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-highlights li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #3a3a3a;
}

.product-highlights li svg {
  color: #a0824a;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-visual {
    min-height: 220px;
    padding: 2rem;
  }
}

/* ================================================
   Custom Section (Besoin sur mesure)
   ================================================ */

#sur-mesure {
  padding: 13rem 0;
}

.custom-header {
  text-align: center;
  margin-bottom: 3rem;
}

.custom-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 1rem;
}

.custom-subtitle {
  color: #6b6058;
  max-width: 550px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.custom-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.custom-card:hover {
  border-color: rgba(200, 169, 107, 0.5);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
}

.custom-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 107, 0.15);
  border-radius: 12px;
  color: #a0824a;
}

.custom-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}

.custom-card:hover h3 {
  color: #a0824a;
}

.custom-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #5a5048;
  margin: 0;
}

.custom-card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-top: auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.custom-card:hover .custom-card-link {
  opacity: 1;
}

@media (max-width: 600px) {
  .custom-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================ */

.process-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
}

.process-header h2 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.02em;
  position: relative;
  display: inline-block;
}

.process-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.process-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.process-step {
  background: transparent;
  padding: 1.5rem 2rem 1.5rem 5rem;
  position: relative;
  transition: all 0.3s ease;
  margin-left: 1.5rem;
}

.process-step:nth-child(1) {
  animation: cascadeIn 0.6s ease backwards;
}

.process-step:nth-child(2) {
  animation: cascadeIn 0.6s 0.15s ease backwards;
}

.process-step:nth-child(3) {
  animation: cascadeIn 0.6s 0.3s ease backwards;
}

@keyframes cascadeIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.process-step::before {
  content: "";
  position: absolute;
  left: 3.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), rgba(200, 169, 107, 0.3));
  border-radius: 2px;
  transition: height 0.4s ease, box-shadow 0.4s ease;
}

.process-step.bar-visible::before {
  height: 80px;
  box-shadow: 0 0 15px rgba(200, 169, 107, 0.4);
}

.process-step:hover::before {
  height: 80px;
  box-shadow: 0 0 15px rgba(200, 169, 107, 0.4);
}

.process-step:hover {
  transform: translateX(5px);
}

.step-number {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
  display: block;
  font-family: 'Inter', sans-serif;
  color: var(--primary);
  transition: color 0.3s ease;
  position: absolute;
  left: -0.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.75rem 0;
  color: #f8fafc;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.process-step:hover h3 {
  color: var(--primary);
}

.process-step p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(248, 250, 252, 0.65);
  margin: 0;
  font-weight: 400;
  transition: color 0.3s ease;
}

.process-step:hover p {
  color: rgba(248, 250, 252, 0.85);
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-steps li {
  display: flex;
  gap: 1rem;
  align-items: center;
  border-left: 2px solid rgba(248, 250, 252, 0.3);
  padding-left: 1.5rem;
}

.process-steps span {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(248, 250, 252, 0.6);
}

/* Contact Section */
.contact-grid {
  align-items: center;
}

#contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  max-width: 600px;
  margin: 0 auto;
}

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

.contact-form label {
  font-size: 0.95rem;
  color: #3a3a3a;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form .required {
  color: #c0392b;
  font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 14px;
  border: 1px solid rgba(200, 169, 107, 0.2);
  background: #fff;
  padding: 0.95rem;
  color: #1a1a1a;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(200, 169, 107, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #a09888;
}

.form-note {
  font-size: 0.8rem;
  color: #7a7068;
  margin-bottom: 1.7rem;
}

.form-message {
  position: absolute;
  bottom: 0.4rem;
  left: 0;
  right: 0;
  padding: 4px;
  font-size: 0.95rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
  text-align: center;
}

.form-message.success,
.form-message.error {
  color: #f5f2eb;
  opacity: 1;
  transform: translateY(0);
}

.form-message .success-icon,
.form-message .error-icon {
  display: none;
}

/* FAQ Section - Bento Style */
#faq {
  padding: 8rem 0;
}

#faq .container {
  max-width: 1100px;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
}

.faq-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.faq-header p {
  color: rgba(245, 242, 235, 0.6);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto;
}

.faq-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.faq-card {
  background: rgba(200, 169, 107, 0.04);
  border: 1px solid rgba(200, 169, 107, 0.20);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.faq-card:hover {
  border-color: rgba(200, 169, 107, 0.35);
  background: rgba(200, 169, 107, 0.04);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 60px rgba(200, 169, 107, 0.08);
}

.faq-card.active {
  border-color: var(--primary);
  background: rgba(200, 169, 107, 0.06);
}

.faq-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 2rem;
  gap: 1.5rem;
}

.faq-card-question {
  font-size: 1.05rem;
  font-weight: 500;
  color: #f5f2eb;
  line-height: 1.4;
  margin: 0;
  flex: 1;
}

.faq-card.active .faq-card-question {
  color: var(--primary);
}

.faq-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(200, 169, 107, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-card:hover .faq-card-icon {
  background: rgba(200, 169, 107, 0.2);
}

.faq-card.active .faq-card-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-card-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--primary);
  stroke-width: 2.5;
  transition: stroke 0.3s ease;
}

.faq-card.active .faq-card-icon svg {
  stroke: #05060a;
}

.faq-card-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card.active .faq-card-answer {
  max-height: 250px;
}

.faq-card-answer p {
  padding: 0 2rem 1.75rem;
  margin: 0;
  color: rgba(245, 242, 235, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  border-top: 1px solid rgba(200, 169, 107, 0.1);
  padding-top: 1.25rem;
  margin-top: -0.5rem;
}

.site-footer {
  padding: 1.5rem 0 1rem;
  background: black;
  border-top: 1px solid rgba(200, 169, 107, 0.15);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.footer-content .logo {
  margin-left: 0;
  margin-right: 0;
}

.site-footer .logo-text {
  color: #f5f2eb;
}

.footer-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  margin: 0;
}

/* Tablette et mobile (< 900px) */
@media (max-width: 900px) {
  .site-header {
    position: relative;
  }

  .site-header.header-hidden {
    transform: none;
  }

  .container {
    padding: 0 1.5rem;
  }

  .header-wrapper {
    justify-content: space-between;
    padding: 1.5rem 0 0.75rem;
  }

  .logo {
    margin-left: 10px;
    margin-top: 25px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-content .logo {
    margin-right: 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  /* Contact form responsive */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 2rem;
  }

  /* Integrations banner responsive */
  .integrations-banner {
    padding: 2.5rem 0 1rem;
  }

  .integrations-title {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .logos-slide img {
    height: 28px;
  }

  .logos-slide {
    gap: 2rem;
  }

  /* FAQ responsive - Bento */
  .faq-bento {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-card-header {
    padding: 1.25rem 1.5rem;
  }

  .faq-card-question {
    font-size: 0.95rem;
  }

  .faq-card-answer p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .nav {
    position: fixed;
    top: 50px;
    left: 50%;
    transform: translate(-50%, calc(-100% - 80px));
    width: auto;
    min-width: 200px;
    max-width: 320px;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(13, 16, 26, 0.95);
    color: #f8fafc;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0.5rem;
    z-index: 9;
    border: 1px solid rgba(200, 169, 107, 0.2);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    padding: 0.75rem;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .nav a {
    color: rgba(245, 242, 235, 0.9);
    font-size: 1rem;
    text-transform: none;
    letter-spacing: 0;
    padding: 0.75rem 1rem;
    background: transparent;
    border-radius: 10px;
    transition: all 0.2s ease;
  }

  .nav a:hover {
    background: rgba(200, 169, 107, 0.15);
    color: #fff;
  }

  .nav-cta {
    background: linear-gradient(120deg, #c8a96b, #8a5e2e);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1rem;
    margin-top: 0.25rem;
  }

  .nav-cta:hover {
    background: linear-gradient(120deg, #d4b577, #9a6e3e);
    transform: translateY(-1px);
  }

  .nav.active {
    transform: translate(-50%, 0);
  }

  .demo-btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-top: 25px;
    margin-right: 5px;
  }

  .hero {
    padding: 7rem 0 4rem;
    min-height: 75vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  /* Services grid responsive */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .services-intro {
    font-size: 1.25rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .service-visual {
    height: 180px;
  }

  /* Process grid */
  .process-grid {
    padding: 0 1rem;
  }

  .process-step {
    margin-left: 0;
    padding: 1.5rem 1rem 1.5rem 3.5rem;
  }

  .process-step::before {
    left: 2.5rem;
  }

  .step-number {
    left: 0.5rem;
    font-size: 1.2rem;
  }

  .process-step p {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

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

  .contact-form {
    padding: 2rem;
  }

  .form-message {
    bottom: 1rem;
  }
}

/* Mobile (< 600px) */
@media (max-width: 600px) {
  :root {
    font-size: 15px;
  }

  .container {
    padding: 0 1rem;
  }

  /* Hero section */
  .hero {
    padding: 1rem 0 3rem;
    min-height: 100vh;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  /* Services */
  .services-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    gap: 2rem;
  }

  .service-card {
    padding: 1.25rem;
  }

  .service-visual {
    height: 160px;
    margin-bottom: 1rem;
  }

  .service-card h3 {
    font-size: 1.4rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  /* Process section */
  .process-header h2 {
    font-size: 1.8rem;
  }

  .process-step {
    padding: 1.25rem 1rem 1.25rem 3rem;
  }

  .process-step::before {
    left: 2rem;
    height: 60px !important;
  }

  .step-number {
    font-size: 1rem;
    left: 0.25rem;
  }

  .process-step h3 {
    font-size: 1.3rem;
  }

  /* Contact section */
  #contact h2 {
    font-size: 1.8rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-message {
    bottom: -0.2rem;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .site-footer {
    font-size: 0.85rem;
  }
}

/* Très petits mobiles (< 400px) */
@media (max-width: 400px) {
  :root {
    font-size: 14px;
  }


  .services-grid,
  .process-grid {
    gap: 1.5rem;
  }

  .service-card {
    padding: 1rem;
  }

  .service-visual {
    height: 140px;
  }

  .contact-form {
    padding: 1.25rem;
  }

  .form-note {
    font-size: 0.75rem;
  }
}

/* Desktop large (> 1400px) */
@media (min-width: 1400px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .process-grid {
    gap: 2rem;
  }
}

/* Tablette portrait (600px - 900px) */
@media (min-width: 600px) and (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

}

/* Protection navigation pour écrans moyens (900px - 1100px) */
@media (min-width: 900px) and (max-width: 1100px) {
  .nav {
    max-width: calc(100vw - 4rem);
  }

  .nav a {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .nav-cta {
    padding-right: 0.5rem;
  }
}

/* iPad Pro et tablettes (900px - 1800px) */
@media (min-width: 900px) and (max-width: 1800px) {
  .header-wrapper .logo {
    margin-left: 2rem;
  }

  .footer-content .logo {
    margin-right: 15px;
  }
}

/* Très grands écrans (> 1800px) - ajuster le logo pour un meilleur centrage */
@media (min-width: 1800px) {
  .header-wrapper .logo {
    margin-left: -75px;
  }
}

/* ===================================
   PRICING PAGE STYLES
   =================================== */

/* Hero Section Pricing */
.pricing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  text-align: center;
  position: relative;
  padding: 6rem 0 4rem;
}

.pricing-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  margin: 0 0 1.5rem;
  letter-spacing: -0.03em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.15;
}

.pricing-subtitle {
  font-size: 1.15rem;
  color: rgba(245, 242, 235, 0.7);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem 6rem;
  background: #f5efe4;
  position: relative;
  overflow: hidden;
}

.pricing-section > .container {
  width: 100%;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Pricing Card Base */
.pricing-card {
  background: #fff;
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 169, 107, 0.15), 0 0 60px rgba(200, 169, 107, 0.06);
}

/* Featured Card (Performance) */
.pricing-card-featured {
  background: #fff;
  border: 2px solid var(--primary);
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(200, 169, 107, 0.18);
}

.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 25px 50px rgba(200, 169, 107, 0.22), 0 0 80px rgba(200, 169, 107, 0.08);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(120deg, #c8a96b, #8a5e2e);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Card Header */
.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 169, 107, 0.15);
}

.pricing-card-header h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 1rem;
}

.pricing-card-featured .pricing-card-header h3 {
  color: var(--primary);
}

/* Price Display */
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
}

.price-period {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.45);
  margin-left: 0.25rem;
}

.price-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
}

/* Features List */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pricing-features li:last-child {
  border-bottom: none;
}

.check-icon {
  width: 18px;
  height: 18px;
  color: #a78238;
  flex-shrink: 0;
}

/* Custom Card Specific */
.pricing-card-custom .custom-description {
  color: rgba(245, 242, 235, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* CTA Button */
.pricing-cta {
  width: 100%;
  text-align: center;
  margin-top: auto;
}

/* Light bg card buttons */
.pricing-section .pricing-card .btn-secondary {
  color: var(--dark);
  border-color: rgba(200, 169, 107, 0.4);
}
.pricing-section .pricing-card .btn-secondary:hover {
  background: rgba(200, 169, 107, 0.08);
  border-color: var(--primary);
  color: var(--dark);
}

/* Note tarifs */
.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.45);
}

/* Value Anchor Block */
.pricing-value-anchor {
  text-align: center;
  margin-bottom: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-value-anchor p {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
}
.pricing-value-anchor strong {
  color: #8a5e2e;
}

/* Sur-mesure Card */
.surmesure-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 3.5rem 3rem;
  background: rgba(200, 169, 107, 0.04);
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 24px;
  overflow: hidden;
}

.surmesure-glow {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.surmesure-content {
  position: relative;
  text-align: center;
}

.surmesure-content .eyebrow {
  color: var(--primary);
}

.surmesure-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #f5f2eb;
  margin: 0 0 1rem;
  line-height: 1.3;
}

.surmesure-content > p {
  font-size: 1.05rem;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2rem;
}

.surmesure-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.surmesure-tag {
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--primary);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 100px;
  background: rgba(200, 169, 107, 0.06);
  letter-spacing: 0.01em;
}

.surmesure-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(200, 169, 107, 0.35);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-outline-gold:hover {
  border-color: var(--primary);
  background: rgba(200, 169, 107, 0.08);
}

.btn-ghost span {
  transition: transform 0.2s ease;
}

.btn-ghost:hover span {
  transform: translateX(3px);
}

/* Trial Badge */
.pricing-trial-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-top: 0.75rem;
}

/* Engagement Badge */
.pricing-engagement-badge {
  text-align: center;
  margin-top: 1.5rem;
  padding: 0.6rem 1.5rem;
  display: inline-block;
  width: 100%;
  font-size: 0.9rem;
  font-weight: 500;
  color: #8a5e2e;
  opacity: 0.8;
}

/* Comparison Section (Immo Copilot) */
.comparison-section {
  padding: 5rem 0;
  background: var(--dark);
}
.comparison-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.comparison-section .eyebrow {
  text-align: center;
}
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.comparison-column {
  padding: 2.5rem;
  border-radius: 16px;
}
.comparison-without {
  background: rgba(200, 50, 50, 0.04);
  border: 1px solid rgba(200, 50, 50, 0.15);
}
.comparison-with {
  background: rgba(200, 169, 107, 0.06);
  border: 1px solid rgba(200, 169, 107, 0.2);
}
.comparison-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f5f2eb;
}
.comparison-without h3 {
  color: rgba(245, 242, 235, 0.6);
}
.comparison-with h3 {
  color: var(--primary);
}
.comparison-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.comparison-column li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245, 242, 235, 0.8);
  line-height: 1.5;
}
.comparison-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.comparison-icon-bad {
  color: rgba(220, 80, 80, 0.7);
}
.comparison-icon-good {
  color: var(--primary);
}
.comparison-column li strong {
  color: #f5f2eb;
}
@media (max-width: 600px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
}

/* Footer Section */
.pricing-footer-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 4rem 2rem 6rem;
  background: var(--dark);
}

.pricing-footer-section > .container {
  width: 100%;
}


/* Navigation active state */
.nav-active {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Responsive - Tablette */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-card-featured {
    transform: none;
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px);
  }
}

/* Responsive - Mobile */
@media (max-width: 700px) {
  .pricing-hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding: 6rem 1rem 3rem;
  }

  .pricing-hero h1 {
    font-size: 1.8rem;
  }

  .pricing-subtitle {
    font-size: 1rem;
  }

  .pricing-section {
    padding: 3rem 1rem 4rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }

  .pricing-badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.8rem;
  }

  .pricing-footer-section {
    padding: 3rem 1rem 4rem;
  }

  .surmesure-card {
    padding: 2.5rem 1.5rem;
  }

  .surmesure-content h2 {
    font-size: 1.5rem;
  }

  .surmesure-content > p {
    font-size: 0.95rem;
  }

  .surmesure-actions {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ================================================
   LOGOS MARQUEE - Carrousel de partenaires
   ================================================ */

.logos-title-wrapper {
  background: #f5efe4;
  padding: 3rem 0 0;
  text-align: center;
}

.logos-marquee {
  padding: 2rem 0 3rem;
  background: transparent;
  overflow: hidden;
}

.logos-title {
  text-align: center;
  color: #8a7a65;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
  font-weight: 500;
}

.marquee-container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
}

.marquee-group {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-right: 4rem;
  flex-shrink: 0;
  animation: marquee 15s linear infinite;
}

.marquee-group img {
  height: 40px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.marquee-group img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Accessibilité - respect des préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .marquee-group {
    animation-play-state: paused;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logos-marquee {
    padding: 2rem 0;
  }

  .marquee-group {
    gap: 2.5rem;
    padding-right: 2.5rem;
  }

  .marquee-group img {
    height: 30px;
  }
}

/* ================================================
   IMPACT SECTION - Statistics & Lost Revenue
   ================================================ */

.impact-section {
  padding: 8rem 0;
  background: #f5efe4;
  position: relative;
  overflow: hidden;

}

.impact-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200, 169, 107, 0.12), transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.impact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.impact-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.impact-subtitle {
  font-size: 1.1rem;
  color: #6b6058;
  max-width: 550px;
  margin: 0 auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.impact-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.impact-card:hover {
  border-color: rgba(200, 169, 107, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 0 60px rgba(200, 169, 107, 0.08);
}

.impact-card-featured {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--primary);
}

.impact-card-featured .impact-number {
  font-size: 3.5rem;
}

.impact-visual {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.impact-icon {
  width: 70px;
  height: 70px;
  color: #a0824a;
}

.impact-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.impact-number .counter {
  display: inline-block;
}

.impact-label {
  font-size: 0.95rem;
  color: #3a3a3a;
  line-height: 1.5;
  margin: 0;
}

.impact-detail {
  font-size: 0.85rem;
  color: #7a7068;
  margin-top: 0.5rem;
}

.impact-cta {
  text-align: center;
  padding-top: 2rem;
}

.impact-conclusion {
  font-size: 1.2rem;
  color: #2a2a2a;
  margin-bottom: 1.5rem;
}

.impact-conclusion .highlight {
  color: #a0824a;
  font-weight: 600;
}

/* Counter Animation */
.counter.animated {
  animation: countPulse 0.3s ease;
}

@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* SVG Animations Impact */
.impact-card:hover .arrow-down {
  animation: arrowBounce 1s ease infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.impact-card:hover .clock-hand-minute {
  animation: clockTick 2s linear infinite;
  transform-origin: 40px 40px;
}

@keyframes clockTick {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.impact-card:hover .sand-top {
  animation: sandFall 2s ease-in-out infinite;
}

@keyframes sandFall {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.15; }
}

/* Impact Section Responsive */
@media (max-width: 1100px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .impact-section {
    padding: 5rem 0;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .impact-card-featured {
    grid-column: span 1;
  }

  .impact-number {
    font-size: 2.5rem;
  }

  .impact-card-featured .impact-number {
    font-size: 3rem;
  }

  .impact-header h2 {
    font-size: 1.8rem;
  }
}

/* ================================================
   MOBILE SECTION - 24/7 Accessibility
   ================================================ */

.mobile-section {
  padding: 11rem 0;
  background: transparent;
  position: relative;
  overflow: hidden;

}

.mobile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Phone Mockup */
.mobile-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  background: linear-gradient(145deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 20, 0.95));
  border-radius: 40px;
  border: 2px solid rgba(200, 169, 107, 0.2);
  box-shadow:
    0 50px 100px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(200, 169, 107, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  padding: 12px;
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #0a0b0f 0%, #12141a 100%);
  border-radius: 32px;
  padding: 50px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

/* Notifications */
.notification {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px;
  opacity: 0;
  transform: translateX(-20px);
  animation: notifSlideIn 0.5s ease forwards;
}

.notification-1 { animation-delay: 0.3s; }
.notification-2 { animation-delay: 0.8s; }
.notification-3 { animation-delay: 1.3s; }

@keyframes notifSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.notif-icon {
  width: 36px;
  height: 36px;
  background: rgba(200, 169, 107, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.notif-icon-sarah {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.notif-icon-calendar {
  background: rgba(100, 200, 150, 0.15);
}

.notif-icon-calendar svg {
  color: #64c896;
}

.notif-content {
  flex: 1;
  min-width: 0;
}

.notif-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5f2eb;
  margin-bottom: 2px;
}

.notif-text {
  display: block;
  font-size: 0.7rem;
  color: rgba(245, 242, 235, 0.6);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.notif-time {
  font-size: 0.65rem;
  color: rgba(245, 242, 235, 0.4);
  white-space: nowrap;
}

/* 24/7 Badge */
.badge-24-7 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 4s ease-in-out infinite;
}

.badge-whatsapp {
  top: 15%;
  left: 0;
  animation-delay: 0s;
}

.badge-whatsapp svg {
  color: #25D366;
}

.badge-sms {
  top: 45%;
  right: 0;
  animation-delay: 1s;
}

.badge-email {
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

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

/* Content Side */
.mobile-content h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.mobile-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.mobile-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

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

.mobile-features li:hover .feature-icon {
  background: rgba(200, 169, 107, 0.2);
  border-color: var(--primary);
  transform: scale(1.05);
}

.mobile-features strong {
  display: block;
  font-size: 1rem;
  color: #f5f2eb;
  margin-bottom: 0.25rem;
}

.mobile-features span {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
}

/* Mobile Section Responsive */
@media (max-width: 900px) {
  .mobile-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mobile-visual {
    order: -1;
  }

  .phone-mockup {
    width: 240px;
    height: 480px;
  }

  .floating-badge {
    display: none;
  }
}

@media (max-width: 600px) {
  .mobile-section {
    padding: 5rem 0;
  }

  .phone-mockup {
    width: 220px;
    height: 440px;
    border-radius: 32px;
  }

  .phone-screen {
    border-radius: 26px;
    padding: 40px 12px 16px;
  }

  .notification {
    padding: 10px;
    gap: 8px;
  }

  .notif-icon {
    width: 30px;
    height: 30px;
  }

  .notif-title {
    font-size: 0.75rem;
  }

  .notif-text {
    font-size: 0.65rem;
  }

  .mobile-content h2 {
    font-size: 1.8rem;
  }
}

/* ================================================
   IMMO COPILOT PAGE - Product Page Styles
   ================================================ */

/* Product Hero */
.product-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 19rem 0 7rem;
  text-align: center;
  background: linear-gradient(180deg, var(--dark) 0%, rgba(5, 6, 10, 0.98) 100%);

}

.product-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.product-hero h1 span {
  color: var(--primary);
}

.product-hero .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.badge {
  background: rgba(200, 169, 107, 0.1);
  border: 1px solid rgba(200, 169, 107, 0.3);
  color: var(--primary);
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Impact section adjustments for product page */
.impact-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  text-align: center;
}

.impact-section .eyebrow {
  text-align: center;
}

.impact-conclusion {
  text-align: center;
  font-size: 1.25rem;
  color: var(--muted);
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.impact-conclusion strong {
  color: var(--primary);
}

.impact-unit {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 600;
}

/* Features Section - Bento Grid */
.features-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.features-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  text-align: center;
}

.features-section .eyebrow {
  text-align: center;
}

.features-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card-v2 {
  background: rgba(200, 169, 107, 0.04);
  border: 1px solid rgba(200, 169, 107, 0.15);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card-v2:hover {
  border-color: rgba(200, 169, 107, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  background: rgba(200, 169, 107, 0.07);
}

.feature-card-v2-icon {
  width: 52px;
  height: 52px;
  color: var(--primary);
  margin-bottom: 1.5rem;
  background: rgba(200, 169, 107, 0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.feature-card-v2-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card-v2 h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.feature-card-v2 p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Workflow Section */
.workflow-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 5rem 0;
  background: #f5efe4;
  color: #1a1a1a;
}

.workflow-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 4rem;
  text-align: center;
  color: #1a1a1a;
}

.workflow-section .eyebrow {
  text-align: center;
  color: #a0824a;
}

.workflow-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.workflow-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  color: #a0824a;
  margin: 0 auto 1.5rem;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.workflow-step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.workflow-step p {
  color: #5a5048;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.workflow-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #a0824a, transparent);
  margin-top: 4rem;
  opacity: 0.4;
}

/* Integrations Section */
.integrations-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 0;
  background: var(--dark);
}

.integrations-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  text-align: center;
}

.integrations-section .eyebrow {
  text-align: center;
}

.integrations-marquee {
  margin-bottom: 4rem;
}


.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 0.25rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.integrations-grid .integration-category:last-child {
  grid-column: 1 / -1;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}

.integration-category {
  background: rgba(200, 169, 107, 0.04);
  border: 1px solid rgba(200, 169, 107, 0.20);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.integration-category h4 {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.integration-category p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.integration-note {
  text-align: center;
  margin-top: 0;
  color: var(--primary);
  font-size: 0.85rem;
  font-style: italic;
}
.integration-note a {
  color: var(--primary);
  text-decoration: underline;
}

.integration-note-arrow {
  display: block;
  font-size: 1.2rem;
  font-style: normal;
  margin-bottom: 0.15rem;
  animation: arrowBounce 1.5s ease-in-out 3;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.integrations-note {
  text-align: center;
  color: rgba(245, 242, 235, 0.5);
  font-size: 0.9rem;
}

/* Use Cases Section */
.use-cases-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: #f5efe4;
  color: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.use-cases-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  text-align: center;
  color: #1a1a1a;
}

.use-cases-section .eyebrow {
  text-align: center;
  color: #a0824a;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.use-case-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.use-case-card:hover {
  border-color: rgba(200, 169, 107, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(160, 130, 74, 0.08);
}

.use-case-icon {
  width: 56px;
  height: 56px;
  color: #a0824a;
  margin: 0 auto 1.5rem;
}

.use-case-icon svg {
  width: 100%;
  height: 100%;
}

.use-case-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: #1a1a1a;
}

.use-case-card p {
  color: #5a5048;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 1rem;
}

.use-case-stat {
  display: inline-block;
  background: rgba(160, 130, 74, 0.12);
  color: #a0824a;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Pricing Preview Section */
.pricing-preview-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0;
  background: #f5efe4;
  color: #1a1a1a;
  text-align: center;
}

.pricing-preview-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  color: #1a1a1a;
}

.pricing-preview-section .eyebrow {
  text-align: center;
  color: #a0824a;
}

.pricing-preview-section .pricing-value-anchor {
  color: #5a5048;
}

.pricing-preview-section .pricing-value-anchor strong {
  color: var(--primary);
}

.pricing-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-preview-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(200, 169, 107, 0.25);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.pricing-preview-card:hover {
  border-color: rgba(200, 169, 107, 0.5);
  box-shadow: 0 8px 24px rgba(160, 130, 74, 0.1);
}

.pricing-preview-card.featured {
  border-color: #a0824a;
  background: rgba(255, 255, 255, 0.8);
}

.recommended-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-preview-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 1rem;
  color: #1a1a1a;
}

.preview-price {
  font-size: 2rem;
  font-weight: 700;
  color: #a0824a;
  margin-bottom: 0.5rem;
}

.preview-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6b6058;
}

.pricing-preview-card p {
  color: #5a5048;
  font-size: 0.9rem;
  margin: 0;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 2.5rem;
}

/* FAQ Section */
.faq-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 9rem 0;
  background: linear-gradient(180deg, rgba(5, 6, 10, 0.95) 0%, var(--dark) 100%);
}

.faq-section h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  margin: 0 0 3rem;
  text-align: center;
}

.faq-section .eyebrow {
  text-align: center;
}

.faq-bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-card {
  background: rgba(200, 169, 107, 0.04);
  border: 1px solid rgba(200, 169, 107, 0.20);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.faq-card:hover {
  border-color: rgba(200, 169, 107, 0.25);
}

.faq-card.active {
  border-color: var(--primary);
  background: rgba(200, 169, 107, 0.03);
}

.faq-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem 0.5rem;
  background: transparent;
  border: none;
  color: #f5f2eb;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: default;
  pointer-events: none;
}

.faq-toggle span {
  flex: 1;
  padding-right: 1rem;
  color: var(--primary);
}

.faq-icon {
  display: none;
}

.faq-card.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  max-height: none;
  overflow: visible;
}

.faq-content p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Final CTA Section */
.final-cta-section {
  padding: 8rem 0;
  background: #f5efe4;
  color: #1a1a1a;
  text-align: center;
  border-top: 1px solid rgba(200, 169, 107, 0.2);
  border-bottom: 1px solid rgba(200, 169, 107, 0.2);

}

.final-cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin: 0 0 2rem;
  color: #1a1a1a;
}

.final-cta-section > .container > p {
  font-size: 1.15rem;
  color: #5a5048;
  margin: 0 0 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5a5048;
  font-size: 0.9rem;
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: #a0824a;
}

.final-cta-section .btn-secondary {
  color: #3a3a3a;
  border-color: rgba(200, 169, 107, 0.4);
}

.final-cta-section .btn-secondary:hover {
  background: rgba(200, 169, 107, 0.08);
  border-color: rgba(200, 169, 107, 0.6);
  color: #1a1a1a;
}

/* Responsive - Immo Copilot Page */
@media (max-width: 1100px) {
  .features-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 900px) {
  .workflow-grid {
    flex-direction: column;
    align-items: center;
  }

  .workflow-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    margin: 0;
  }

  .use-cases-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .faq-bento {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-hero,
  .workflow-section,
  .features-section,
  .use-cases-section,
  .integrations-section,
  .pricing-preview-section,
  .faq-section {
    min-height: auto;
  }

  .product-hero {
    padding: 8rem 0 4rem;
  }

  .features-grid-3 {
    grid-template-columns: 1fr;
  }

  .integrations-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 2rem;
  }

  .pricing-preview-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto 3rem;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto 3rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Utility */
.gold { color: var(--primary); }
