@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --blue: #0667d8;
  --navy: #05295c;
  --red: #e41827;
  --ink: #10233f;
  --muted: #5c6b7d;
  --line: #dce6f1;
  --soft: #f3f8fd;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(5, 41, 92, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: auto; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 16px; top: 16px; background: #fff; padding: 10px; z-index: 99; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(220, 230, 241, 0.8);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; font-weight: 800; color: var(--navy); }
.brand img {
  width: auto;
  height: 72px;
  max-width: 150px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { text-decoration: none; font-weight: 700; font-size: 0.93rem; }
.nav a:last-child { color: var(--blue); }
.nav-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: 8px; padding: 9px 12px; font-weight: 700; }

.hero {
  overflow: hidden;
  background: radial-gradient(circle at 82% 20%, rgba(6, 103, 216, 0.18), transparent 28%), linear-gradient(135deg, #f7fbff 0%, #fff 55%, #eef6ff 100%);
  padding: 88px 0 82px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 70px; }
.eyebrow { margin: 0 0 12px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--blue); font-size: 0.8rem; font-weight: 800; }
.hero h1, .section h2 { margin: 0; color: var(--navy); line-height: 1.08; letter-spacing: -0.035em; }
.hero h1 { font-size: clamp(2.55rem, 5.2vw, 4.8rem); }
.hero h1 span { color: var(--blue); }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 630px; margin: 24px 0 0; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 23px; border-radius: 10px; text-decoration: none; border: 0; font: inherit; font-weight: 800; cursor: pointer; transition: 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: linear-gradient(135deg, var(--blue), #044fa8); box-shadow: 0 12px 24px rgba(6, 103, 216, 0.28); }
.btn-light { background: #fff; color: var(--navy); border: 1px solid var(--line); }
.trust-list { display: flex; gap: 22px; flex-wrap: wrap; padding: 0; margin: 26px 0 0; list-style: none; color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.trust-list li::before { content: '✓'; color: var(--blue); font-weight: 900; margin-right: 7px; }


.hero-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: transparent;
}

.hero-card::before {
  display: none !important;
}

.hero-card img {
  position: relative;

  width: 380px;
  max-width: 100%;
  height: auto;

  background: #ffffff;
  padding: 25px;

  object-fit: contain;

  border-radius: 50%;

  box-shadow:
    0 0 120px 70px rgba(255,255,255,1),
    0 15px 40px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}



.section { padding: 92px 0; }
.section h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 750px; margin-bottom: 38px; }
.cards { display: grid; gap: 18px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.card { padding: 28px; border: 1px solid var(--line); border-radius: 18px; background: #fff; transition: 0.2s; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #bdd7f3; }
.card .icon { width: 48px; height: 48px; display: grid; place-items: center; background: var(--soft); color: var(--blue); border-radius: 12px; font-weight: 900; font-size: 1.35rem; }
.card h3 { margin: 20px 0 8px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }
.section-tint { background: var(--navy); color: #dce9fa; }
.section-tint h2 { color: #fff; }
.section-tint .eyebrow { color: #77b9ff; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.feature-list { display: grid; gap: 14px; }
.feature-list > div { padding: 22px; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; display: flex; gap: 18px; }
.feature-list strong { font-size: 1.45rem; color: #69b1ff; }
.feature-list span { display: grid; }
.feature-list b { color: #fff; font-size: 1.05rem; }

.quote-section { background: linear-gradient(180deg, #fff, #f6faff); }
.quote-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 55px; align-items: start; }
.quote-intro { position: sticky; top: 120px; }
.quote-intro h2 { margin-bottom: 20px; }
.quote-intro p { color: var(--muted); }
.quote-intro p a { color: var(--blue); font-weight: 700; }
.instagram-card { margin-top: 30px; padding: 18px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line); background: #fff; border-radius: 14px; text-decoration: none; }
.insta-mark { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, #7047eb, #d92e7f, #ff8a22); font-size: 1.5rem; }
.instagram-card span:last-child { display: grid; }
.instagram-card small { color: var(--muted); }

/* Formulaire de devis */
.quote-form {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.quote-form label { display: flex; flex-direction: column; gap: 8px; min-width: 0; font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.quote-form input, .quote-form select, .quote-form textarea {
  display: block;
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd9e7;
  border-radius: 10px;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.quote-form textarea { min-height: 150px; resize: vertical; line-height: 1.5; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(6, 103, 216, 0.12); }
.full { grid-column: 1 / -1; }
.file-label input { min-height: auto; padding: 10px; background: var(--soft); }
.consent { display: grid !important; grid-template-columns: 22px 1fr; align-items: start; gap: 10px !important; }
.consent input[type='checkbox'] { width: 18px; height: 18px; min-height: 18px; margin: 3px 0 0; padding: 0; }
.consent span { font-weight: 600; line-height: 1.45; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.submit-btn { width: 100%; min-height: 56px; margin-top: 24px; padding: 14px 20px; font-size: 1rem; }
.form-note { font-size: 0.78rem; color: var(--muted); margin: 12px 0 0; text-align: center; }
.form-status { display: none; margin-bottom: 18px; padding: 12px; border-radius: 10px; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { background: #e9f9ee; color: #147333; }
.form-status.error { background: #fff0f1; color: #a00f1a; }

.footer { background: #031b3d; color: #c9d8ec; padding: 32px 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr auto; align-items: center; gap: 24px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: auto; height: 56px; object-fit: contain; border-radius: 0; }
.footer-brand span { display: grid; }
.footer-brand b { color: #fff; }
.footer-brand small { color: #aabbd2; }
.footer-grid > div:nth-child(2) { display: grid; }
.footer a { color: #fff; text-decoration: none; }
.footer p { font-size: 0.82rem; }
.reveal { animation: up 0.7s ease both; }
@keyframes up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav { display: none; position: absolute; left: 20px; right: 20px; top: 78px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 18px; box-shadow: var(--shadow); flex-direction: column; align-items: stretch; }
  .nav.open { display: flex; }
  .hero-grid, .split, .quote-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero-card { max-width: 520px; margin: auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-intro { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand span { display: none; }
  .brand img { height: 56px; max-width: 120px; }
  .nav-wrap { min-height: 74px; }
  .hero { padding: 48px 0 58px; }
  .hero-grid { gap: 42px; }
  .hero-card img { width: 300px; }
  .section { padding: 70px 0; }
  .services-grid, .form-grid { grid-template-columns: 1fr; }
  .full { grid-column: auto; }
  .quote-form { padding: 21px; border-radius: 16px; }
  .cta-row .btn { width: 100%; }
  .trust-list { display: grid; gap: 8px; }
  .footer-grid { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .btn, .card { transition: none; }
}
