:root {
  --fe-ink: #1A2332;
  --fe-muted: #5A6678;
  --fe-faint: #8C96A6;
  --fe-paper: #F7F9FC;
  --fe-card: #FFFFFF;
  --fe-sand: #E9EEF6;
  --fe-line: #D9E1ED;
  --fe-navy: #16305C;
  --fe-blue: #1E4FA3;
  --fe-blue-100: #DCE6F7;
  --fe-blue-50: #EFF4FC;
  --fe-cta: #2353B8;
  --fe-cta-dark: #16305C;
  --fe-ok: #1B9E5A;
  --fe-bad: #D43D2A;
  --fe-night: #101F3C;
  --fe-radius: 18px;
  --fe-shadow: 0 10px 30px rgba(16, 48, 92, .08);
  --fe-wrap: 1180px;
}

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

.fe-hidden { display: none !important; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--fe-paper);
  color: var(--fe-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Sora, Inter, system-ui, sans-serif;
  color: inherit;
}

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

img, svg {
  max-width: 100%;
}

.fe-wrap {
  max-width: var(--fe-wrap);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ===== BUTTONS ===== */
.fe-btn,
.wp-element-button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: var(--fe-cta);
  color: #fff;
  box-shadow: 0 8px 22px rgba(35, 83, 184, .30);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  line-height: 1;
  padding: 14px 24px;
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
}

.fe-btn:hover,
.wp-element-button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--fe-cta-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ===== CARDS ===== */
.fe-card {
  background: var(--fe-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  box-shadow: var(--fe-shadow);
}

/* ===== KICKER ===== */
.fe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fe-cta);
  margin-bottom: 14px;
}

.fe-kicker::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--fe-cta);
}

/* ===== HEADER / NAV ===== */
.fe-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--fe-line);
  background: rgba(247, 249, 252, .92);
  backdrop-filter: blur(10px);
}

.fe-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--fe-wrap);
  height: 74px;
  margin-inline: auto;
  padding-inline: 24px;
}

.fe-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: Sora, Inter, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -.02em;
  flex-shrink: 0;
}

.fe-logo strong {
  color: var(--fe-blue);
}

.fe-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.fe-nav-links a {
  font-weight: 600;
  font-size: .87rem;
  color: var(--fe-muted);
  padding: 9px 12px;
  border-radius: 999px;
  transition: all .2s;
  white-space: nowrap;
}

.fe-nav-links a:hover {
  color: var(--fe-blue);
  background: var(--fe-blue-50);
}

.fe-nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.fe-nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: .84rem;
  color: var(--fe-muted);
  background: none;
  border: none;
  padding: 9px 6px;
  cursor: pointer;
  transition: color .2s;
}

.fe-nav-tel:hover {
  color: var(--fe-blue);
}

.fe-nav-account {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--fe-muted);
  transition: .2s;
  flex-shrink: 0;
}

.fe-nav-account:hover {
  color: var(--fe-blue);
  background: var(--fe-blue-50);
}

.fe-nav-cta {
  padding: 11px 22px !important;
  font-size: .87rem !important;
}

/* ===== HAMBURGER ===== */
.fe-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.fe-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fe-ink);
  border-radius: 2px;
  transition: .3s;
}

.fe-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fe-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.fe-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.fe-mobile-menu {
  display: none;
  position: fixed;
  top: 74px;
  left: 0;
  right: 0;
  background: var(--fe-paper);
  border-bottom: 1px solid var(--fe-line);
  padding: 16px 24px;
  z-index: 999;
  box-shadow: 0 14px 30px rgba(16, 48, 92, .12);
}

.fe-mobile-menu.open {
  display: block;
}

.fe-mobile-menu a {
  display: block;
  padding: 13px 0;
  font-weight: 600;
  color: var(--fe-ink);
  border-bottom: 1px solid var(--fe-line);
  font-size: .95rem;
}

.fe-mobile-menu a:last-child {
  border-bottom: none;
  color: var(--fe-cta);
}

/* ===== HERO ===== */
.fe-hero {
  margin-top: 74px;
  padding: 72px 24px 56px;
  position: relative;
}

.fe-hero::before {
  content: '';
  position: absolute;
  top: -220px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 163, .09), transparent 62%);
  pointer-events: none;
}

.fe-hero-inner {
  max-width: var(--fe-wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.fe-hero-agrement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--fe-muted);
  margin-bottom: 18px;
  line-height: 1.4;
}

.fe-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.fe-h1-accent {
  color: var(--fe-blue);
}

.fe-hero-sub {
  font-size: clamp(.95rem, 1.6vw, 1.07rem);
  color: var(--fe-muted);
  max-width: 520px;
  margin-bottom: 26px;
}

.fe-hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.fe-btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--fe-cta);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 17px 32px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(35, 83, 184, .35);
  transition: .2s;
  border: none;
  cursor: pointer;
  font-family: Inter, sans-serif;
}

.fe-btn-hero:hover {
  background: var(--fe-cta-dark);
  transform: translateY(-2px);
}

.fe-hero-rating p {
  font-size: .82rem;
  color: var(--fe-muted);
}

.fe-hero-rating p strong {
  color: var(--fe-ink);
}

/* ===== HERO VISUAL / TRACK CARD ===== */
.fe-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.fe-track-card {
  background: #fff;
  border: 1px solid var(--fe-line);
  border-radius: 24px;
  box-shadow: 0 30px 70px rgba(16, 48, 92, .16);
  padding: 26px;
  width: 100%;
  max-width: 400px;
  position: relative;
}

.fe-track-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.fe-track-head h3 {
  font-size: .98rem;
  font-weight: 700;
}

.fe-track-ref {
  font-size: .76rem;
  color: var(--fe-faint);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.fe-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fe-ok);
  flex-shrink: 0;
}

@keyframes fePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(27, 158, 90, .4); }
  50% { box-shadow: 0 0 0 6px rgba(27, 158, 90, 0); }
}

.fe-live-dot {
  animation: fePulse 2s infinite;
}

.fe-track-step {
  display: flex;
  gap: 14px;
  position: relative;
  padding-bottom: 22px;
}

.fe-track-step:last-child {
  padding-bottom: 0;
}

.fe-track-step::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--fe-line);
}

.fe-track-step:last-child::before {
  display: none;
}

.fe-track-step.ok::before {
  background: var(--fe-blue);
}

.fe-track-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 800;
  z-index: 1;
}

.fe-track-step.ok .fe-track-ico {
  background: var(--fe-blue);
  color: #fff;
}

.fe-track-step.now .fe-track-ico {
  background: #fff;
  border: 2px solid var(--fe-cta);
  color: var(--fe-cta);
}

.fe-track-step.next .fe-track-ico {
  background: var(--fe-sand);
  color: var(--fe-faint);
}

.fe-track-step b {
  display: block;
  font-size: .84rem;
  font-weight: 700;
}

.fe-track-step span {
  font-size: .74rem;
  color: var(--fe-muted);
}

/* ===== STAMP ===== */
.fe-stamp {
  position: absolute;
  top: -38px;
  right: -20px;
  width: 94px;
  height: 94px;
  filter: drop-shadow(0 8px 20px rgba(16, 48, 92, .18));
}

@keyframes feSpin {
  to { transform: rotate(360deg); }
}

.fe-stamp {
  animation: feSpin 18s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .fe-stamp { animation: none; }
}

/* ===== MARQUEE ===== */
.fe-marquee {
  background: var(--fe-navy);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.fe-marquee-track {
  display: inline-block;
}

@keyframes feSlide {
  to { transform: translateX(-50%); }
}

.fe-marquee-track {
  animation: feSlide 28s linear infinite;
}

.fe-marquee span {
  color: rgba(255, 255, 255, .85);
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .04em;
  margin: 0 18px;
}

.fe-marquee em {
  color: var(--fe-cta);
  font-style: normal;
  margin: 0 4px;
}

/* ===== SECTIONS ===== */
.fe-section {
  max-width: var(--fe-wrap);
  margin: 0 auto;
  padding: 88px 24px;
}

.fe-h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.45rem);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 12px;
}

.fe-lead {
  color: var(--fe-muted);
  font-size: 1rem;
  max-width: 580px;
}

/* ===== CONFIGURATEUR ===== */
.fe-config-bg {
  background: var(--fe-sand);
  border-radius: 40px;
  margin: 0 16px;
}

.fe-config-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fe-config-board {
  background: #fff;
  border: 1px solid var(--fe-line);
  border-radius: 28px;
  box-shadow: var(--fe-shadow);
  padding: 34px;
  position: relative;
}

.fe-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 8px;
}

.fe-doc {
  display: block;
  position: relative;
  border: 1.5px solid var(--fe-line);
  border-radius: 20px;
  padding: 24px 20px;
  cursor: pointer;
  transition: .2s;
  background: #fff;
  text-align: left;
  font-family: Inter, sans-serif;
}

.fe-doc:hover {
  border-color: var(--fe-blue);
  transform: translateY(-2px);
}

.fe-doc-ico {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: var(--fe-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fe-doc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 3px;
}

.fe-doc p {
  font-size: .76rem;
  color: var(--fe-muted);
  line-height: 1.45;
  margin-bottom: 10px;
}

.fe-doc-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .84rem;
  font-weight: 700;
  color: var(--fe-cta);
  transition: gap .2s;
}

.fe-doc:hover .fe-doc-go {
  gap: 11px;
}

.fe-cfg-trust {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
  flex-wrap: wrap;
}

.fe-cfg-trust span {
  font-size: .74rem;
  color: var(--fe-faint);
}

/* ===== TIMELINE ===== */
.fe-tl {
  position: relative;
  max-width: 860px;
  margin: 34px auto 0;
}

.fe-tl::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--fe-blue-100), var(--fe-blue), var(--fe-blue-100));
  transform: translateX(-50%);
}

.fe-tl-item {
  position: relative;
  width: 50%;
  padding: 0 46px 20px;
}

.fe-tl-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.fe-tl-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.fe-tl-num {
  position: absolute;
  top: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--fe-blue);
  color: #fff;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid var(--fe-paper);
  box-shadow: 0 6px 16px rgba(30, 79, 163, .3);
}

.fe-tl-item:nth-child(odd) .fe-tl-num {
  right: -22px;
}

.fe-tl-item:nth-child(even) .fe-tl-num {
  left: -22px;
}

.fe-tl-card {
  background: #fff;
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  padding: 20px 22px;
  box-shadow: var(--fe-shadow);
  display: inline-block;
  text-align: left;
}

.fe-tl-card h4 {
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.fe-tl-card p {
  font-size: .84rem;
  color: var(--fe-muted);
  line-height: 1.55;
}

.fe-tl-time {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  color: var(--fe-cta);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

/* ===== BENTO ===== */
.fe-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 16px;
  margin-top: 48px;
}

.fe-tile {
  border-radius: 22px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--fe-line);
  background: #fff;
}

.fe-tile-a {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--fe-navy);
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.fe-tile-a .fe-big {
  font-family: Sora, sans-serif;
  font-size: clamp(3.4rem, 6vw, 5.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}

.fe-tile-a p {
  color: #fff;
  font-size: .92rem;
  max-width: none;
}

.fe-tile-a::after {
  content: '';
  position: absolute;
  top: -70px;
  right: -70px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 34px solid rgba(255, 255, 255, .06);
}

.fe-chip-x {
  position: absolute;
  top: 22px;
  left: 24px;
  background: var(--fe-cta);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: .05em;
}

.fe-tile-b {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(120deg, #fff, var(--fe-blue-50));
}

.fe-tile h3 {
  font-family: Sora, sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fe-tile p {
  font-size: .8rem;
  color: var(--fe-muted);
  line-height: 1.5;
}

.fe-tile-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--fe-blue-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.fe-tile-c, .fe-tile-d {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fe-tile-c .fe-n, .fe-tile-d .fe-n {
  font-family: Sora, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--fe-blue);
  line-height: 1.1;
}

.fe-tile-e {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 18px;
}

.fe-tile-f {
  background: var(--fe-cta);
  color: #fff;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fe-tile-f .fe-n {
  font-family: Sora, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1.1;
}

.fe-tile-f p {
  color: rgba(255, 255, 255, .85);
}

.fe-tile-f .fe-tile-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .16);
  margin-bottom: 8px;
}

.fe-tile-f .fe-tile-ico svg {
  width: 20px;
  height: 20px;
}

.fe-tile-eyebrow {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 3px;
}

.fe-tile-f .fe-n {
  font-size: 2.1rem;
}

.fe-tile-g {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fe-tile-g .fe-n {
  font-family: Sora, sans-serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--fe-blue);
  line-height: 1.1;
}

/* ===== HANDLE (On s'occupe de tout) ===== */
.fe-handle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 46px;
}

.fe-handle-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--fe-line);
  border-radius: 16px;
  padding: 20px;
}

.fe-handle-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--fe-blue-100);
  color: var(--fe-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
}

.fe-handle-item b {
  font-family: Sora, sans-serif;
  font-size: .95rem;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
}

.fe-handle-item p {
  font-size: .82rem;
  color: var(--fe-muted);
  line-height: 1.5;
}

/* ===== CTA FINAL ===== */
.fe-cta-final {
  background: linear-gradient(135deg, var(--fe-navy), var(--fe-blue));
  color: #fff;
  padding: 88px 24px;
  text-align: center;
  border-radius: 40px;
  margin: 0 16px 16px;
  position: relative;
  overflow: hidden;
}

.fe-cta-final::before {
  content: '';
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, .05);
  pointer-events: none;
}

.fe-cta-final h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.02em;
  position: relative;
}

.fe-cta-final p {
  opacity: .88;
  font-size: 1.02rem;
  margin: 0 auto 38px;
  max-width: 520px;
  position: relative;
}

.fe-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.fe-cta-primary {
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fe-cta);
  color: #fff !important;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .25);
}

.fe-cta-primary:hover {
  background: var(--fe-cta-dark);
  transform: translateY(-1px);
}

/* ===== STICKY CTA ===== */
#feStickyCta {
  display: none;
  position: fixed;
  bottom: 14px;
  left: 16px;
  right: 16px;
  z-index: 998;
  pointer-events: none;
}

#feStickyCta .fe-sticky-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  background: var(--fe-night);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: 0 16px 40px rgba(16, 48, 92, .35);
  pointer-events: auto;
}

#feStickyCta .fe-sticky-text {
  color: #fff;
  line-height: 1.25;
}

#feStickyCta .fe-sticky-text b {
  display: block;
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: .9rem;
}

#feStickyCta .fe-sticky-text small {
  display: block;
  font-size: .76rem;
  color: rgba(255, 255, 255, .6);
}

.fe-sticky-btn {
  padding: 11px 22px;
  background: var(--fe-cta);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: .86rem;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
  flex-shrink: 0;
}

.fe-sticky-btn:hover {
  background: var(--fe-cta-dark);
}

/* ===== CONTACT MODAL ===== */
.fe-cm-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(16, 31, 60, .55);
  backdrop-filter: blur(3px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.fe-cm-overlay.open {
  display: flex;
}

@keyframes feCmFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.fe-cm-overlay.open {
  animation: feCmFade .2s ease;
}

.fe-cm-box {
  background: #fff;
  border-radius: 22px;
  max-width: 540px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(16, 31, 60, .4);
}

@keyframes feCmRise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fe-cm-box {
  animation: feCmRise .25s ease;
}

.fe-cm-head {
  background: var(--fe-navy);
  color: #fff;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fe-cm-head svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fe-cm-head h3 {
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  flex: 1;
}

.fe-cm-close {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: .2s;
  line-height: 1;
}

.fe-cm-close:hover {
  background: rgba(255, 255, 255, .28);
}

.fe-cm-body {
  padding: 28px 24px 26px;
  text-align: center;
}

.fe-cm-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px solid var(--fe-blue-100);
  border-radius: 14px;
  padding: 16px;
  font-family: Sora, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--fe-blue);
  letter-spacing: .02em;
  transition: .2s;
}

.fe-cm-num:hover {
  border-color: var(--fe-blue);
  background: var(--fe-blue-50);
}

.fe-cm-num svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fe-cm-free {
  margin-top: 12px;
  font-size: .8rem;
  color: var(--fe-faint);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fe-cm-hours {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--fe-line);
  font-size: .95rem;
  color: var(--fe-muted);
  line-height: 1.6;
}

.fe-cm-hours strong {
  color: var(--fe-ink);
}

/* ===== FOOTER ===== */
.fe-footer {
  background: var(--fe-night);
  color: rgba(255, 255, 255, .72);
  padding: 56px 24px 28px;
}

.fe-footer__inner {
  max-width: var(--fe-wrap);
  margin-inline: auto;
}

.fe-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.fe-footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.fe-footer-logo-text {
  font-family: Sora, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
}

.fe-footer-logo-text strong {
  color: #8FB4F2;
}

.fe-footer-desc {
  font-size: .82rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.fe-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}

.fe-footer-col h4 {
  color: #fff;
  font-weight: 700;
  font-size: .84rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.fe-footer-col ul {
  list-style: none;
  display: grid;
  gap: 9px;
}

.fe-footer-col ul a,
.fe-footer-col ul li {
  font-size: .83rem;
  color: rgba(255, 255, 255, .58);
  transition: color .2s;
}

.fe-footer-col ul a:hover {
  color: #8FB4F2;
}

.fe-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .74rem;
  color: rgba(255, 255, 255, .42);
}

/* ===== REMOVE OPTION BUTTON ===== */
.option-remove-btn {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 2px 10px;
  border: 1px solid var(--fe-bad);
  border-radius: 999px;
  background: transparent;
  color: var(--fe-bad);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.4;
  text-decoration: none;
  vertical-align: middle;
}

.option-remove-btn:hover {
  background: var(--fe-bad);
  color: #fff;
}

.option-remove-btn.is-loading {
  cursor: progress;
  opacity: .65;
}

/* ===== FORM INPUTS ===== */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-Input,
.input-text {
  border: 1.5px solid var(--fe-line);
  border-radius: 12px;
  background: #fff;
  color: var(--fe-ink);
  font-family: Inter, system-ui, sans-serif;
  font-size: .92rem;
  padding: 12px 14px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus,
.woocommerce-Input:focus,
.input-text:focus {
  border-color: var(--fe-blue);
  box-shadow: 0 0 0 4px rgba(30, 79, 163, .12);
  outline: none;
}

/* ===== SCROLL ANIMATIONS ===== */
.fe-fade {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}

.fe-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== PAGE HEAD ===== */
.fe-page-head {
  margin-top: 42px;
  background: var(--fe-sand);
  border-bottom: 1px solid var(--fe-line);
  padding: 52px 24px 44px;
}
.fe-page-head-inner {
  max-width: 800px;
  margin: 0 auto;
}
.fe-crumb {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fe-cta);
  margin-bottom: 10px;
}
.fe-page-head h1 {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.fe-lede {
  color: var(--fe-muted);
  margin-top: 12px;
  font-size: .96rem;
  max-width: 560px;
}
.fe-maj-chip {
  display: inline-block;
  margin-top: 10px;
  font-size: .74rem;
  font-weight: 600;
  color: var(--fe-muted);
  background: var(--fe-blue-50);
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid var(--fe-blue-100);
}

/* ===== LEGAL CONTENT ===== */
.fe-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}
.fe-legal h2 {
  font-family: Sora, sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  margin: 44px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.01em;
}
.fe-legal h2::before {
  content: '';
  width: 18px;
  height: 4px;
  border-radius: 2px;
  background: var(--fe-cta);
  flex-shrink: 0;
}
.fe-legal h2:first-child { margin-top: 0; }
.fe-legal h3 {
  font-family: Sora, sans-serif;
  font-size: .98rem;
  font-weight: 700;
  margin: 24px 0 10px;
}
.fe-legal p {
  margin-bottom: 14px;
  font-size: .93rem;
  line-height: 1.75;
}
.fe-legal ul {
  margin: 0 0 16px 22px;
  font-size: .93rem;
  line-height: 1.7;
}
.fe-legal ul li { margin-bottom: 7px; }
.fe-legal strong { font-weight: 700; }
.fe-legal a { color: var(--fe-blue); text-decoration: underline; }
.fe-legal table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 16px 0 24px;
  font-size: .9rem;
  border: 1px solid var(--fe-line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--fe-shadow);
}
.fe-legal table th {
  background: var(--fe-blue-50);
  font-family: Sora, sans-serif;
  font-weight: 700;
  color: var(--fe-navy);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--fe-line);
}
.fe-legal table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--fe-line);
  background: #fff;
}
.fe-legal table tr:last-child td { border-bottom: none; }
.fe-legal table td:last-child {
  font-family: Sora, sans-serif;
  font-weight: 700;
  color: var(--fe-blue);
  white-space: nowrap;
}
.fe-legal-card {
  background: var(--fe-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  box-shadow: var(--fe-shadow);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.fe-legal-card p { margin-bottom: 0; }

/* ===== CONTACT PAGE ===== */
.fe-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}
.fe-contact-grid .fe-info-card a { color: var(--fe-blue); }
.fe-info-card {
  background: var(--fe-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  box-shadow: var(--fe-shadow);
  padding: 26px 28px;
}
.fe-info-card p { margin-bottom: 12px; }
.fe-info-card p:last-child { margin-bottom: 0; }
.fe-info-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fe-blue-100);
  color: var(--fe-navy);
  font-weight: 700;
  font-size: .8rem;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.fe-panel {
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  padding: 28px;
  margin-bottom: 20px;
  background: var(--fe-card);
  box-shadow: var(--fe-shadow);
}
.fe-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.fe-grid2.fe-grid1 { grid-template-columns: 1fr; }
.fe-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fe-field label {
  font-weight: 600;
  font-size: .86rem;
}
.fe-opt-lbl {
  font-weight: 400;
  color: var(--fe-faint);
  font-size: .78rem;
}
.fe-req { color: var(--fe-cta); }
.fe-field input,
.fe-field select,
.fe-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--fe-line);
  border-radius: 12px;
  font-family: Inter, sans-serif;
  font-size: .92rem;
  color: var(--fe-ink);
  background: #fff;
  transition: .2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.fe-field input:focus,
.fe-field select:focus,
.fe-field textarea:focus {
  outline: none;
  border-color: var(--fe-blue);
  box-shadow: 0 0 0 4px rgba(30, 79, 163, .12);
}
.fe-field textarea {
  resize: vertical;
  min-height: 130px;
}
.fe-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235A6678' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.fe-hint {
  font-size: .76rem;
  color: var(--fe-faint);
  margin-top: 4px;
  line-height: 1.4;
}
.fe-consent {
  border: 1px solid var(--fe-line);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 20px;
  background: var(--fe-card);
}
.fe-consent label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1.55;
}
.fe-consent input[type=checkbox] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--fe-blue);
}
.fe-consent a {
  color: var(--fe-blue);
  text-decoration: underline;
}
.fe-btn-go {
  width: 100%;
  padding: 15px 22px;
  background: var(--fe-cta);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: Inter, sans-serif;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  transition: .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(35, 83, 184, .3);
}
.fe-btn-go:hover {
  background: var(--fe-cta-dark);
  transform: translateY(-1px);
}
.fe-form-trust {
  text-align: center;
  margin-top: 12px;
  font-size: .77rem;
  color: var(--fe-faint);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.fe-confirmation {
  display: none;
  background: var(--fe-blue-50);
  border: 1px solid var(--fe-blue-100);
  border-radius: var(--fe-radius);
  padding: 22px 26px;
  margin-top: 20px;
  font-size: .93rem;
  color: var(--fe-navy);
  font-weight: 600;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.fe-qa {
  border: 1px solid var(--fe-line);
  border-radius: 16px;
  overflow: hidden;
  background: var(--fe-card);
  margin-bottom: 12px;
}
.fe-qa-q {
  padding: 18px 22px;
  font-weight: 600;
  font-size: .93rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  user-select: none;
  transition: background .2s;
}
.fe-qa-q:hover { background: var(--fe-blue-50); }
.fe-qa-q::after {
  content: '';
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--fe-blue);
  border-bottom: 2px solid var(--fe-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
  transition: transform .3s;
  margin-top: -4px;
}
.fe-qa.open .fe-qa-q::after {
  transform: rotate(225deg);
  margin-top: 4px;
}
.fe-qa.open .fe-qa-q { background: var(--fe-blue-50); }
.fe-qa-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s;
  padding: 0 22px;
  color: var(--fe-muted);
  font-size: .87rem;
  line-height: 1.7;
}
.fe-qa.open .fe-qa-a {
  max-height: 320px;
  padding: 0 22px 18px;
}
.fe-faq-cols {
  columns: 2;
  column-gap: 16px;
  margin-top: 46px;
}
.fe-fq-cta {
  max-width: 820px;
  margin: 0 auto 60px;
  padding: 0 24px;
}
.fe-fq-cta-box {
  background: var(--fe-navy);
  color: #fff;
  border-radius: 22px;
  padding: 34px;
  text-align: center;
}
.fe-fq-cta-box h2 {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.fe-fq-cta-box p {
  opacity: .85;
  font-size: .95rem;
  margin-bottom: 22px;
}
.fe-fq-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.fe-fq-btn-primary,
.fe-fq-btn-ghost {
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fe-fq-btn-primary {
  background: var(--fe-cta);
  color: #fff;
}
.fe-fq-btn-primary:hover { background: #3D6FC4; }
.fe-fq-btn-ghost {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
}
.fe-fq-btn-ghost:hover { background: rgba(255, 255, 255, .2); }

/* ===== CASES GRID ===== */
.fe-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}
.fe-case {
  display: block;
  background: #fff;
  border: 1px solid var(--fe-line);
  border-radius: 16px;
  padding: 22px;
  transition: .2s;
}
.fe-case:hover {
  border-color: var(--fe-blue);
  transform: translateY(-2px);
  box-shadow: var(--fe-shadow);
}
.fe-case h3 {
  font-family: Sora, sans-serif;
  font-size: .97rem;
  font-weight: 700;
  margin-bottom: 5px;
}
.fe-case p {
  font-size: .82rem;
  color: var(--fe-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.fe-case-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--fe-cta);
  transition: gap .2s;
}
.fe-case:hover .fe-case-go { gap: 11px; }

/* ===== MON COMPTE =====
   Public login/register layout only.
   Logged-in dashboard layout is handled in woocommerce.css.
   This prevents the public two-column login/register template from affecting
   WooCommerce My Account dashboard on desktop. */

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-acc,
body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.wp-block-columns {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 44px 24px 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  box-sizing: border-box;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.wp-block-columns {
  display: grid !important;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.wp-block-columns > .wp-block-column,
body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-acc > .wp-block-column {
  flex: none !important;
  flex-basis: auto !important;
  min-width: 0;
  width: 100%;
  margin: 0 !important;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-login {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register {
  grid-template-columns: minmax(0, 520fr) minmax(0, 370fr);
  align-items: start;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register > .wp-block-column:first-child {
  min-height: 664px;
}

body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register > .wp-block-column.fe-alt,
body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register .fe-acard.fe-alt {
  min-height: 478px;
}

.fe-acard {
  background: var(--fe-card);
  border: 1px solid var(--fe-line);
  border-radius: var(--fe-radius);
  box-shadow: var(--fe-shadow);
  padding: 30px;
}

.fe-acard.fe-alt {
  background: var(--fe-navy);
  color: #fff;
  border: none;
}

.fe-acard.fe-alt .fe-sub { color: rgba(255, 255, 255, .78); }
.fe-acard.fe-alt label { color: rgba(255, 255, 255, .85); }
.fe-acard.fe-alt input {
  background: rgba(255, 255, 255, .95);
  border-color: transparent;
  color: var(--fe-ink);
}
.fe-acard.fe-alt .fe-note {
  color: rgba(255, 255, 255, .6);
  border-top-color: rgba(255, 255, 255, .15);
}
.fe-acard.fe-alt .fe-note strong {
  color: inherit;
  font-weight: 700;
}

.fe-acc-tabs {
  display: flex;
  gap: 6px;
  background: var(--fe-sand);
  border-radius: 999px;
  padding: 5px;
  margin: 0 0 20px;
}

.fe-acc-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: .87rem;
  line-height: 1.2;
  color: var(--fe-muted);
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}

.fe-acc-tab.active,
.fe-acc-tab[aria-selected="true"] {
  background: #fff;
  color: var(--fe-navy);
  box-shadow: 0 2px 8px rgba(16, 48, 92, .1);
}

.fe-acard h2 {
  font-size: 1.15rem;
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 6px;
}

.fe-sub {
  font-size: .88rem;
  color: var(--fe-muted);
  line-height: 1.55;
  margin: 0 0 22px;
}

.fe-account-public .fe-field {
  margin: 0 0 16px;
}

.fe-account-public .fe-field label {
  font-size: .85rem;
  line-height: 1.35;
  margin: 0;
}

.fe-frow,
.fe-field-group {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.fe-frow > *,
.fe-field-group > * {
  min-width: 0;
}

.fe-btn-acc-primary,
.fe-btn-acc-ghost {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 999px;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.fe-btn-acc-primary {
  background: var(--fe-cta);
  color: #fff;
  box-shadow: 0 8px 22px rgba(35, 83, 184, .3);
}

.fe-btn-acc-primary:hover {
  background: var(--fe-cta-dark);
  transform: translateY(-1px);
}

.fe-btn-acc-ghost {
  background: #fff;
  color: var(--fe-blue);
  border: 1.5px solid var(--fe-blue);
}

.fe-btn-acc-ghost:hover {
  background: var(--fe-blue-50);
}

.fe-mini {
  display: block;
  text-align: center;
  font-size: .82rem;
  color: var(--fe-blue);
  margin-top: 14px;
}

.fe-mini:hover {
  text-decoration: underline;
}

.fe-note {
  font-size: .8rem;
  color: var(--fe-faint);
  line-height: 1.5;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--fe-line);
}

.fe-acc-switch,
.fe-login-switch {
  text-align: center;
  font-size: .85rem;
  color: var(--fe-muted);
  line-height: 1.5;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--fe-line);
}

.fe-acc-switch a,
.fe-login-switch a {
  color: var(--fe-blue);
  font-weight: 700;
  text-decoration: underline;
}

.fe-acc-secure {
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 0 24px;
  text-align: center;
  font-size: .82rem;
  color: var(--fe-faint);
}

body.woocommerce-account:not(.logged-in) .fe-page-head {
  margin-top: 74px;
  padding: 60px 24px 36px !important;
  text-align: center;
  background: linear-gradient(180deg, var(--fe-sand), var(--fe-paper)) !important;
  border-bottom: 0;
}

body.woocommerce-account:not(.logged-in) .fe-page-head .fe-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fe-cta);
}

body.woocommerce-account:not(.logged-in) .fe-page-head h1 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem) !important;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15;
}

body.woocommerce-account:not(.logged-in) .fe-page-head p {
  max-width: 520px;
  margin: 0 auto;
  color: var(--fe-muted) !important;
  font-size: 1rem !important;
  line-height: 1.65;
}

@media (max-width: 768px) {
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-acc,
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.wp-block-columns,
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-login,
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register {
    grid-template-columns: 1fr;
    padding: 32px 16px 60px;
  }

  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register > .wp-block-column:first-child,
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register > .wp-block-column.fe-alt,
  body.woocommerce-account:not(.logged-in):not(.fe-account-loggedin) .fe-account-public.fe-state-register .fe-acard.fe-alt {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .fe-frow,
  .fe-field-group {
    grid-template-columns: 1fr;
  }

  .fe-acard {
    padding: 24px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .fe-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .fe-hero-visual {
    margin-top: 10px;
  }

  .fe-stamp {
    top: -30px;
    right: 0;
  }

  .fe-bento {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 34px;
  }

  .fe-tile {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .fe-tile-a {
    min-height: auto;
    justify-content: flex-start;
  }

  .fe-tile-a .fe-chip-x {
    position: static;
    align-self: flex-start;
    margin-bottom: 14px;
  }

  .fe-tile-a .fe-big {
    font-size: 3.4rem;
  }

  .fe-footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .fe-footer-brand {
    grid-column: 1 / -1;
  }

  .fe-doc-grid {
    grid-template-columns: 1fr;
  }

  .fe-faq-cols {
    columns: 1;
  }
}

@media (max-width: 768px) {
  .fe-nav-links,
  .fe-nav-tel,
  .fe-nav-account,
  .fe-nav-cta {
    display: none;
  }

  .fe-hamburger {
    display: flex;
  }

  .fe-hero {
    padding: 48px 20px 48px;
  }

  .fe-section {
    padding: 60px 20px;
  }

  .fe-config-bg {
    border-radius: 28px;
    margin: 0 10px;
  }

  .fe-config-board {
    padding: 22px 16px;
  }

  .fe-tl::before {
    left: 18px;
  }

  .fe-tl-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 20px 52px;
  }

  .fe-tl-item .fe-tl-num {
    left: -4px !important;
    right: auto !important;
    width: 40px;
    height: 40px;
  }

  .fe-handle {
    grid-template-columns: 1fr;
  }

  .fe-footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .fe-footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .fe-cta-btns {
    flex-direction: column;
    align-items: center;
  }

  .fe-cta-final {
    border-radius: 28px;
    margin: 0 10px 10px;
  }

  .fe-page-head {
    padding: 40px 20px 34px;
  }

  .fe-legal {
    padding: 36px 20px 56px;
  }

  .fe-grid2 {
    grid-template-columns: 1fr;
  }

  .fe-contact-grid {
    grid-template-columns: 1fr;
  }

  .fe-panel {
    padding: 20px 16px;
  }

  .fe-cases {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fe-nav-tel,
  .fe-nav-account,
  .fe-nav-cta {
    display: none;
  }
}

@media (max-width: 480px) {
  .fe-hero h1 {
    font-size: 1.8rem;
  }

  .fe-stamp {
    display: none;
  }
}

@media (max-width: 480px) {
  .fe-cm-num {
    font-size: 1.35rem;
  }
}

@media (max-width: 480px) {
  .fe-page-head h1 {
    font-size: 1.45rem;
  }

  .fe-legal h2 {
    font-size: 1.05rem;
  }

  .fe-legal table {
    font-size: .8rem;
  }

  .fe-legal table th,
  .fe-legal table td {
    padding: 9px 10px;
  }

  .fe-legal-card {
    padding: 18px 16px;
  }

  .fe-info-card {
    padding: 20px 18px;
  }

  .fe-panel {
    padding: 18px 14px;
  }

  .fe-frow {
    grid-template-columns: 1fr;
  }
}
