@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  background-color: #0b1e2c;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3 {
  font-family: "IBM Plex Sans", sans-serif;
}

p,
a,
button {
  font-family: "Inter", sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 10px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: block;
}

.btn-primary {
  background: #f2d16b;
  color: #0b1e2c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.btn-outline-dark {
  background: transparent;
  color: #111;
  border: 2px solid rgba(0, 0, 0, 0.22);
}

/* ✅ WhatsApp = même ADN que .btn, juste une peau verte */
.btn-whatsapp {
  background: #25d366;
  color: #0b1e2c;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@media (hover: hover) {
  .btn:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
  }
  .btn:active {
    transform: translateY(0) scale(0.98);
  }
  /* petit bonus focus/halo vert uniquement sur WhatsApp */
  .btn-whatsapp:hover {
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(37, 211, 102, 0.18);
  }
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18);
}

.btn-whatsapp:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.35), 0 14px 28px rgba(0, 0, 0, 0.28);
}

.header {
  position: relative;
  top: 0;
  z-index: 100;
  background: #0b1e2c;
  border-bottom: 1px solid #f2d16b;
}
.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex; /* ✅ TOUJOURS */
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.header__logo {
  width: 150px;
  height: auto;
  display: block;
}
.header__title {
  display: none;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__burger {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  color: #f2d16b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s ease, color 0.18s ease;
}
.header__burger svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.header__burger:active {
  transform: scale(0.95);
}

.navBar {
  position: absolute;
  top: calc(100% + 12px);
  left: 12px;
  right: 12px;
  background: #0b1e2c;
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 10px;
  border: 1px solid rgba(242, 209, 107, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.22s ease;
  z-index: 55;
}
.navBar.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.navBar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.navBar a {
  display: block;
  padding: 14px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.navBar a:visited {
  color: #fff;
}
.navBar a:hover {
  background: rgba(242, 209, 107, 0.09);
  transform: translateY(-1px);
}
.navBar a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(242, 209, 107, 0.25);
}

@media (min-width: 768px) {
  .navOverlay {
    display: none;
  }
  .navBar {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    border: none;
    padding: 0;
  }
  .navBar__list {
    display: flex;
    gap: 22px;
    align-items: center;
  }
  .header__burger {
    display: none;
  }
}
.hero {
  padding: 48px 16px 56px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}

.hero__badge {
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 209, 107, 0.12);
  border: 1px solid rgba(242, 209, 107, 0.35);
}
.hero__badge p {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: #f2d16b;
}

.hero__badgeIcon {
  width: 18px;
  height: 18px;
  display: inline-flex;
}
.hero__badgeIcon svg {
  width: 18px;
  height: 18px;
  fill: #f2d16b;
  display: block;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #fff;
}
.hero__title span {
  color: #f2d16b;
}

.hero__content {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero__actions .btn {
  gap: 10px;
}
.hero__actions svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: 0 0 auto;
  display: block;
}

.services {
  background: #fff;
}
.services__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px;
}
.services__header {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: 24px;
}
.services__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
}
.services__title span {
  color: #33a0e3;
}
.services__content {
  margin: 0 auto;
  max-width: 62ch;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}
.services__grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-inline: 16px;
  padding-bottom: 8px;
  scroll-snap-type: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
  scrollbar-width: none;
}
.services__grid::-webkit-scrollbar {
  display: none;
}
.services__grid::after {
  content: "";
  flex: 0 0 16px;
}

.serviceCard {
  flex: 0 0 auto;
  width: min(78vw, 340px);
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 10px;
  text-align: left;
}
.serviceCard__header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.serviceCard__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 110, 255, 0.1);
}
.serviceCard__icon svg {
  width: 26px;
  height: 26px;
  fill: rgba(0, 110, 255, 0.95);
  display: block;
}
.serviceCard__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  font-family: "IBM Plex Sans", sans-serif;
}
.serviceCard__content {
  margin: 0;
  color: #4b5563;
  font-size: 0.98rem;
  line-height: 1.55;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
    padding-inline: 0;
    touch-action: auto;
  }
  .services__grid::after {
    content: none;
  }
  .serviceCard {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.benefits {
  background: rgba(255, 255, 255, 0.02);
}
.benefits__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px;
}
.benefits__header {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: 24px;
}
.benefits__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
}
.benefits__title span {
  color: #f2d16b;
}
.benefits__content {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1rem;
  line-height: 1.6;
}
.benefits__grid {
  display: grid;
  gap: 16px;
}

/* cards */
.benefitCard {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 10px;
  text-align: left;
}
.benefitCard__header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefitCard__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f2d16b;
}
.benefitCard__icon svg {
  width: 26px;
  height: 26px;
  fill: #f2d16b;
  display: block;
}
.benefitCard__title {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
}
.benefitCard__content {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
.reviews {
  background: #fff;
}
.reviews__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px;
}
.reviews__header {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: 24px;
}
.reviews__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #111;
}
.reviews__title span {
  color: #33a0e3;
}
.reviews__content {
  margin: 0 auto;
  max-width: 62ch;
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.6;
}
.reviews__summary {
  margin: 8px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.reviews__rating {
  font-weight: 800;
  color: #111;
}
.reviews__stars {
  color: #f2d16b;
  letter-spacing: 1px;
}
.reviews__count {
  color: #4b5563;
  font-weight: 600;
}
.reviews__grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.reviews__cta {
  margin-top: 22px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   CARD
========================= */
.reviewCard {
  padding: 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  display: grid;
  gap: 12px;
  text-align: left;
}
.reviewCard__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.reviewCard__avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 110, 255, 0.1);
  color: rgba(0, 110, 255, 0.95);
  font-weight: 800;
  font-size: 0.9rem;
}
.reviewCard__meta {
  display: grid;
  gap: 2px;
}
.reviewCard__name {
  margin: 0;
  font-weight: 800;
  color: #111;
  font-size: 1rem;
  font-family: "IBM Plex Sans", sans-serif;
}
.reviewCard__date {
  margin: 0;
  font-weight: 600;
  color: #4b5563;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
}
.reviewCard__stars {
  color: #f2d16b;
  letter-spacing: 1px;
  font-size: 0.95rem;
  white-space: nowrap;
}
.reviewCard__text {
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.6;
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

@media (min-width: 768px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
.contact {
  background: #0b1e2c;
}
.contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px;
}
.contact__header {
  display: grid;
  gap: 10px;
  text-align: center;
  margin-bottom: 24px;
}
.contact__title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  color: #fff;
}
.contact__title span {
  color: #f2d16b;
}
.contact__content {
  margin: 0 auto;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.6;
}
.contact__grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}
.contact__info {
  display: grid;
  gap: 16px;
}
.contact__infoCard {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 12px;
}
.contact__infoTitle {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #fff;
}
.contact__infoText {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}
.contact__quickActions {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}
.contact__hint {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
}
.contact__formCard {
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* =========================
   FORM
========================= */
.contactForm {
  display: grid;
  gap: 14px;
}
.contactForm__row {
  display: grid;
  gap: 14px;
}
.contactForm__field {
  display: grid;
  gap: 6px;
}
.contactForm__label {
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}
.contactForm__input, .contactForm__select, .contactForm__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 15, 23, 0.55);
  padding: 12px 14px;
  color: #fff;
  outline: none;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.contactForm__input:focus, .contactForm__select:focus, .contactForm__textarea:focus {
  border-color: rgba(242, 209, 107, 0.65);
  box-shadow: 0 0 0 4px rgba(242, 209, 107, 0.16);
  background: rgba(11, 15, 23, 0.75);
}
.contactForm__input::-moz-placeholder, .contactForm__textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contactForm__input::placeholder, .contactForm__textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.contactForm__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* enlève la flèche native */
  background-image: linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.7) 50%), linear-gradient(135deg, rgba(255, 255, 255, 0.7) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 2px), calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px; /* place pour la flèche */
  cursor: pointer;
}
.contactForm__select option {
  background: #0b0f17;
  color: #fff;
}
.contactForm__textarea {
  resize: vertical;
  min-height: 120px;
}
.contactForm__consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
}
.contactForm__consent input {
  margin-top: 4px;
}
.contactForm__submit {
  width: 100%;
}
.contactForm__note {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

.contact__success {
  margin: 10px auto 0;
  max-width: 680px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contactForm__input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 209, 107, 0.25);
}

/* =========================
   RESPONSIVE
========================= */
@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
    gap: 18px;
  }
  .contact__quickActions {
    display: flex;
    gap: 12px;
  }
  .contact__quickActions .btn {
    width: auto;
  }
  .contactForm__row {
    grid-template-columns: 1fr 1fr;
  }
  .contactForm__submit {
    width: -moz-fit-content;
    width: fit-content;
    justify-self: center;
  }
}
.footer {
  background: #0b1e2c;
  border-top: 1px solid rgba(242, 209, 107, 0.18);
  color: rgba(255, 255, 255, 0.72);
}
.footer a,
.footer a:link,
.footer a:visited {
  color: inherit;
  text-decoration: none;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 44px 16px 22px;
}
.footer__grid {
  display: grid;
  gap: 24px;
}
.footer__brand {
  display: grid;
  gap: 10px;
  text-align: left;
}
.footer__logoRow {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: block;
}
.footer__brandName {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  letter-spacing: -0.02em;
}
.footer__content {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}
.footer__col {
  display: grid;
  gap: 10px;
  text-align: left;
}
.footer__title {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.footer__line {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  font-size: 12px;
}
.footer__line strong {
  color: rgba(255, 255, 255, 0.9);
}
.footer__link {
  color: rgba(255, 255, 255, 0.86) !important;
}
.footer__link:hover {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}
.footer__wa {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  color: #0b1e2c !important;
  background: #25d366;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}
.footer__wa:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(37, 211, 102, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}
.footer__wa:active {
  transform: translateY(0px) scale(0.98);
}
.footer__waIcon {
  font-size: 18px;
  line-height: 1;
}
.footer__hint {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.footer__bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}

.footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.footer__socialLink {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}
.footer__socialLink svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: #fff;
}

.footer__socialLink--wa {
  background: #25d366;
  color: #fff;
}

.footer__socialLink--fb {
  background: #1877f2;
  color: #fff;
}

@media (hover: hover) {
  .footer__socialLink:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28), 0 0 0 4px rgba(255, 255, 255, 0.06);
  }
}
.footer__socialLink:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.18), 0 10px 20px rgba(0, 0, 0, 0.25);
}

.backTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(11, 30, 44, 0.92);
  border: 1px solid rgba(242, 209, 107, 0.85);
  color: #f2d16b;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 0 4px rgba(242, 209, 107, 0.1);
}
.backTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.backTop:hover {
  filter: brightness(1.08);
}
.backTop:hover .backTop__icon {
  transform: translateY(-2px);
}
.backTop:active {
  transform: translateY(0) scale(0.98);
}
.backTop__icon {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform 180ms ease;
  color: #f2d16b;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.35));
}

/* Desktop */
@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    align-items: start;
    gap: 28px;
  }
}
.pricing {
  background: #f6f7f2;
  color: #0b1e2c;
}
.pricing__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 16px 64px;
}
.pricing__header {
  text-align: center;
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
}
.pricing__title {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.1;
}
.pricing__title span {
  color: #f2d16b;
}
.pricing__subtitle {
  margin: 0 auto;
  max-width: 70ch;
  color: #4b5563;
  line-height: 1.6;
  font-size: 18px;
}
.pricing__group {
  margin-top: 22px;
}
.pricing__group--spaced {
  margin-top: 48px;
}
.pricing__groupTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
}
.pricing__groupTitle .pricing__groupHeading {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 1.15;
  color: #0b1e2c;
}
.pricing__groupIcon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(0, 110, 255, 0.08);
  color: #33a0e3;
}
.pricing__groupIcon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.pricing__grid {
  display: grid;
  gap: 32px;
}
.pricing__cta {
  background: #0b1e2c;
  padding: 54px 16px;
}
.pricing__ctaInner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 10px;
}
.pricing__ctaTitle {
  margin: 0;
  color: #fff;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
}
.pricing__ctaText {
  margin: 0 auto;
  max-width: 60ch;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  font-size: 18px;
}
.pricing__ctaBtn {
  justify-self: center;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 22px;
}

.planCard {
  position: relative;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 16px;
  text-align: center;
}
.planCard__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  background: #f2d16b;
  color: #0b1e2c;
  border: 1px solid rgba(242, 209, 107, 0.55);
}
.planCard__top {
  display: grid;
  gap: 8px;
}
.planCard__name {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.78);
}
.planCard__price {
  margin: 0;
  display: grid;
  gap: 2px;
  justify-items: center;
}
.planCard__amount {
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.05;
  color: #0b0f17;
  letter-spacing: -0.02em;
}
.planCard__per {
  font-size: 16px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.55);
}
.planCard__small {
  margin: 0;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.55);
}
.planCard__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.planCard__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  text-align: left;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.72);
  line-height: 1.45;
}
.planCard__list li::before {
  content: "✓";
  font-weight: 900;
  color: #33a0e3;
}
.planCard__btn {
  margin-top: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.planCard__btn:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
}
.planCard__btn:focus-visible {
  outline: 3px solid rgba(242, 209, 107, 0.7);
  outline-offset: 3px;
}
.planCard__btn:active {
  transform: scale(0.98);
}
.planCard__btn--blue {
  background: #33a0e3;
  color: #fff;
}
.planCard__btn--gold {
  background: #f2d16b;
  color: #0b0f17;
}
.planCard--featured {
  border: 2px solid #f2d16b;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.planCard--featured .planCard__list li::before {
  color: rgb(242, 209, 107);
}

@media (min-width: 768px) {
  .pricing__inner {
    padding: 56px 32px 70px;
  }
  .pricing__title {
    font-size: 48px;
  }
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .planCard--featured {
    transform: scale(1.05);
  }
}
.page {
  background: #0b1e2c;
  color: #fff;
}
.page__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 42px 16px 64px;
}

/* Desktop */
@media (min-width: 768px) {
  .page__inner {
    padding: 56px 24px 80px;
  }
}
.content {
  display: grid;
  gap: 14px;
}
.content h1 {
  margin: 0 0 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  text-align: center;
}
.content h1 span {
  color: #f2d16b;
}
.content h2 {
  margin: 18px 0 6px;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #f2d16b;
}
.content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}
.content ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
}
.content a {
  color: #f2d16b;
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
}
.content a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 209, 107, 0.18);
  border-radius: 10px;
}
.content__meta {
  margin: 0 0 14px;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.62);
}

.aboutCta {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.aboutCta > a {
  flex: 1;
  width: 100%;
}
.aboutCta .planCard__btn,
.aboutCta .btn-wa {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 12px;
}
.aboutCta .btn-wa {
  gap: 10px;
}
.aboutCta .planCard__btn:focus-visible,
.aboutCta .btn-wa:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(242, 209, 107, 0.18);
}

@media (max-width: 520px) {
  .aboutCta {
    flex-direction: column;
  }
}
.cookie-banner {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  z-index: 999999;
  background: #111;
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.cookie-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999998;
}

.cookie-banner a {
  color: #4fd1c5;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-banner__actions button {
  border: none;
  padding: 0.5rem 0.9rem;
  cursor: pointer;
  border-radius: 4px;
}

#cookie-accept {
  background: #22c55e;
  color: #fff;
  font-weight: 600;
  min-width: 110px;
}

#cookie-refuse {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid #4b5563;
}

.backTop {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #0b1e2c;
  border: 1px solid #f2d16b;
  color: #f2d16b;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.backTop.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.backTop:hover {
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .backTop {
    bottom: 28px;
    right: 22px;
  }
}/*# sourceMappingURL=style.css.map */