:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --ink: #14243a;
  --ink-soft: #4b5a70;
  --brand: #5ba4cf;
  --brand-strong: #3a7ca5;
  --brand-gradient: linear-gradient(to bottom right, var(--accent), var(--brand-strong));
  --accent: #84c5f4;
  --muted: #d4e9f8;
  --color-footer: #fff;
  --bg-footer: #3c5060;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10,37,64,.08);
  --maxw: 1120px;
  --border: #e5e7eb;
  --nav-active-bg: #f8fafc;
  --nav-active-fg: #2563eb;
  --nav-active-weight: 700;
  --space: 2rem;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --header-height: 88px;
  --scale: 1.1rem;
  --line-height: 1.6;
}
* {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
a:visited {
  color: inherit;
}
html {
  font-size: var(--scale);
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: var(--line-height);
}
section {
  padding-top: 32px;
}
img {
  width: 80%;
  height: auto;
  max-width: 100%;
}
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
section h1 {
  font-size: clamp(18px,2.2vw,24px);
  margin: 0 0 0 0;
  background: var(--brand-gradient);
  color: #fff;
  text-align: center;
  padding: 8px;
}
.hero + section {
  margin-top: 0;
  padding-top: 0;
}
section h2 {
  font-size: clamp(22px,3vw,34px);
  margin: 0;
  line-height: 1;
}
section h3 {
  font-size: clamp(20px,2.4vw,28px);
  margin: 16px 0;
  color: var(--ink-soft);
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 0px 24px;
}
.button-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 32px 24px;
  text-align: center;
}
.centered-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
footer {
  color: var(--color-footer);
  background: var(--bg-footer);
}
a {
  text-decoration: none;
}
a:active {
  cursor: pointer;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in oklab,var(--brand) 75%, black);
  transition: transform .08s ease,filter .2s ease;
  white-space: nowrap;
}
.wrap-2-buttons {
  display: flex;
  width: 100%;
  gap: 30px;
  margin: 4rem auto;
  flex-direction: row;
  justify-content: center;
}
.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  text-decoration: none;
}
.cta.secondary {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--brand);
  box-shadow: none;
}
.auth-page {
  min-height: calc(100dvh - var(--header-height));
  display: grid;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: radial-gradient(80% 60% at 20% 0%, rgba(0,0,0,.03), transparent 60%), 
radial-gradient(70% 50% at 100% 100%, rgba(0,0,0,.04), transparent 60%);
}
.auth-card {
  max-width: 420px;
  width: 100%;
  background-color: white;
  border: 1px solid var(--muted, #e6e9ee);
  border-radius: 16px;
  box-shadow: 0 10px 30px 0 rgba(20,30,50,0.08);
  padding: 28px;
}
.auth-card h1 {
  margin: 0 0 6px 0;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  line-height: 1.2;
}
.auth-lead {
  margin: 0 0 18px 0;
  color: #5b667a;
  font-size: 0.95rem;
}
.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0;
}
.auth-field label {
  font-weight: 600;
  color: #2b3547;
  font-size: 0.92rem;
}
.auth-input {
  width: 100%;
  font-size: 16px;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #d7dbe3;
  border-radius: 10px;
  background-color: white;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.auth-input: focus {
  border-color: #6aa4ff;
  box-shadow: 0 0 0 4px rgba(106,164,255,0.15);
}
.auth-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.auth-btn {
  height: 44px;
  font-size: 18px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #7db3ff, #4f8dff);
  color: white;
}
.auth-btn:disabled {
  opacity: 0.6;
  cursor: notAllowed;
}
.auth-aux {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.9rem;
}
.auth-aux a {
  color: #3a7bff;
  text-decoration: none;
}
.auth-aux a:hover {
  text-decoration: underline;
}
.md-table {
  width: 100%;
  border-collapse: collapse;
}
.md-table th, .md-table td {
  border: 1px solid var(--muted);
  padding: .5rem .75rem;
  text-align: left;
  margin-top: 16px;
}
.md-table thead {
  background: color-mix(in oklab, var(--bg) 60%, white);;
}
.md-table caption {
  caption-side: bottom;
  color: var(--ink-soft);
  padding-top: .5rem;
  font-size: .9rem;
}
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}
.tarifs-table td {
  border-bottom: 2px dashed var(--brand-strong);
  padding: 1rem 0;
  font-weight: 600;
}
.tarifs-table td:last-child {
  width: 30%;
  text-align: right;
}
#navigation svg {
  width: 1.25rem;
  height: 1.25rem;
}
#site-logo img {
  height: 48px;
  width: 48px;
}
.brand {
  display: flex;
  color: var(--ink-soft);
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.navigation-desktop {
  display: none;
  list-style: none;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 12px;
}
.navigation-mobile {
  display: block;
  margin-top: 1rem;
}
.menu {
  background: var(--bg);
  display: block;
  flex-direction: column;
}
.menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  padding: 1rem 0;
  display: inline-block;
}
.menu a:hover {
  color: var(--brand-strong);
}
.desktop {
  display: none;
}
.mobile {
  display: block;
}
.hamburger {
  margin-left: auto;
  font-size: 1.6rem;
  background: none;
  border: 0;
  cursor: pointer;
  line-height: 1;
}
.dropdown {
  position: relative;
}
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  background: var(--bg);
  border: 1px solid #ddd;
  list-style: none;
  padding: 0 1rem 0 2rem;
  min-width: 12rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
  margin: 0;
  white-space: nowrap;
  border-radius: 0.5rem;
}
.menu .submenu li {
  display: block;
  width: 100%;
}
.submenu li a {
  display: block;
  width: 100%;
  color: var(--ink);
  padding: 0.5rem;
}
.dropdown:hover .submenu {
  display: block;
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg);
  margin: 0 auto;
  padding: 0 24px;
  z-index: 999;
  border-bottom: 1px solid var(--muted);
}
.site-header + section {
  padding-top: var(--header-height);
}
#hamburger-checkbox {
  display: none;
}
#hamburger line {
  transition: transform .3s ease-in-out 0s;;
  transform-origin: 50% 50%;;
}
#hamburger-checkbox:checked ~ label line:nth-child(1) {
  transform: translateX(-50px);;
}
#hamburger-checkbox:checked ~ label line:nth-child(2) {
  transform: rotate(45deg) translateY(6px);;
}
#hamburger-checkbox:checked ~ label line:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);;
}
.paragraph-img-left {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: var(--space);
  padding-bottom: var(--space);
}
.paragraph-img-right {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: var(--space);
  padding-bottom: var(--space);
}
.paragraph-img-right div:has(img) {
  text-align: right;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  justify-items: center;
  margin: 3rem auto;
}
.close-cards {
  text-align: center;
  justify-items: center;
  margin: 3rem auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  width: 100%;
}
.card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}
.chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  line-height: 1;
  font-size: 13px;
  color: var(--ink-soft);
  background: #f2f8ff;
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}
.chip img {
  display: block;
  flex-shrink: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100px;
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.testimonials-cards {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
  justify-items: center;
  margin: 3rem auto;
}
.testimonials-card {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  width: 100%;
}
.testimonials-card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}
.stars {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 2px;
  color: #f5b301;
}
.star-rating {
  display: inline-flex;
  gap: 4px;
  cursor: pointer;
  margin-top: 12px;
}
.star-button {
  background: transparent;
  font-size: 1.5rem;
  border: none;
  color: #d0d3d8;
  transition: color 0.2s ease;
  padding: 0;
}
.star-button.filled {
  color: #f5b301;
}
.star-button:hover {
  color: #f5b301;
}
.star-button:focus {
  outline: none;
}
.testimonials-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 14px 0;
}
.testimonials-field textarea {
  font-size: 16px;
}
.testimonials-field label {
  font-weight: 600;
  color: #2b3547;
  font-size: 0.92rem;
}
.testimonials-input {
  width: 100%;
  font-size: 16px;
  height: 44px;
  padding: 10px 12px;
  border: 1px solid #d7dbe3;
  border-radius: 10px;
  background-color: white;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.testimonials-input: focus {
  border-color: #6aa4ff;
  box-shadow: 0 0 0 4px rgba(106,164,255,0.15);
}
.testimonials-actions {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 2rem;
}
.testimonials-btn {
  height: 44px;
  font-size: 18px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(180deg, #7db3ff, #4f8dff);
  color: white;
}
.testimonials-btn:disabled {
  opacity: 0.6;
  cursor: notAllowed;
}
.testimonials-aux {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 0.9rem;
}
.testimonials-aux a {
  color: #3a7bff;
  text-decoration: none;
}
.testimonials-aux a:hover {
  text-decoration: underline;
}
.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1) brightness(.9);
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,.6));
}
.hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 32px 24px;
  border-radius: 18px;
  background: color-mix(in oklab,white 60%, transparent);
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(22px,3vw,34px);
  line-height: 1.1;
  margin: 0 0  14px;
}
.hero p {
  color: var(--ink-soft);
  font-size: clamp(16px,2.4vw,20px);
  margin: 0 0 22px;
}
section.hero {
  margin-top: 16px;
  margin-bottom: 0;
}
.row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .3s ease;
}
.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  user-select: none;
  pointer-events: none;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklab, #000 40%, transparent);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: filter .2s ease, transform .08s ease;
}
.slider-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-50%) scale(1.03);
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
.section-lead {
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.section-lead-backgrounded {
  color: var(--ink-soft);
  margin-top: 2rem;
  background: #eef6ff;
  background: color-mix(in srgb, var(--brand-strong) 12%, white);
  border-left: 4px solid var(--brand-strong);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
}
body > header::before {
  content: ;
}
@media prefers-reduced-motion: reduce {
  .hero video {
    animation: none;
    filter: brightness(.95);
  }
}
@media (max-width:960px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .paragraph-img-left {
    grid-template-columns: 1fr 1fr;
  }
  .paragraph-img-right {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .container {
    margin-top: 1rem;
  }
}
@media (max-width:640px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .testimonials-cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: center;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .photo img {
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .about-grid .text h2 {
    margin: 0 0 6px;
    font-size: 1.8rem;
    color: var(--brand-strong);
  }
  .about-grid .text .subtitle {
    margin: 0 0 16px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .row {
    flex-direction: column;
  }
  .paragraph-img-left {
    grid-template-columns: 1fr;
  }
  .paragraph-img-left div:has(img) {
    text-align: center;
  }
  .paragraph-img-right {
    grid-template-columns: 1fr;
  }
  .paragraph-img-right div:has(img) {
    text-align: center;
    margin-bottom: 32px;
  }
  p img {
    border-radius: 16px;
  }
  p {
    display: block;
  }
  p > :last-child {
    margin: 0;
  }
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  .cta {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .wrap-2-buttons {
    flex-direction: column;
  }
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 12px 8px;
    margin: 0;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-block {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (min-width:961px) {
  .navigation-desktop {
    display: flex;
  }
  .navigation-mobile {
    display: none;
  }
}
.admin-testimonials-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  justify-items: center;
  margin: 1rem auto;
}
.admin-testimonials-card {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  width: 100%;
}
.admin-testimonials-card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}
.admin-cta {
  display: inline-flex;
  font-size: 16px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 500;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in oklab,var(--brand) 75%, black);
  transition: transform .08s ease,filter .2s ease;
  white-space: nowrap;
  color: white;
}
.admin-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  text-decoration: none;
}
.admin-testimonials-card .admin-actions {
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}
.admin-testimonials-card .admin-actions form {
  display: flex;
  margin: 0;
}
.admin-testimonials-card .admin-actions button {
  width: 100%;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  background-color: #4da3ff;
  color: white;
}
.admin-testimonials-card .admin-actions button.secondary {
  background-color: #b0b0b0;
}
.admin-testimonials-card .admin-actions button:hover {
  opacity: 0.9;
}
.admin-testimonials-card .admin-actions > * {
  flex: 1 1 auto;
}
.admin-menu hr {
  margin: 1rem 0 0 0;
}
.admin-menu {
  background: var(--bg);
  display: block;
  flex-direction: column;
}
.admin-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.admin-menu a {
  padding-bottom: 0.25rem;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}
.admin-menu a.active {
  border-bottom: 2px solid var(--ink);
}