/* _css/landing.css */

:root {
  --primary: #006BFF; /* Bleu Calendly */
  --primary-dark: #0055CC;
  --text: #0B3558; /* Bleu nuit très foncé */
  --text-light: #476788;
  --bg: #FFFFFF;
  --bg-alt: #F8F9FC;
  --border: #E2E8F0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; background: var(--bg); }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* BOUTONS */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--primary); }
.btn-outline { border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--text); }
.btn-lg { padding: 16px 32px; font-size: 1.1rem; }

/* NAVBAR */
.navbar { padding: 20px 0; position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(5px); z-index: 100; border-bottom: 1px solid transparent; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; color: var(--primary); }
.logo .dot { color: var(--text); }
.nav-links a { margin: 0 15px; font-weight: 500; color: var(--text-light); }
.nav-links a:hover { color: var(--text); }
.nav-buttons { display: flex; gap: 10px; }

/* HERO */
.hero { padding: 80px 0 60px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.hero h1 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -1px; }
.hero p { font-size: 1.25rem; color: var(--text-light); margin-bottom: 30px; }
.hero-cta .hint { display: block; margin-top: 10px; font-size: 0.9rem; color: #888; }
.fake-browser {
  background: white; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1); overflow: hidden;
}
.browser-header { background: #f1f3f5; padding: 10px; display: flex; gap: 6px; }
.browser-header span { width: 10px; height: 10px; border-radius: 50%; display: block; }
.dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
.fake-browser img,
.fake-browser video { width: 100%; display: block; }

/* LOGOS */
.logos { padding: 40px 0; background: var(--bg-alt); text-align: center; }
.logos p { font-size: 0.9rem; color: #888; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.logo-grid { display: flex; justify-content: center; gap: 40px; color: #aaa; font-weight: 700; font-size: 1.2rem; flex-wrap: wrap; }

/* FEATURES */
.features { padding: 100px 0; }
.section-title { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title p { font-size: 1.2rem; color: var(--text-light); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.feature-card { padding: 30px; border-radius: 16px; transition: 0.3s; }
.feature-card:hover { background: var(--bg-alt); }
.feature-card .icon { font-size: 40px; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.feature-card p { color: var(--text-light); }

/* SOLUTIONS */
.solutions { padding: 80px 0; }
.solution-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.solutions.reverse .solution-grid { direction: rtl; } /* Inverse l'ordre image/texte */
.solutions.reverse .solution-content { direction: ltr; }
.badge { background: #E0F2FE; color: var(--primary); padding: 5px 10px; border-radius: 4px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; }
.solution-content h2 { font-size: 2.2rem; margin: 15px 0; }
.check-list li { margin: 10px 0; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.check-list li::before { content: '✓'; color: var(--primary); font-weight: bold; }
.solution-img img { width: 100%; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

/* PRICING */
.pricing { padding: 100px 0; background: var(--bg-alt); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; align-items: flex-start; }
.price-card { background: white; padding: 40px; border-radius: 16px; border: 1px solid var(--border); position: relative; }
.price-card.featured { border: 2px solid var(--primary); transform: scale(1.05); box-shadow: 0 20px 40px rgba(0,107,255,0.1); z-index: 2; }
.tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: white; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.price-card .price { font-size: 3rem; font-weight: 700; margin: 20px 0; }
.price-card .price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.price-card hr { border: 0; border-top: 1px solid var(--border); margin: 20px 0; }
.price-card ul li { margin-bottom: 12px; color: var(--text-light); font-size: 0.95rem; }
.full-width { width: 100%; display: block; }

/* FOOTER */
footer { padding: 60px 0; border-top: 1px solid var(--border); margin-top: 60px; }
.footer-cols { display: flex; justify-content: space-between; margin-bottom: 40px; }
.footer-cols h4 { margin-bottom: 20px; }
.footer-cols a { display: block; color: var(--text-light); margin-bottom: 10px; font-size: 0.9rem; }
.copy { text-align: center; color: #aaa; font-size: 0.9rem; }

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-grid, .feature-grid, .solution-grid, .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
  .solutions.reverse .solution-grid { direction: ltr; }
  .price-card.featured { transform: scale(1); }
  .nav-links { display: none; } /* On cache les liens sur mobile pour simplifier */
}