
:root {
  --bg: #0b0b0b;
  --surface: rgba(255,255,255,0.04);
  --surface-strong: rgba(255,255,255,0.07);
  --stroke: rgba(255,255,255,0.10);
  --text: #ffffff;
  --muted: rgba(255,255,255,0.74);
  --blue: #1e90ff;
  --blue-soft: rgba(30, 144, 255, 0.18);
  --gold: #c7a96b;
  --shadow: 0 20px 60px rgba(0,0,0,0.45);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(30,144,255,0.14), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(30,144,255,0.10), transparent 22%),
    linear-gradient(180deg, #05070a 0%, #0b0b0b 45%, #080808 100%);
  color: var(--text);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8,10,14,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}
.brand img {
  width: 250px;
  height: auto;
  max-width: 40vw;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(30,144,255,0.22));
  animation: floatLogo 4.5s ease-in-out infinite;
}
@media (min-width: 900px) {
  .brand img {
    width: 240px;
  }
}

@keyframes floatLogo {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}
.brand-title {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}
.nav-wrap {
  display: none;
  align-items: center;
  gap: 1rem;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}
nav a {
  padding: 0.72rem 1rem;
  border-radius: 999px;
  color: var(--muted);
  transition: 160ms ease;
  font-size: 0.96rem;
}
nav a:hover, nav a.active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.lang-switch {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 0.18rem;
}
.lang-switch a {
  padding: 0.5rem 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
}
.lang-switch a.active {
  background: linear-gradient(180deg, rgba(30,144,255,0.9), rgba(30,144,255,0.72));
  color: #fff;
}
.mobile-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: #fff;
}
.mobile-panel {
  display: none;
  padding: 0 0 1rem;
}
.mobile-panel.open { display: block; }
.mobile-panel nav ul {
  flex-direction: column;
  gap: 0.3rem;
}
.mobile-panel nav a { display: block; }
.hero {
  padding: 4rem 0 2rem;
}
.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: #f3dfb2;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
}
.hero h1, .page-hero h1 {
  font-size: clamp(2rem, 2.5vw, 2.8rem);
  line-height: 1.15;
  max-width: 16ch;
}
.hero p.lead, .page-hero p.lead {
  font-size: clamp(1.08rem, 2.8vw, 1.45rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 42rem;
  margin: 1.2rem 0 0;
}
.hero-actions, .section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}
.button, button.button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(180deg, #2e9cff 0%, #1e90ff 100%);
  color: white;
  box-shadow: 0 18px 40px rgba(30,144,255,0.28);
}
.button.secondary {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.08);
}
.card-grid {
  display: grid;
  gap: 1rem;
}
.info-card, .testimonial-card, .post-card, .contact-card, .pricing-card, .zone-card, .newsletter-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.025));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.info-card, .testimonial-card, .post-card, .contact-card, .zone-card {
  padding: 1.35rem;
}
.info-card h3, .pricing-card h3, .section-title, .post-card h3, .contact-card h3, .zone-card h3 {
  margin: 0 0 0.6rem;
}
.info-card p, .testimonial-card p, .post-card p, .contact-card p, .zone-card p, .pricing-card p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.section {
  padding: 2.4rem 0;
}
.section-head {
  margin-bottom: 1.35rem;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: #f3dfb2;
  background: rgba(255,255,255,0.03);
  margin-bottom: 0.95rem;
}
.section-title {
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.section-lead {
  font-size: clamp(1rem, 2.3vw, 1.3rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 46rem;
  margin: 0;
}
.about-preview, .about-layout, .page-hero-grid, .contact-layout, .newsletter-layout {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.portrait-wrap {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,0.03);
}
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
}
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--muted);
}
.check-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.3rem;
}
.stat {
  padding: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}
.stat strong {
  display: block;
  font-size: 1.55rem;
  margin-bottom: 0.25rem;
}
.testimonial-stars {
  color: #ffd17b;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}
.quote-mark {
  font-size: 2rem;
  color: rgba(255,255,255,0.18);
}
.pricing-grid {
  display: grid;
  gap: 1rem;
}
.pricing-card {
  padding: 1.6rem;
  position: relative;
}
.pricing-card.featured {
  border-color: rgba(30,144,255,0.45);
  box-shadow: 0 20px 60px rgba(30,144,255,0.16);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(30,144,255,0.15);
  border: 1px solid rgba(30,144,255,0.30);
  color: #dceeff;
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}
.price {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0.3rem 0 0.6rem;
}
.price small {
  font-size: 0.94rem;
  color: var(--muted);
  font-weight: 600;
}
.old-price {
  color: rgba(255,255,255,0.46);
  text-decoration: line-through;
  margin-top: 0.35rem;
}
.price-note {
  margin-top: 0.9rem;
  font-size: 0.98rem;
}
.tax-note {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(199,169,107,0.24);
  background: rgba(199,169,107,0.08);
  border-radius: 18px;
  color: #f4e4be;
}
.posts-grid, .zones-grid, .testimonials-grid, .contact-cards {
  display: grid;
  gap: 1rem;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
}
.pill {
  display: inline-flex;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #dfefff;
  font-size: 0.88rem;
}
.newsletter-card {
  padding: 1.5rem;
}
.form-row {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}
label { font-weight: 600; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: white;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.45); }
.small-note {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.58);
  margin-top: 0.75rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.8rem;
}
.contact-list a { color: #dceeff; }
.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2.5rem;
  padding: 1.2rem 0 5rem;
  color: rgba(255,255,255,0.56);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 60;
  width: min(calc(100% - 1.25rem), 380px);
  padding: 0.9rem 1rem;
  text-align: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2e9cff 0%, #1e90ff 100%);
  color: white;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(30,144,255,0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.page-hero {
  padding: 3rem 0 1rem;
}
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199,169,107,0.5), transparent);
  margin: 1.4rem 0;
}
@media (min-width: 720px) {
  .hero { padding: 5rem 0 2.7rem; }
  .hero-grid, .page-hero-grid { grid-template-columns: 1.2fr 0.8fr; }
  .card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-preview, .about-layout, .contact-layout, .newsletter-layout { grid-template-columns: 0.95fr 1.05fr; }
  .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .posts-grid, .testimonials-grid, .zones-grid, .contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-inner { flex-direction: row; justify-content: space-between; align-items: center; }
}
@media (min-width: 980px) {
  .nav-wrap { display: inline-flex; }
  .mobile-menu, .mobile-panel { display: none !important; }
  .section { padding: 3rem 0; }
  .card-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}
@media (max-width: 979px) {
  .topbar-inner > .nav-wrap { display: none; }
}
/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(180deg, #25D366, #1ebe5d);
  color: white;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  z-index: 1000;
  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.03);
}

/* ===== HERO CTA ===== */
.contact-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* WhatsApp bouton principal */
.cta-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(180deg, #25D366, #1ebe5d);
  color: white;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
  transition: all 0.25s ease;
}

/* Bouton appel */
.cta-call {
  background: rgba(255,255,255,0.05);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  font-weight: 600;
  transition: all 0.25s ease;
}

.cta-whatsapp:hover,
.cta-call:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Icone WhatsApp */
.wa-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Alignement propre hero */
.page-hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cta-whatsapp {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.tax-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(199,169,107,0.12);
  border: 1px solid rgba(199,169,107,0.4);
  color: #f4e4be;
  font-weight: 600;
  font-size: 0.95rem;
  animation: pulse-gold 3s infinite;
}

/* animation */
@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(199,169,107,0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(199,169,107,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(199,169,107,0);
  }
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;
  gap: 1.5rem;
}
/* GRID */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* CARD */
.testimonial-card {
  position: relative; /* IMPORTANT */
  overflow: hidden;   /* IMPORTANT */

  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.06);
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

/* HOVER GLOW */
.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 20px 50px rgba(30,144,255,0.25);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(30,144,255,0.15), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.testimonial-card:hover::after {
  opacity: 1;
}

/* STARS */
.stars {
  color: #FFD700;
  margin-bottom: 10px;
  animation: sparkle 2s infinite alternate;
}

@keyframes sparkle {
  from { opacity: 0.6; }
  to { opacity: 1; }
}
.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.tax-highlight {
  padding: 3rem 0;
}

.tax-card {
  background: linear-gradient(180deg, #f4d06f, #c7a96b);
  color: #111;
  border-radius: 24px;
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

.tax-card h2 {
  font-size: 2rem;
  margin: 1rem 0;
}

.tax-card .lead {
  font-weight: 600;
  margin-bottom: 1rem;
}

.tax-badge-big {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
}

.tax-card:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}
.hero-big {
  background: #f5f5f5;
  color: #111;
  padding: 60px 20px;
  border-radius: 30px;
}

.hero-big-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-big-text h1 {
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-big-sub {
  font-size: 20px;
  color: #555;
  margin-bottom: 30px;
}

.hero-big-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #1e90ff;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.btn-secondary {
  background: #111;
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.hero-big-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}

/* MOBILE */
@media (max-width: 900px) {
  .hero-big-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-big-text h1 {
    font-size: 32px;
  }

  .hero-big-image {
    display: flex;
    justify-content: center;
  }
}