:root {
  --bg: #f7f9fc;
  --bg2: #f4f5f8;
  --surface: #ffffff;
  --surface-soft: #f2f7fb;
  --surface-strong: #edf4fb;
  --text: #11203b;
  --text-soft: #52627d;
  --border: rgba(17, 32, 59, 0.08);
  --primary: #1f6fff;
  --primary-dark: #1448b6;
  --accent: #11c4a0;
  --accent-soft: #dff8f1;
  --shadow: 0 20px 50px rgba(15, 35, 75, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 35, 75, 0.05);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --transition: 240ms ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg2);
  color: var(--text);
  line-height: 1.6;

}

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

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 42px 0;
}

.section-tight {
  padding-top: 16px;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(237,244,251,0.65) 100%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.section-heading p {
  color: var(--text-soft);
  font-size: 1rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(31, 111, 255, 0.08);
  color: var(--primary-dark);
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 10px 0;
  /*background: rgba(247, 249, 252, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 32, 59, 0.05);*/
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  height: 58px;
  width: auto;
}

.mobile-menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 4px;
}

.mobile-nav {
  display: none;
  padding: 0 20px 20px;
  flex-direction: column;
  gap: 12px;
}

.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;

  background-color: #31bb45;
  border-radius: 25px;
  padding:2px 20px;
  color: #fff !important;

  transition: color 180ms ease;
}

.nav-whatsapp:hover {
  color: #0f8f74;
}

.nav-whatsapp-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  background-image:url("/static/onpage/img/WhatsApp.svg");
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 600;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
  cursor: pointer;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #1f6fff 0%, #2d3433 100%);
  box-shadow: 0 14px 30px rgba(31, 111, 255, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(31, 111, 255, 0.28);
}

.btn-secondary {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(31, 111, 255, 0.18);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(31, 111, 255, 0.3);
}

.btn-large {
  min-height: 54px;
  padding: 0 26px;
}

.accent-text {
  color: var(--primary-dark);
}

.chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 32, 59, 0.08);
  color: var(--text-soft);
  font-size: 0.92rem;
  box-shadow: var(--shadow-soft);
}

.support-whatsapp-img{
  width: 30px;
}

.site-header {
  position: sticky;
  /*top: 14px;*/
  z-index: 100;

  pointer-events: none;
}

.floating-nav {
  pointer-events: auto;
  min-height: 65px;
  max-height: 70px;
  margin: 0 auto;
  padding: 8px 10px 8px 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  background: rgba(247, 249, 252, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(180, 176, 176, 0.35);
  border-radius: 999px;
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.10);
  -webkit-backdrop-filter: blur(28px);

  transition:
    width 220ms ease,
    min-height 220ms ease,
    padding 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled .floating-nav {
  width: min(100%);
  min-height: 54px;
  padding: 7px 9px 7px 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(15, 35, 75, 0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-brand img {
  width: auto;
  height: 50px;
  margin-top: -5px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.nav-links a {
  color: #52627d;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: #11203b;
}

.nav-cta {
  min-height: 40px;
  padding: 0 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: linear-gradient(135deg, #1f6fff 0%, #2d3433 100%);
  color: #ffffff;

  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  box-shadow: 0 12px 24px rgba(31, 111, 255, 0.22);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 28px rgba(31, 111, 255, 0.28);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(31, 111, 255, 0.08);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  border-radius: 4px;
  background: #11203b;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-floating-menu {
  pointer-events: auto;
  display: none;
  width: min(100%, 430px);
  margin: 10px auto 0;
  padding: 10px;

  border: 1px solid rgba(17, 32, 59, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mobile-floating-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;

  color: #52627d;
  font-size: 0.84rem;
  font-weight: 500;
}

.mobile-floating-menu a:hover {
  background: rgba(31, 111, 255, 0.07);
  color: #11203b;
}

.nav-whatsapp:hover{
  color: #11203b !important;
}

.mobile-floating-menu .mobile-cta {
  margin-top: 6px;
  justify-content: center;
  background: linear-gradient(135deg, #1f6fff 0%, #11c4a0 100%);
  color: #ffffff;
  font-weight: 600;
}

/* =========================
   HERO FULL-WIDTH BACKGROUND
   ========================= */

.hero-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, #f7fafc 0%, #eef5fb 52%, #edf8f4 100%);
}

/* Image background desktop only */
.hero-bg-media {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: url("/static/onpage/img/hero-noova-professionnelle.png");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  transform: scale(1.01);
}

/* Overlay pour lisibilité + harmonie colorielle */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(247, 250, 252, 0.96) 0%,
      rgba(247, 250, 252, 0.92) 18%,
      rgba(241, 246, 251, 0.78) 38%,
      rgba(237, 248, 244, 0) 60%,
      rgba(237, 248, 244, 0) 100%
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(17, 196, 160, 0) 100%
    );
}

/* voile très léger pour douceur */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 28%, rgba(31, 111, 255, 0.08), transparent 30%),
    radial-gradient(circle at 72% 18%, rgba(17, 196, 160, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 32, 59, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #1a4ea8;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-title {
  max-width: 580px;
  margin: 0 0 18px;
  color: #11203b;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.hero-title span{
  color: #5776af
}

.hero-description {
  max-width: 560px;
  margin: 0 0 28px;
  color: #52627d;
  font-size: 1.04rem;
  line-height: 1.72;
}

.hero-countries {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: -8px 0 28px;
}

.country-flag {
  position: relative;
  width: 50px;
  height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: 0 10px 22px rgba(15, 35, 75, 0.045);

  cursor: default;
  overflow: visible;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.country-flag img {
  width: 35px;
  height: 35px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(17, 32, 59, 0.12);
}

.country-flag:hover,
.country-flag:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(31, 111, 255, 0.18);
  box-shadow: 0 14px 28px rgba(15, 35, 75, 0.09);
  outline: none;
}

.country-flag::after {
  content: attr(data-country);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(4px);

  padding: 7px 10px;
  border-radius: 999px;

  background: rgba(17, 32, 59, 0.92);
  color: #ffffff;

  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  box-shadow: 0 12px 26px rgba(15, 35, 75, 0.18);

  transition:
    opacity 160ms ease,
    visibility 160ms ease,
    transform 160ms ease;
}

.country-flag::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  transform: translateX(-50%);

  border-width: 6px 6px 0 6px;
  border-style: solid;
  border-color: rgba(17, 32, 59, 0.92) transparent transparent transparent;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 160ms ease,
    visibility 160ms ease;
}

.country-flag:hover::after,
.country-flag:hover::before,
.country-flag:focus-visible::after,
.country-flag:focus-visible::before {
  opacity: 1;
  visibility: visible;
}

.country-flag:hover::after,
.country-flag:focus-visible::after {
  transform: translateX(-50%) translateY(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: 0 10px 24px rgba(15, 35, 75, 0.05);
  color: #52627d;
  font-size: 0.88rem;
  font-weight: 500;
}

.floating-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  padding: 14px 16px;
  color: var(--text);
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
  animation: floatCard 4s ease-in-out infinite;
}

.floating-card strong {
  display: block;
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.floating-card span {
  color: var(--text-soft);
  display: block;
}

.floating-card-top {
  top: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.floating-card-bottom {
  right: 18px;
  bottom: 18px;
}

.steps-grid,
.benefits-grid {
  display: grid;
  gap: 18px;
}

.step-card,
.benefit-card,
.recover-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.step-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.steps-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step-card {
  text-align: center;
  border-radius: 22px;
  padding: 24px;
  min-height: 220px;
  border: 1px solid #8080806b;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(31, 111, 255, 0.1);
  color: var(--primary-dark);
  font-weight: 700;
  margin:auto;
  margin-bottom: 20px;
}

.step-badge img{
  width: 100%;
}

.step-card h3,
.benefit-card h3 {
  font-size: 1.08rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.step-card p,
.benefit-card p {
  color: var(--text-soft);
  font-size: 0.97rem;
}

/* =========================
   COUNTERS ON IMAGE BACKGROUND
   ========================= */

.counter-section {
  /*position: relative;*/
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0;

  background-image:
    linear-gradient(
      135deg,
      rgba(17, 32, 59, 0.86) 0%,
      rgba(17, 32, 59, 0.72) 42%,
      rgba(10, 95, 118, 0.66) 100%
    ),
    url("/static/onpage/img/counters-bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 18% 22%, rgba(31, 111, 255, 0.32), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(17, 196, 160, 0.28), transparent 32%);
}

.counter-overlay {
  /*position: absolute;*/
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0%,
      rgba(17, 32, 59, 0.14) 100%
    );
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.counter-container {
  position: relative;
  z-index: 2;
}

.counter-intro {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
  color: #ffffff;
}

.counter-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 16px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.counter-intro h2 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
  font-weight: 760;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 980px;
  margin: 0 auto;

  border-radius: 30px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.counter-item {
  position: relative;
  min-height: 190px;
  padding: 38px 28px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  color: #ffffff;
}

.counter-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 0;
  width: 1px;
  height: calc(100% - 56px);
  background: rgba(255, 255, 255, 0.18);
}

.counter-number {
  margin-bottom: 12px;

  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.95;
  /*letter-spacing: -0.06em;*/
  font-weight: 800;

  background: linear-gradient(135deg, #ffffff 0%, #d9fff6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.counter-item p {
  max-width: 210px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

/* =========================
   TRIAL / SUBSCRIPTION SECTION
   ========================= */

.trial-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 0;
  background:
    radial-gradient(circle at 14% 20%, rgba(31, 111, 255, 0.12), transparent 30%),
    radial-gradient(circle at 84% 72%, rgba(17, 196, 160, 0.13), transparent 34%),
    linear-gradient(180deg, #f8fbfd 0%, #edf6fb 100%);
}

.trial-bg-shape {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.75;
}

.trial-bg-shape-one {
  width: 320px;
  height: 320px;
  left: -120px;
  top: 70px;
  background: rgba(31, 111, 255, 0.12);
}

.trial-bg-shape-two {
  width: 260px;
  height: 260px;
  right: -90px;
  bottom: 40px;
  background: rgba(17, 196, 160, 0.14);
}

.trial-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 390px;
  gap: 34px;
  align-items: center;

  padding: 42px;
  border-radius: 36px;

  background:
    linear-gradient(135deg, rgba(17, 32, 59, 0.96) 0%, rgba(18, 64, 128, 0.94) 54%, rgba(10, 143, 145, 0.92) 100%);

  box-shadow:
    0 32px 80px rgba(15, 35, 75, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);

  overflow: hidden;
}

.trial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.13), transparent 26%),
    radial-gradient(circle at 76% 30%, rgba(17, 196, 160, 0.22), transparent 30%);
  pointer-events: none;
}

.trial-content,
.trial-offer {
  position: relative;
  z-index: 1;
}

.trial-content {
  max-width: 680px;
  color: #ffffff;
}

.trial-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 20px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);

  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trial-content h2 {
  max-width: 660px;
  margin: 0 0 18px;

  font-size: clamp(2rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.trial-description {
  max-width: 620px;
  margin: 0 0 30px;

  color: rgba(255, 255, 255, 0.78);
  font-size: 1.03rem;
  line-height: 1.72;
}

.trial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trial-highlights span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);

  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 500;

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trial-offer {
  padding: 28px;
  border-radius: 30px;

  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.62);

  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  color: #11203b;
}

.trial-offer-top {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(17, 32, 59, 0.08);
}

.trial-offer-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 16px;

  border-radius: 999px;
  background: rgba(17, 196, 160, 0.11);
  color: #087d6b;

  font-size: 0.74rem;
  font-weight: 700;
}

.trial-offer h3 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.trial-days {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.trial-days strong {
  font-size: 4.5rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
  color: #1f6fff;
}

.trial-days span {
  color: #52627d;
  font-size: 1rem;
  font-weight: 600;
  padding-bottom: 6px;
}

.trial-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 20px;

  color: #52627d;
  font-size: 0.95rem;
}

.trial-price strong {
  color: #11a98d;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.trial-price-reference {
  flex-basis: 100%;
  margin-top: -2px;

  color: #7b8798;
  font-size: 0.78rem;
  font-weight: 600;
}

.trial-price-reference s {
  color: #6b7280;
  text-decoration-color: rgba(239, 68, 68, 0.74);
  text-decoration-thickness: 2px;
}

.trial-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.trial-list li {
  position: relative;
  padding-left: 26px;

  color: #52627d;
  font-size: 0.93rem;
  line-height: 1.45;
}

.trial-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;

  width: 13px;
  height: 13px;
  border-radius: 999px;

  background:
    radial-gradient(circle at center, #ffffff 0 28%, transparent 31%),
    linear-gradient(135deg, #1f6fff 0%, #11c4a0 100%);
}

.trial-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 52px;
  padding: 0 22px;

  border-radius: 999px;
  background: linear-gradient(135deg, #1f6fff 0%, #2d3433 100%);
  color: #ffffff;

  font-size: 0.92rem;
  font-weight: 700;

  box-shadow: 0 16px 32px rgba(31, 111, 255, 0.24);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.trial-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(31, 111, 255, 0.30);
}

.trial-note {
  margin: 14px 0 0;
  color: #6b7890;
  font-size: 0.82rem;
  text-align: center;
}

.benefits-grid {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-card {
  border-radius: 22px;
  padding: 24px;
  min-height: 180px;
  transition: transform var(--transition), box-shadow var(--transition);
}

/* =========================
   FAQ SECTION
   ========================= */

.faq-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  padding: 30px 0;
  background:
    linear-gradient(180deg, #f8fbfd 0%, #eef5fb 100%);
}

.faq-section-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 18%, rgba(31, 111, 255, 0.10), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(17, 196, 160, 0.12), transparent 30%);
  pointer-events: none;
}

.faq-wrapper {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.faq-content {
  max-width: 720px;
}

.faq-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 18px;

  border-radius: 999px;
  background: rgba(31, 111, 255, 0.08);
  border: 1px solid rgba(31, 111, 255, 0.10);

  color: #1a4ea8;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.faq-title {
  margin: 0 0 14px;
  color: #11203b;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 760;
}

.faq-intro {
  max-width: 620px;
  margin: 0 0 28px;
  color: #52627d;
  font-size: 1rem;
  line-height: 1.72;
}

.faq-accordion {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: 0 14px 34px rgba(15, 35, 75, 0.05);
  overflow: hidden;
  transition:
    box-shadow 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.faq-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(15, 35, 75, 0.08);
}

.faq-item.is-open {
  border-color: rgba(31, 111, 255, 0.14);
  box-shadow: 0 20px 42px rgba(15, 35, 75, 0.08);
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  color: #11203b;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 14px;

  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  color: #11203b;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
}

.faq-question span:last-child {
  flex: 1;
}

.faq-chevron {
  width: 34px;
  height: 34px;
  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background: rgba(31, 111, 255, 0.08);
  border: 1px solid rgba(31, 111, 255, 0.10);

  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.faq-chevron::before {
  content: "";
  width: 8px;
  height: 8px;

  border-right: 2px solid #1f6fff;
  border-bottom: 2px solid #1f6fff;

  transform: translateY(-2px) rotate(45deg);
  transition: transform 220ms ease;
}

/* Question ouverte : pointe vers le haut */
.faq-item.is-open .faq-chevron {
  background: linear-gradient(135deg, #1f6fff 0%, #11c4a0 100%);
  border-color: transparent;
}

.faq-item.is-open .faq-chevron::before {
  border-color: #ffffff;
  transform: translateY(2px) rotate(225deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 260ms ease,
    opacity 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
  opacity: 1;
}

.faq-answer p {
  margin: 0;
  padding: 0 22px 20px 50px;
  color: #52627d;
  font-size: 0.94rem;
  line-height: 1.7;
}

.faq-more {
  margin-top: 24px;
}

.faq-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;

  border-radius: 999px;
  background: linear-gradient(135deg, #1f6fff 0%, #2d3433 100%);
  color: #ffffff;

  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(31, 111, 255, 0.20);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.faq-more-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(31, 111, 255, 0.26);
}

.faq-visual {
  display: flex;
  justify-content: center;
}

.faq-image-card {
  width: 100%;
  max-width: 500px;
  border-radius: 34px;
  overflow: hidden;

  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.10) 0%, rgba(17, 196, 160, 0.14) 100%);
  border: 1px solid rgba(17, 32, 59, 0.06);
  box-shadow: 0 28px 70px rgba(15, 35, 75, 0.10);
}

.faq-image-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* =========================
   RECOVER ACCOUNT CTA SECTION
   ========================= */

.recover-link-section {
  position: relative;
  width: 100%;
  overflow: visible;
  isolation: isolate;
  padding: 110px 0 140px;
  background-image: url("/static/onpage/img/recover-account-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.recover-link-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(10, 23, 47, 0.82) 0%,
      rgba(17, 32, 59, 0.72) 35%,
      rgba(8, 96, 107, 0.64) 100%
    );
}

.recover-link-container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.recover-link-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.recover-link-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.recover-link-title {
  max-width: 840px;
  margin: 0 auto 16px;
  font-size: 40px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 780;
}

.recover-link-description {
  max-width: 720px;
  margin: 0 auto 34px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1rem;
  line-height: 1.72;
}

.recover-link-form {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  max-width: 920px;
  margin: 0 auto;
  padding: 12px;

  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.recover-country-select,
.recover-phone-field {
  position: relative;
}

.recover-country-trigger,
.recover-phone-field input,
.recover-submit-btn {
  min-height: 45px;
  border-radius: 18px;
}

.recover-country-trigger {
  width: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 32, 59, 0.08);
  color: #11203b;
  cursor: pointer;
}

.recover-country-current {
  display: flex;
  align-items: center;
  gap: 10px;
}

.recover-country-current img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.recover-country-current-text {
  font-size: 0.95rem;
  font-weight: 600;
}

.recover-country-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #52627d;
  border-bottom: 2px solid #52627d;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
  flex-shrink: 0;
}

.recover-country-select.is-open .recover-country-chevron {
  transform: rotate(225deg) translateY(2px);
}

.recover-country-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  display: none;
  padding: 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: 0 22px 44px rgba(15, 35, 75, 0.14);
  z-index: 20;
}

.recover-country-select.is-open .recover-country-menu {
  display: grid;
  gap: 4px;
}

.recover-country-option {
  width: 100%;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #11203b;
  cursor: pointer;
  text-align: left;
}

.recover-country-option img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
}

.recover-country-option span {
  font-size: 0.92rem;
  color: #33425c;
}

.recover-country-option strong {
  font-size: 0.9rem;
  color: #52627d;
}

.recover-country-option:hover,
.recover-country-option.is-active {
  background: rgba(31, 111, 255, 0.07);
}

.recover-phone-field input {
  width: 100%;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 32, 59, 0.08);
  color: #11203b;
  font-size: 0.95rem;
  outline: none;
}

.recover-phone-field input::placeholder {
  color: #7b879d;
}

.recover-submit-btn {
  padding: 0 22px;
  border: 0;
  background: linear-gradient(135deg, #1f6fff 0%, #2d3433 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(31, 111, 255, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.recover-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(31, 111, 255, 0.30);
}

.recover-link-content,
.recover-link-form,
.recover-country-select {
  overflow: visible;
}

.recover-country-select {
  z-index: 50;
}

.recover-country-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  max-height: 340px;
  overflow-y: auto;

  display: none;
  padding: 8px;
  border-radius: 20px;

  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 32, 59, 0.08);
  box-shadow: 0 22px 44px rgba(15, 35, 75, 0.14);

  z-index: 100;
}

.recover-country-select.is-open .recover-country-menu {
  display: grid;
  gap: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   MINIMAL FOOTER
   ========================= */

.minimal-footer {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(17, 32, 59, 0.08);
}

.minimal-footer-inner {
  width: min(100% - 40px, 1180px);
  min-height: 68px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.minimal-footer-left {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.minimal-footer-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.minimal-footer-logo img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.minimal-footer-copy {
  margin: 0;
  color: #6b7890;
  font-size: 0.78rem;
  line-height: 1.4;
  white-space: nowrap;
}

.minimal-footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  flex-wrap: wrap;
}

.minimal-footer-links a {
  color: #52627d;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  transition: color 180ms ease;
}

.minimal-footer-links a:hover {
  color: #11203b;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 1100px) {
  .hero-section {
    min-height: 660px;
    padding: 112px 0 76px;
  }

  .hero-content {
    max-width: 560px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }


}

@media (max-width: 980px) {
  .trial-card {
    grid-template-columns: 1fr;
    padding: 34px;
  }

  .trial-offer {
    max-width: 520px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .faq-content {
    max-width: 100%;
  }

  .faq-visual {
    order: 2;
  }

  .faq-image-card {
    max-width: 560px;
  }

  .recover-link-form {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .recover-submit-btn {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .nav-whatsapp {
    font-size: 0.74rem;
  }

  .nav-whatsapp-icon {
    width: 16px;
    height: 16px;
  }

  .floating-nav {
    width: min(100%, 720px);
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 0.74rem;
  }

  .nav-cta {
    padding: 0 14px;
  }

  .counter-section {
    padding: 76px 0;
  }

  .counter-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .counter-item {
    min-height: 150px;
    padding: 30px 24px;
  }

  .counter-item:not(:last-child)::after {
    top: auto;
    right: 28px;
    bottom: 0;
    width: calc(100% - 56px);
    height: 1px;
  }

  .steps-grid,
  .benefits-grid{
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .hero-section {
    min-height: auto;
    padding: 108px 0 60px;
    background:
      linear-gradient(135deg, #f8fbfd 0%, #eef5fb 58%, #edf8f4 100%);
  }

  /* l'image background disparaît sur petits écrans */
  .hero-bg-media {
    display: none;
  }

  .hero-bg-overlay {
    background:
      linear-gradient(135deg, rgba(248, 251, 253, 1) 0%, rgba(238, 245, 251, 1) 58%, rgba(237, 248, 244, 1) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-description {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .minimal-footer-inner {
    min-height: auto;
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .minimal-footer-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .minimal-footer-copy {
    white-space: normal;
  }

  .minimal-footer-links {
    justify-content: flex-start;
    gap: 14px 20px;
  }
}

@media (max-width: 640px) {
  .site-header {
    z-index: 999;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-floating-menu {
    display: none;
    position: relative;
    z-index: 1000;
  }

  .mobile-floating-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .site-header {
    top: 8px;
    padding: 8px 0;
  }

  .floating-nav {
    width: 100%;
    min-height: 56px;
    max-height: 65px;
    padding: 8px 9px 8px 13px;
  }

  .nav-brand img {
    height: 40px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .mobile-floating-menu.is-open {
    display: grid;
    gap: 4px;
  }

  .trial-section {
    padding: 68px 0;
  }

  .trial-card {
    padding: 24px;
    border-radius: 28px;
  }

  .trial-content h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.05;
  }

  .trial-description {
    font-size: 0.96rem;
    line-height: 1.68;
  }

  .trial-highlights {
    flex-direction: column;
    align-items: stretch;
  }

  .trial-highlights span {
    width: 100%;
    justify-content: center;
  }

  .trial-offer {
    padding: 24px;
    border-radius: 24px;
  }

  .trial-days strong {
    font-size: 4rem;
  }

  .faq-section {
    padding: 30px 0;
  }

  .faq-wrapper {
    width: min(100% - 26px, 1240px);
  }

  .faq-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .faq-intro {
    font-size: 0.96rem;
  }

  .faq-question {
    padding: 17px 18px;
    gap: 12px;
    font-size: 0.93rem;
  }

  .faq-chevron {
    width: 31px;
    height: 31px;
  }

  .faq-answer p {
    padding: 0 18px 18px 61px;
    font-size: 0.9rem;
  }

  .faq-image-card {
    border-radius: 24px;
  }

  .recover-link-section {
    padding: 80px 0 130px;
    overflow: visible;
  }

  .recover-link-container {
    width: min(100% - 26px, 1160px);
  }

  .recover-link-title {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
  }

  .recover-link-description {
    font-size: 0.95rem;
  }

  .recover-link-form {
    padding: 10px;
    border-radius: 22px;
  }

  .recover-country-trigger,
  .recover-phone-field input,
  .recover-submit-btn {
    min-height: 54px;
    border-radius: 16px;
  }

  .minimal-footer-inner {
    width: min(100% - 26px, 1180px);
    padding: 24px 0 22px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;

    text-align: center;
  }

  /*
    Permet de réordonner logo, liens et copyright
    sans modifier le HTML desktop.
  */
  .minimal-footer-left {
    display: contents;
  }

  .minimal-footer-logo {
    order: 1;
    justify-content: center;
  }

  .minimal-footer-logo img {
    height: 36px;
  }

  .minimal-footer-links {
    order: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 11px;

    width: 100%;
    text-align: center;
  }

  .minimal-footer-links a {
    white-space: normal;
    text-align: center;
    font-size: 0.8rem;
  }

  .minimal-footer-copy {
    order: 3;

    margin-top: 4px;
    white-space: normal;
    text-align: center;
    font-size: 0.76rem;
    color: #7b879d;
  }

  .minimal-footer-inner {
    align-items: center;
    text-align: center;
  }

  .minimal-footer-links {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .minimal-footer-links a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, var(--container));
  }

  .header-inner {
    min-height: 78px;
  }

  .brand img {
    height: 48px;
  }

  .section {
    padding: 34px 0;
  }

  .btn,
  .btn-large {
    width: 100%;
  }

  .nav-brand img {
    height: 40px;
  }

  .floating-nav {
    min-height: 54px;
    padding-left: 11px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    padding: 98px 0 50px;
  }

  .hero-container {
    width: min(100% - 26px, 1180px);
  }

  .hero-eyebrow {
    font-size: 0.78rem;
    min-height: 36px;
    padding: 0 12px;
    margin-bottom: 16px;
  }

   .hero-countries {
    gap: 8px;
    margin: -6px 0 24px;
  }

 .country-flag {
    width: 38px;
    height: 38px;
  }

  .country-flag img {
    width: 22px;
    height: 22px;
  }

  .country-flag::after {
    font-size: 0.72rem;
    padding: 6px 9px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-meta {
    gap: 10px;
  }

  .hero-chip {
    font-size: 0.82rem;
    min-height: 36px;
    padding: 0 12px;
  }

  .counter-section {
    padding: 62px 0;
    background-image:
      linear-gradient(
        135deg,
        rgba(17, 32, 59, 0.94) 0%,
        rgba(10, 95, 118, 0.88) 100%
      );
  }

  .counter-intro {
    margin-bottom: 32px;
  }

  .counter-intro h2 {
    font-size: clamp(1.55rem, 7vw, 2.1rem);
  }

  .counter-grid {
    border-radius: 24px;
  }

  .counter-number {
    font-size: clamp(2.6rem, 14vw, 4rem);
  }

  .step-card,
  .benefit-card
  {
    padding: 20px;
  }

  .floating-card {
    font-size: 0.84rem;
    padding: 12px 14px;
  }

  .floating-card-top {
    top: 12px;
    left: 12px;
  }

  .floating-card-bottom {
    right: 12px;
    bottom: 12px;
  }

   .minimal-footer-inner {
    width: min(100% - 26px, 1180px);
  }

  .minimal-footer-logo img {
    height: 34px;
  }

  .minimal-footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* Account recovery feedback */
.recover-form-message {
  display: block;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.recover-form-message[hidden] {
  display: none;
}

.recover-form-message.is-success {
  color: #065f46;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.recover-form-message.is-error {
  color: #991b1b;
  background: #fef2f2;
  border: 1px solid #fecaca;
}




/* Hero overlay interaction fix */
.hero-bg-media,
.hero-bg-overlay,
.hero-section::before,
.hero-section::after {
  pointer-events: none;
}

.hero-container,
.hero-content,
.hero-glass-panel,
.hero-countries,
.country-flag,
.hero-actions,
.hero-actions a {
  position: relative;
  z-index: 3;
}

/* Counter section stacking fix */
.counter-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.counter-section::before,
.counter-section::after {
  pointer-events: none;
}

.counter-section > .container {
  position: relative;
  z-index: 2;
}

.hero-bg-overlay {
  pointer-events: none;
}

/* =========================================================
   FAQ DEDICATED PAGE
   ========================================================= */

.faq-page {
  min-height: 100vh;
  background: #f6fbfc;
}

.faq-page .public-shell-header {
  position: relative;
  z-index: 20;
}

.faq-page-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 24px 76px;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(4, 42, 58, 0.76), rgba(3, 126, 141, 0.68)),
    url("../img/counters-bg.png");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
}

.faq-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.20), transparent 34%),
    linear-gradient(180deg, rgba(4, 23, 35, 0.08), rgba(4, 23, 35, 0.32));
  pointer-events: none;
}

.faq-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}

.faq-page-kicker {
  margin: 0 0 12px;
  color: #b9f4f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-page-hero h1 {
  margin: 0;
  font-size: clamp(4rem, 13vw, 8.5rem);
  line-height: 0.92;
  font-weight: 900;
}

.faq-page-hero p {
  max-width: 680px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  line-height: 1.8;
}

.faq-page-section {
  padding: 80px 24px 56px;
}

.faq-page-container {
  width: min(980px, 100%);
  margin: 0 auto;
}

.faq-page-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.faq-page-heading h2 {
  margin: 10px 0 16px;
  color: #072f3d;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.faq-page-heading p {
  margin: 0;
  color: #55717b;
  font-size: 1rem;
  line-height: 1.8;
}

.faq-page-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-support-section {
  padding: 36px 24px 88px;
}

.faq-support-card {
  width: min(900px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 56px);
  border: 1px solid rgba(17, 120, 139, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(68, 211, 211, 0.18), transparent 36%),
    #ffffff;
  box-shadow: 0 28px 70px rgba(5, 45, 62, 0.10);
  text-align: center;
}

.faq-support-card h2 {
  margin: 0 0 14px;
  color: #072f3d;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.faq-support-card p {
  max-width: 620px;
  margin: 0 auto 26px;
  color: #55717b;
  line-height: 1.8;
}

.faq-support-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  background: #10b981;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.30);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-support-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(16, 185, 129, 0.38);
}

@media (max-width: 760px) {
  .faq-page-hero {
    min-height: 280px;
    padding: 104px 20px 58px;
    margin-top: -76px;
    background-position: left;
  }

  .faq-page-hero h1 {
    font-size: clamp(3.5rem, 20vw, 5.8rem);
  }

  .faq-page-hero p {
    font-size: 0.95rem;
  }

  .faq-page-section {
    padding: 58px 16px 38px;
  }

  .faq-page-heading {
    margin-bottom: 26px;
  }

  .faq-support-section {
    padding: 28px 16px 64px;
  }

  .faq-support-card {
    border-radius: 26px;
  }

  .faq-support-button {
    width: 100%;
  }
}

/* =========================================================
   FAQ FINAL ADJUSTMENTS
   Dedicated FAQ page + shared FAQ accordions
   ========================================================= */

/* Fixed public floating menu on the dedicated FAQ page */
.faq-page .public-shell-header {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  pointer-events: none;
}

.faq-page .public-shell-header .public-shell-container,
.faq-page .public-shell-header .floating-nav,
.faq-page .public-shell-header .mobile-floating-menu,
.faq-page .public-shell-header .nav-toggle {
  pointer-events: auto;
}

/* Keep the FAQ menu aligned with the one-page proportions */
.faq-page .public-shell-container {
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
}

.faq-page .public-shell-header .floating-nav {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

/* Give the fixed menu enough breathing room above the FAQ hero */
.faq-page .faq-page-hero {
  padding-top: 132px;
}

/* Prevent long answers from being truncated on both FAQ areas */
.faq-item.is-open .faq-answer {
  max-height: none !important;
  height: auto !important;
  overflow: visible !important;
}

.faq-item:not(.is-open) .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
}

/* Keep country flags inside the sentence flow */
.faq-answer .faq-flag-list,
.faq-answer .faq-flag-list-inline {
  display: inline;
  margin: 0 2px;
  vertical-align: baseline;
}

.faq-answer .faq-flag-country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 3px 6px;
  vertical-align: middle;
  white-space: nowrap;
}

.faq-answer .faq-flag-country img {
  width: 17px;
  height: 17px;
  vertical-align: middle;
}

@media (max-width: 760px) {
  .faq-page .public-shell-container {
    width: min(100% - 24px, 1180px);
  }

  .faq-page .faq-page-hero {
    padding-top: 180px;
  }

  .faq-answer .faq-flag-country {
    font-size: 0.92rem;
  }
}
