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

:root {
  --blue-dark: #0b2b61;
  --blue: #1f62b0;
  --blue-soft: #eef6ff;
  --yellow: #ffd94f;
  --text: #22304a;
  --muted: #667085;
  --line: #e5eaf1;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(11, 43, 97, 0.10);
  --radius: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
  font-family: "Nunito", Arial, sans-serif;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 234, 241, 0.85);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: 148px;
  height: auto;
}

.site-nav {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: #ffffff;
  text-decoration: none;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
}

.social-links a:hover {
  transform: translateY(-1px);
  background: var(--blue-soft);
  border-color: rgba(31, 98, 176, 0.25);
  color: var(--blue);
}

.site-nav a {
  color: var(--blue-dark);
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 0.96rem;
}

.site-nav a:hover {
  color: var(--blue);
}

.hero {
  background:
    radial-gradient(circle at top left, rgba(31, 98, 176, 0.09), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-dark);
  font-weight: 800;
  font-size: 0.9rem;
  font-family: "Montserrat", Arial, sans-serif;
}

h1, h2, h3 {
  margin: 0 0 0.8rem;
  line-height: 1.15;
  color: var(--blue-dark);
  font-family: "Montserrat", Arial, sans-serif;
}

h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.hero-copy p,
.booking-copy p,
.card p,
.benefit span,
.hero-card p,
.section-subcopy {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 1.5rem 0 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 14px;
  padding: 0.95rem 1.25rem;
  text-decoration: none;
  font-weight: 800;
  font-family: "Montserrat", Arial, sans-serif;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.btn-primary {
  background: var(--blue-dark);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(11, 43, 97, 0.18);
}

.btn-primary:hover {
  background: #123776;
}

.btn-secondary {
  background: #ffffff;
  color: var(--blue-dark);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

.commerce-btn {
  margin-top: 0.75rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.point {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.hero-card,
.card,
.booking-form,
.benefit,
.contact-card,
.faq-item {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.4rem;
}

.hero-card h2 {
  font-size: 1.45rem;
}

.mini-steps {
  padding-left: 1.1rem;
  color: var(--muted);
  margin: 1rem 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.cards,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  padding: 1.5rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
}

.featured-card {
  border-color: rgba(31, 98, 176, 0.35);
}

.price-line {
  margin: 0.15rem 0;
}

.pricing-note {
  margin-top: 1.25rem;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue-soft);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.alt-section,
.service-area-section,
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-top: 1px solid #f0f3f8;
  border-bottom: 1px solid #f0f3f8;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 1rem;
}

.benefit {
  padding: 1.15rem 1.2rem;
}

.benefit strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--blue-dark);
}

.section-text {
  color: var(--muted);
}

.booking-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: start;
}

.booking-form {
  padding: 1.4rem;
}

.cal-embed-wrap {
  padding: 0;
  overflow: hidden;
  min-height: 850px;
}

#my-cal-inline-nettoyage-de-vitres-residentiel {
  width: 100%;
  min-height: 850px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  padding: 0.2rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 800;
  color: var(--blue-dark);
  padding: 1rem 0.2rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

.contact-card {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
}

.contact-card p {
  margin: 0.55rem 0;
  color: var(--text);
  font-size: 1.02rem;
}

.contact-card a {
  color: var(--blue-dark);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  color: var(--blue);
}

.contact-small {
  margin-top: 0.95rem !important;
  color: var(--muted) !important;
  font-size: 0.96rem !important;
}

.site-footer {
  padding: 1.5rem 0 2.25rem;
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.footer-social-wrap {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

#services,
#pricing,
#why-us,
#service-area,
#booking,
#faq,
#contact {
  scroll-margin-top: 110px;
}

.floating-contact-actions {
  display: none !important;
}

@media screen and (max-width: 900px) {
  .hero-grid,
  .why-grid,
  .booking-grid,
  .cards,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  h1 {
    max-width: none;
  }

  .hero-card {
    order: -1;
  }
}

@media screen and (max-width: 640px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-right {
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-nav {
    gap: 0.9rem;
  }

  .header-social {
    margin-top: 0.25rem;
  }

  .brand-logo {
    width: 124px;
  }

  .footer-wrap,
  .footer-social-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .floating-contact-actions {
    display: flex !important;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    flex-direction: column;
    gap: 0.65rem;
  }

  .floating-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: "Montserrat", Arial, sans-serif;
    font-weight: 800;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    box-shadow: 0 14px 28px rgba(11, 43, 97, 0.24);
  }

  .floating-contact-btn-call {
    background: var(--blue-dark);
    color: #ffffff;
  }

  .floating-contact-btn-call:hover {
    background: #123776;
  }

  .floating-contact-btn-text {
    background: #ffffff;
    color: var(--blue-dark);
    border: 1px solid var(--line);
  }

  .floating-contact-btn-text:hover {
    background: #f8fbff;
    color: var(--blue-dark);
  }

  body {
    padding-bottom: 8.5rem;
  }
}


.pricing-includes-inline {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #666;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
