/* ==========================================================================
   EPO POMPE - Complete Mobile-First Design System
   Version: 1.0.0
   ========================================================================== */

/* ==========================================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Dark theme backgrounds */
  --pompe-fond-dark: #0d1a26;
  --pompe-fond-medium: #132535;
  --pompe-fond-light: #1a3347;
  --pompe-fond-card: #15293a;

  /* Light colors */
  --pompe-blanc: #FFFFFF;
  --pompe-blanc-casse: #F5F7F9;
  --pompe-gris-fond: #f8fafb;

  /* Petrol palette */
  --pompe-petrol-dark: #0d1a26;
  --pompe-petrol: #1a3347;
  --pompe-petrol-light: #2a4a5e;
  --pompe-petrol-accent: #3d6b7a;
  --pompe-cyan-accent: #4a9ba8;

  /* Gold palette */
  --pompe-gold-gradient: linear-gradient(135deg, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
  --pompe-gold: #BF953F;
  --pompe-gold-light: #d4af37;

  /* Text colors */
  --pompe-text-primary: rgba(255, 255, 255, 0.95);
  --pompe-text-secondary: rgba(255, 255, 255, 0.65);
  --pompe-text-dark: #1a1a2e;
  --pompe-text-dark-secondary: #555;

  /* Borders */
  --pompe-border-subtle: rgba(255, 255, 255, 0.06);
  --pompe-border-medium: rgba(255, 255, 255, 0.12);
  --pompe-border-gold: rgba(191, 149, 63, 0.3);

  /* Fonts */
  --pompe-font-display: 'Montserrat', sans-serif;
  --pompe-font-body: 'Inter', sans-serif;

  /* Transitions */
  --pompe-transition: 0.3s ease;

  /* Shadows */
  --pompe-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  --pompe-shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.4);
}


/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--pompe-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--pompe-text-primary);
  background-color: var(--pompe-fond-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--pompe-transition);
}

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

.pompe-h1-hero {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 2.2rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--pompe-text-primary);
  margin-bottom: 1rem;
}

.pompe-h1-hero strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-h1 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--pompe-text-primary);
  margin-bottom: 1rem;
}

.pompe-h1 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-h2 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pompe-text-primary);
  margin-bottom: 0.75rem;
}

.pompe-h2 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-h3 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--pompe-text-primary);
  margin-bottom: 0.5rem;
}

.pompe-h3 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-h4 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.1rem;
  line-height: 1.35;
  color: var(--pompe-text-primary);
  margin-bottom: 0.5rem;
}

.pompe-h4 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-p {
  font-family: var(--pompe-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--pompe-text-secondary);
  margin-bottom: 1rem;
}

.pompe-lead {
  font-family: var(--pompe-font-body);
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--pompe-text-secondary);
  margin-bottom: 1.25rem;
}

.pompe-p-large {
  font-family: var(--pompe-font-body);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--pompe-text-secondary);
  margin-bottom: 1rem;
}

.pompe-p-readable {
  font-family: var(--pompe-font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--pompe-text-secondary);
  max-width: 700px;
  margin-bottom: 1rem;
}

/* Gold gradient text utility */
.gold {
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-text-gold {
  color: var(--pompe-gold);
}

.pompe-text-cyan {
  color: var(--pompe-cyan-accent);
}

/* Title line decoration */
.pompe-title-line {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 1rem;
}

.pompe-title-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--pompe-gold-gradient);
  border-radius: 2px;
}

.pompe-title-line.pompe-text-center::after,
.pompe-text-center .pompe-title-line::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Title tag */
.pompe-title-tag {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  margin-bottom: 0.75rem;
}

.pompe-tag {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  padding: 4px 12px;
  border: 1px solid var(--pompe-border-gold);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

/* Tablet breakpoint: 600px */
@media (min-width: 600px) {
  .pompe-h1-hero {
    font-size: 2.8rem;
  }

  .pompe-h1 {
    font-size: 2.2rem;
  }

  .pompe-h2 {
    font-size: 1.8rem;
  }

  .pompe-h3 {
    font-size: 1.4rem;
  }

  .pompe-h4 {
    font-size: 1.2rem;
  }

  .pompe-lead {
    font-size: 1.2rem;
  }

  .pompe-p-large {
    font-size: 1.25rem;
  }
}

/* Desktop breakpoint: 1024px */
@media (min-width: 1024px) {
  .pompe-h1-hero {
    font-size: 3.5rem;
  }

  .pompe-h1 {
    font-size: 2.8rem;
  }

  .pompe-h2 {
    font-size: 2.2rem;
  }

  .pompe-h3 {
    font-size: 1.6rem;
  }

  .pompe-h4 {
    font-size: 1.3rem;
  }

  .pompe-lead {
    font-size: 1.25rem;
  }
}


/* ==========================================================================
   4. LAYOUT
   ========================================================================== */

.pompe-container {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pompe-container-sm {
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pompe-container-lg {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.pompe-section {
  padding: 60px 0;
}

.pompe-section-sm {
  padding: 40px 0;
}

.pompe-section-header {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.pompe-section-tag {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  margin-bottom: 12px;
}

.pompe-section-line {
  position: relative;
  padding-bottom: 16px;
}

.pompe-section-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--pompe-gold-gradient);
  border-radius: 2px;
}

/* Background classes */
.pompe-bg-dark {
  background-color: var(--pompe-fond-dark);
  color: var(--pompe-text-primary);
}

.pompe-bg-medium {
  background-color: var(--pompe-fond-medium);
  color: var(--pompe-text-primary);
}

.pompe-bg-light {
  background-color: var(--pompe-fond-light);
  color: var(--pompe-text-primary);
}

.pompe-bg-white {
  background-color: var(--pompe-blanc);
  color: var(--pompe-text-dark);
}

.pompe-bg-luxe {
  background: linear-gradient(135deg, var(--pompe-fond-dark) 0%, var(--pompe-fond-medium) 50%, var(--pompe-petrol) 100%);
  color: var(--pompe-text-primary);
}

.pompe-bg-luxe-h {
  background: linear-gradient(90deg, var(--pompe-fond-dark) 0%, var(--pompe-fond-medium) 50%, var(--pompe-petrol) 100%);
  color: var(--pompe-text-primary);
}

@media (min-width: 600px) {
  .pompe-section {
    padding: 80px 0;
  }

  .pompe-section-sm {
    padding: 50px 0;
  }

  .pompe-section-header {
    margin-bottom: 50px;
  }
}

@media (min-width: 1024px) {
  .pompe-section {
    padding: 100px 0;
  }

  .pompe-section-sm {
    padding: 60px 0;
  }

  .pompe-section-header {
    margin-bottom: 60px;
  }
}


/* ==========================================================================
   5. GRID
   ========================================================================== */

.pompe-grid {
  display: grid;
  gap: 24px;
}

.pompe-grid-2 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.pompe-grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.pompe-grid-4 {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .pompe-grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (min-width: 900px) {
  .pompe-grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (min-width: 1024px) {
  .pompe-grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Flexbox utilities */
.pompe-flex {
  display: flex;
}

.pompe-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pompe-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}


/* ==========================================================================
   6. TOPBAR
   ========================================================================== */

.pompe-topbar {
  background: var(--pompe-fond-dark);
  border-bottom: 1px solid var(--pompe-border-subtle);
  padding: 6px 0;
  font-size: 0.8rem;
  color: var(--pompe-text-secondary);
  display: none;
}

.pompe-topbar .pompe-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.pompe-topbar-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--pompe-text-secondary);
  font-size: 0.8rem;
}

.pompe-topbar-address svg {
  flex-shrink: 0;
  color: var(--pompe-gold);
}

.pompe-topbar-phone {
  font-weight: 600;
  font-size: 0.8rem;
}

.pompe-topbar-phone .pompe-topbar-link {
  color: var(--pompe-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--pompe-transition);
}

.pompe-topbar-phone .pompe-topbar-link:hover {
  color: var(--pompe-gold-light);
}

@media (min-width: 600px) {
  .pompe-topbar {
    display: block;
  }
}


/* ==========================================================================
   7. HEADER
   ========================================================================== */

.pompe-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--pompe-fond-dark);
  border-bottom: 1px solid var(--pompe-border-subtle);
  z-index: 1000;
  transition: background-color var(--pompe-transition), box-shadow var(--pompe-transition);
}

.pompe-header.pompe-header-scrolled {
  background-color: rgba(13, 26, 38, 0.97);
  box-shadow: var(--pompe-shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.pompe-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.pompe-logo {
  font-family: var(--pompe-font-display);
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--pompe-blanc);
  letter-spacing: -0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.pompe-logo .gold {
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-logo img {
  height: 82px;
  width: auto;
}

.pompe-logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  flex-shrink: 0;
}

.pompe-logo-tagline {
  font-family: var(--pompe-font-display);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pompe-text-secondary);
  margin-top: -16px;
  padding-left: 2px;
  white-space: nowrap;
}

/* Navigation */
.pompe-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--pompe-fond-dark);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px 40px;
  overflow-y: auto;
}

.pompe-nav.active {
  display: flex;
}

.pompe-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  width: 100%;
}

.pompe-nav-list li {
  border-bottom: none;
  position: relative;
}

.pompe-nav-list li + li::before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(191, 149, 63, 0.8) 30%, var(--pompe-gold) 50%, rgba(191, 149, 63, 0.8) 70%, transparent);
  margin: 6px auto;
}

.pompe-nav-list li a {
  display: block;
  padding: 16px 20px;
  color: var(--pompe-text-primary);
  font-family: var(--pompe-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--pompe-transition);
}

.pompe-nav-list li a:hover,
.pompe-nav-list li a.active {
  color: var(--pompe-gold);
}

/* Mobile phone button (visible < 1024px) */
.pompe-header-phone-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--pompe-gold);
  text-decoration: none;
  border-radius: 50%;
  transition: background-color var(--pompe-transition), color var(--pompe-transition);
}

.pompe-header-phone-mobile:hover {
  background-color: rgba(191, 149, 63, 0.1);
  color: var(--pompe-gold-light);
}

/* Body lock when menu open */
body.pompe-menu-open {
  overflow: hidden;
}

/* Hamburger menu toggle */
.pompe-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  gap: 5px;
  position: relative;
  z-index: 10000;
}

.pompe-menu-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--pompe-blanc);
  border-radius: 2px;
  transition: transform var(--pompe-transition), opacity var(--pompe-transition);
}

.pompe-menu-toggle.active .pompe-menu-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.pompe-menu-toggle.active .pompe-menu-toggle-bar:nth-child(2) {
  opacity: 0;
}

.pompe-menu-toggle.active .pompe-menu-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Header right side */
.pompe-header-right {
  display: none;
  align-items: center;
  gap: 16px;
}

.pompe-header-cta {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  padding: 8px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: filter var(--pompe-transition), transform var(--pompe-transition);
}

.pompe-header-cta:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

@media (min-width: 1024px) {
  .pompe-header-inner {
    padding: 14px 30px;
  }

  .pompe-logo {
    font-size: 3.4rem;
  }

  .pompe-logo img {
    height: 96px;
  }

  .pompe-logo-tagline {
    font-size: 0.75rem;
    letter-spacing: 0.18em;
  }

  .pompe-nav {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow-y: visible;
  }

  .pompe-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    text-align: left;
  }

  .pompe-nav-list li {
    border-bottom: none;
    display: flex;
    align-items: center;
  }

  .pompe-nav-list li + li::before {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    margin: 0;
    background: var(--pompe-border-subtle);
    opacity: 1;
    flex-shrink: 0;
  }

  .pompe-nav-list li a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 0.85rem;
    border-radius: 6px;
  }

  .pompe-nav-list li a:hover,
  .pompe-nav-list li a.active {
    background-color: rgba(191, 149, 63, 0.08);
  }

  .pompe-header-phone-mobile {
    display: none;
  }

  .pompe-menu-toggle {
    display: none;
  }

  .pompe-header-right {
    display: flex;
  }
}


/* ==========================================================================
   7b. SUBMENUS (Dropdown / Accordion)
   ========================================================================== */

/* ── Mobile-first base ── */

/* Parent item: flex row so link + toggle sit inline */
.pompe-nav-list > .menu-item-has-children {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pompe-nav-list > .menu-item-has-children > a {
  padding-right: 4px;
}

/* Toggle button (chevron) */
.pompe-submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--pompe-text-secondary);
  cursor: pointer;
  padding: 16px 8px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.pompe-submenu-toggle:hover {
  color: var(--pompe-gold);
}

.pompe-submenu-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
  color: var(--pompe-gold);
}

/* Sub-menu list — hidden by default */
.pompe-nav-list .sub-menu {
  display: none;
  list-style: none;
  padding: 0 0 8px;
  margin: 0;
  flex-basis: 100%;
}

.pompe-nav-list .sub-menu.pompe-submenu-open {
  display: block;
}

/* Remove gold separator inside submenus */
.pompe-nav-list .sub-menu li + li::before {
  display: none !important;
}

/* Sub-menu links: smaller, not uppercase */
.pompe-nav-list .sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--pompe-text-secondary);
}

.pompe-nav-list .sub-menu li a:hover,
.pompe-nav-list .sub-menu li a.active {
  color: var(--pompe-gold);
}

/* Active / current page highlighting */
.pompe-nav-list li.current-menu-item > a,
.pompe-nav-list li.current-menu-ancestor > a,
.pompe-nav-list li.current-menu-parent > a {
  color: var(--pompe-gold);
}

/* ── Desktop: hover dropdown ── */
@media (min-width: 1024px) {
  .pompe-nav-list > .menu-item-has-children {
    position: relative;
    flex-wrap: nowrap;
  }

  .pompe-nav-list > .menu-item-has-children > a {
    padding-right: 14px;
  }

  /* Hide mobile toggle on desktop, use CSS chevron instead */
  .pompe-submenu-toggle {
    display: none;
  }

  /* Chevron indicator on parent links */
  .pompe-nav-list > .menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-top: 3.5px solid currentColor;
    vertical-align: middle;
    opacity: 0.4;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .pompe-nav-list > .menu-item-has-children:hover > a::after {
    opacity: 1;
    transform: rotate(180deg);
  }

  /* Dropdown panel */
  .pompe-nav-list .sub-menu {
    display: block;
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    min-width: 240px;
    background: var(--pompe-fond-dark);
    border: 1px solid var(--pompe-border-medium);
    border-radius: 10px;
    padding: 8px 0;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    flex-basis: auto;
  }

  /* Small triangle pointer */
  .pompe-nav-list .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 6px;
    background: var(--pompe-fond-dark);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }

  /* Hover bridge (prevents flicker when moving to dropdown) */
  .pompe-nav-list > .menu-item-has-children::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 14px;
    background: transparent;
  }

  /* Show on hover */
  .pompe-nav-list > .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /* Right-align for last items to prevent overflow */
  .pompe-nav-list > .menu-item-has-children:nth-last-child(-n+3) > .sub-menu {
    left: auto;
    right: 0;
    transform: translateY(-4px);
  }

  .pompe-nav-list > .menu-item-has-children:nth-last-child(-n+3):hover > .sub-menu {
    transform: translateY(0);
  }

  .pompe-nav-list > .menu-item-has-children:nth-last-child(-n+3) > .sub-menu::before {
    left: auto;
    right: 24px;
    transform: none;
  }

  /* Dropdown item styles */
  .pompe-nav-list .sub-menu li {
    display: block;
  }

  .pompe-nav-list .sub-menu li a {
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    color: var(--pompe-text-primary);
    border-radius: 0;
  }

  .pompe-nav-list .sub-menu li a:hover {
    background: rgba(191, 149, 63, 0.08);
    color: var(--pompe-gold);
  }

  /* Active state: subtle background on desktop */
  .pompe-nav-list > li.current-menu-item > a,
  .pompe-nav-list > li.current-menu-ancestor > a {
    background-color: rgba(191, 149, 63, 0.08);
  }
}


/* ==========================================================================
   8. BUTTONS
   ========================================================================== */

.pompe-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  background: transparent;
  border: 1px solid var(--pompe-gold);
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--pompe-transition);
  text-decoration: none;
  line-height: 1.4;
}

.pompe-btn:hover {
  background-color: var(--pompe-gold);
  color: var(--pompe-fond-dark);
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
  transform: translateY(-1px);
}

.pompe-btn-gold {
  display: block;
  width: 100%;
  text-align: center;
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--pompe-transition);
  text-decoration: none;
  line-height: 1.4;
}

.pompe-btn-gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(191, 149, 63, 0.4);
  transform: translateY(-1px);
}

.pompe-btn-lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

@media (min-width: 600px) {
  .pompe-btn {
    display: inline-block;
    width: auto;
  }

  .pompe-btn-gold {
    display: inline-block;
    width: auto;
  }
}


/* ==========================================================================
   9. CARDS
   ========================================================================== */

.pompe-card {
  background-color: var(--pompe-fond-card);
  border-radius: 12px;
  border: 1px solid var(--pompe-border-subtle);
  padding: 28px 24px;
  transition: all var(--pompe-transition);
}

.pompe-card:hover {
  box-shadow: var(--pompe-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--pompe-border-medium);
}

.pompe-card-icon {
  margin-bottom: 20px;
}

.pompe-card-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--pompe-gold);
  background: rgba(191, 149, 63, 0.08);
  color: var(--pompe-gold);
  font-size: 1.4rem;
  margin: 0 auto;
}

.pompe-card-icon-circle img,
.pompe-card-icon-circle svg {
  width: 28px;
  height: 28px;
}

.pompe-card-title {
  font-family: var(--pompe-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pompe-text-primary);
  margin-bottom: 10px;
}

.pompe-card-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pompe-text-secondary);
}

/* Horizontal card */
.pompe-card-h {
  background-color: var(--pompe-fond-card);
  border-radius: 12px;
  border: 1px solid var(--pompe-border-subtle);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all var(--pompe-transition);
}

.pompe-card-h:hover {
  box-shadow: var(--pompe-shadow-hover);
  transform: translateY(-2px);
  border-color: var(--pompe-border-medium);
}

.pompe-card-h-number {
  font-family: var(--pompe-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  min-width: 50px;
}

.pompe-card-h-content {
  flex: 1;
}

/* Pricing card */
.pompe-card-pricing {
  background-color: var(--pompe-fond-card);
  border-radius: 16px;
  border: 1px solid var(--pompe-border-subtle);
  overflow: hidden;
  transition: all var(--pompe-transition);
  display: flex;
  flex-direction: column;
}

.pompe-card-pricing:hover {
  box-shadow: var(--pompe-shadow-hover);
  transform: translateY(-4px);
}

.pompe-card-pricing.featured {
  border: 2px solid var(--pompe-gold);
  transform: scale(1.02);
  position: relative;
}

.pompe-card-pricing.featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pompe-pricing-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pompe-gold-gradient);
  color: var(--pompe-fond-dark);
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 0 0 8px 8px;
}

.pompe-pricing-header {
  padding: 32px 24px 24px;
  text-align: center;
  border-bottom: 1px solid var(--pompe-border-subtle);
}

.pompe-pricing-name {
  font-family: var(--pompe-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pompe-text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pompe-pricing-price {
  font-family: var(--pompe-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.pompe-pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  -webkit-text-fill-color: var(--pompe-text-secondary);
}

.pompe-pricing-features {
  padding: 24px;
  flex: 1;
}

.pompe-pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pompe-pricing-features li {
  padding: 8px 0;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pompe-pricing-features li::before {
  content: '\2713';
  color: var(--pompe-cyan-accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pompe-pricing-cta {
  padding: 0 24px 28px;
}

@media (min-width: 900px) {
  .pompe-card-pricing.featured {
    transform: scale(1.05);
  }

  .pompe-card-pricing.featured:hover {
    transform: scale(1.05) translateY(-4px);
  }
}


/* ==========================================================================
   10. FORMS
   ========================================================================== */

.pompe-form-card {
  background-color: var(--pompe-fond-card);
  border: 1px solid var(--pompe-border-subtle);
  border-radius: 16px;
  padding: 28px 24px;
}

.pompe-form-header {
  text-align: center;
  margin-bottom: 28px;
}

.pompe-form-title {
  font-family: var(--pompe-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pompe-text-primary);
  margin-bottom: 8px;
}

.pompe-form-subtitle {
  font-size: 0.95rem;
  color: var(--pompe-text-secondary);
}

.pompe-form-group {
  margin-bottom: 20px;
}

.pompe-form-label {
  display: block;
  font-family: var(--pompe-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pompe-text-secondary);
  margin-bottom: 8px;
}

.pompe-form-input {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-family: var(--pompe-font-body);
  font-size: 0.95rem;
  color: var(--pompe-text-primary);
  background-color: var(--pompe-fond-dark);
  border: 1px solid var(--pompe-border-medium);
  border-radius: 8px;
  outline: none;
  transition: border-color var(--pompe-transition), box-shadow var(--pompe-transition);
}

.pompe-form-input::placeholder {
  color: var(--pompe-text-secondary);
  opacity: 0.7;
}

.pompe-form-input:focus {
  border-color: var(--pompe-gold);
  box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.15);
}

textarea.pompe-form-input {
  resize: vertical;
  min-height: 120px;
}

select.pompe-form-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23BF953F' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.pompe-form-submit {
  display: block;
  width: 100%;
  padding: 14px 28px;
  font-family: var(--pompe-font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--pompe-transition);
}

.pompe-form-submit:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 15px rgba(191, 149, 63, 0.3);
  transform: translateY(-1px);
}

.pompe-form-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--pompe-border-subtle);
}

.pompe-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--pompe-text-secondary);
}

.pompe-trust-item svg,
.pompe-trust-item img {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

@media (min-width: 600px) {
  .pompe-form-card {
    padding: 36px 32px;
  }
}


/* ==========================================================================
   11. TABLES
   ========================================================================== */

.pompe-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid var(--pompe-border-subtle);
}

.pompe-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.pompe-table th {
  font-family: var(--pompe-font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--pompe-text-secondary);
  background-color: var(--pompe-fond-medium);
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--pompe-border-medium);
  white-space: nowrap;
}

.pompe-table td {
  padding: 12px 16px;
  color: var(--pompe-text-primary);
  border-bottom: 1px solid var(--pompe-border-subtle);
  vertical-align: middle;
}

.pompe-table tbody tr {
  transition: background-color var(--pompe-transition);
}

.pompe-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.03);
}

.pompe-table tbody tr:last-child td {
  border-bottom: none;
}

/* Highlight column */
.pompe-table th.highlight {
  background-color: rgba(191, 149, 63, 0.12);
  color: var(--pompe-gold);
  border-bottom-color: var(--pompe-border-gold);
}

.pompe-table td.highlight {
  background-color: rgba(191, 149, 63, 0.05);
}

/* Table check/cross icons */
.pompe-table-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(74, 155, 168, 0.15);
  color: var(--pompe-cyan-accent);
  font-size: 0.7rem;
  font-weight: 700;
}

.pompe-table-check::after {
  content: '\2713';
}

.pompe-table-check.gold {
  background-color: rgba(191, 149, 63, 0.15);
  color: var(--pompe-gold);
}

.pompe-table-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--pompe-text-secondary);
  font-size: 0.75rem;
}

.pompe-table-cross::after {
  content: '\2717';
}


/* ==========================================================================
   12. LISTS
   ========================================================================== */

/* Gold diamond bullets */
.pompe-list-gold {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.pompe-list-gold li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pompe-list-gold li::before {
  content: '\25C6';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--pompe-gold);
  font-size: 0.6rem;
  line-height: 1.6;
}

/* Checkmark list */
.pompe-list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.pompe-list-check li {
  position: relative;
  padding: 8px 0 8px 32px;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pompe-list-check li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 155, 168, 0.12);
  color: var(--pompe-cyan-accent);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

/* Numbered list with gold counters */
.pompe-list-numbered {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  counter-reset: pompe-counter;
}

.pompe-list-numbered li {
  position: relative;
  padding: 10px 0 10px 44px;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  counter-increment: pompe-counter;
}

.pompe-list-numbered li::before {
  content: counter(pompe-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 10px;
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 32px;
}

/* Icon list */
.pompe-list-icon {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.pompe-list-icon li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pompe-list-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(191, 149, 63, 0.1);
  border: 1px solid var(--pompe-border-gold);
  color: var(--pompe-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

/* List in bordered box */
.pompe-list-box {
  border: 1px solid var(--pompe-border-subtle);
  border-radius: 12px;
  padding: 20px 24px;
  background-color: var(--pompe-fond-card);
}

.pompe-list-box .pompe-list-gold li,
.pompe-list-box .pompe-list-check li,
.pompe-list-box .pompe-list-numbered li {
  border-bottom: 1px solid var(--pompe-border-subtle);
}

.pompe-list-box .pompe-list-gold li:last-child,
.pompe-list-box .pompe-list-check li:last-child,
.pompe-list-box .pompe-list-numbered li:last-child {
  border-bottom: none;
}


/* ==========================================================================
   13. BADGES & TAGS
   ========================================================================== */

.pompe-badge {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pompe-blanc);
  background-color: var(--pompe-cyan-accent);
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

.pompe-badge-gold {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

.pompe-badge-outline {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pompe-cyan-accent);
  background: transparent;
  border: 1px solid var(--pompe-cyan-accent);
  padding: 4px 10px;
  border-radius: 20px;
  line-height: 1.4;
}

.pompe-tag {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  padding: 4px 12px;
  border: 1px solid var(--pompe-border-gold);
  border-radius: 4px;
}

.pompe-tag-outline {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pompe-text-secondary);
  padding: 4px 12px;
  border: 1px solid var(--pompe-border-medium);
  border-radius: 4px;
}

.pompe-tag-cyan {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pompe-cyan-accent);
  padding: 4px 12px;
  border: 1px solid rgba(74, 155, 168, 0.3);
  border-radius: 4px;
}


/* ==========================================================================
   14. QUOTES
   ========================================================================== */

.pompe-quote {
  position: relative;
  padding: 20px 24px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--pompe-gold);
  background-color: rgba(191, 149, 63, 0.04);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--pompe-text-primary);
  font-size: 1.05rem;
  line-height: 1.75;
}

.pompe-quote p {
  margin-bottom: 0.5rem;
}

.pompe-quote p:last-child {
  margin-bottom: 0;
}

.pompe-quote-author {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--pompe-gold);
  font-weight: 600;
  margin-top: 10px;
}


/* ==========================================================================
   15. HIGHLIGHTS
   ========================================================================== */

.pompe-highlight {
  border-left: 4px solid var(--pompe-gold);
  background-color: rgba(191, 149, 63, 0.06);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.pompe-highlight p {
  color: var(--pompe-text-primary);
  margin-bottom: 0.5rem;
}

.pompe-highlight p:last-child {
  margin-bottom: 0;
}

.pompe-highlight-cyan {
  border-left: 4px solid var(--pompe-cyan-accent);
  background-color: rgba(74, 155, 168, 0.06);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.pompe-highlight-cyan p {
  color: var(--pompe-text-primary);
  margin-bottom: 0.5rem;
}

.pompe-highlight-cyan p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   16. STATS
   ========================================================================== */

.pompe-stat {
  text-align: center;
  padding: 20px 16px;
}

.pompe-stat-number {
  font-family: var(--pompe-font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.pompe-stat-label {
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--pompe-text-secondary);
  letter-spacing: 0.03em;
}

.pompe-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pompe-stat-item {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--pompe-fond-card);
  border: 1px solid var(--pompe-border-subtle);
  border-radius: 12px;
  transition: all var(--pompe-transition);
}

.pompe-stat-item:hover {
  border-color: var(--pompe-border-gold);
  transform: translateY(-2px);
}

@media (min-width: 600px) {
  .pompe-stat-number {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .pompe-stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pompe-stat-number {
    font-size: 3.5rem;
  }
}


/* ==========================================================================
   17. FAQ ACCORDION
   ========================================================================== */

.pompe-faq-item {
  border-bottom: 1px solid var(--pompe-border-subtle);
}

.pompe-faq-item:last-child {
  border-bottom: none;
}

.pompe-faq-toggle {
  display: none;
}

.pompe-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--pompe-font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--pompe-text-primary);
  line-height: 1.4;
  text-align: left;
  transition: color var(--pompe-transition);
  user-select: none;
}

.pompe-faq-question:hover {
  color: var(--pompe-gold);
}

.pompe-faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--pompe-border-medium);
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--pompe-gold);
  flex-shrink: 0;
  transition: all var(--pompe-transition);
}

.pompe-faq-icon::after {
  content: '+';
}

.pompe-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.pompe-faq-answer-inner {
  padding: 0 0 20px 0;
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* When toggle is checked, expand the answer */
.pompe-faq-toggle:checked ~ .pompe-faq-answer {
  max-height: 600px;
}

.pompe-faq-toggle:checked ~ .pompe-faq-question .pompe-faq-icon {
  transform: rotate(45deg);
  background-color: rgba(191, 149, 63, 0.1);
  border-color: var(--pompe-gold);
}

.pompe-faq-toggle:checked ~ .pompe-faq-question {
  color: var(--pompe-gold);
}

@media (min-width: 600px) {
  .pompe-faq-question {
    font-size: 1.1rem;
    padding: 22px 0;
  }
}


/* ==========================================================================
   18. IMAGES
   ========================================================================== */

.pompe-image-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pompe-border-subtle);
  background-color: var(--pompe-fond-card);
  transition: all var(--pompe-transition);
}

.pompe-image-card:hover {
  box-shadow: var(--pompe-shadow-hover);
  transform: translateY(-4px);
}

.pompe-image-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-color: var(--pompe-fond-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pompe-text-secondary);
  font-size: 0.85rem;
}

.pompe-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pompe-image-card-content {
  padding: 20px;
}

.pompe-image-card-title {
  font-family: var(--pompe-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pompe-text-primary);
  margin-bottom: 8px;
}

.pompe-image-card-desc {
  font-size: 0.9rem;
  color: var(--pompe-text-secondary);
  line-height: 1.6;
}

/* Image overlay */
.pompe-image-overlay {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.pompe-image-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pompe-image-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(13, 26, 38, 0.9) 0%, transparent 100%);
  pointer-events: none;
}

.pompe-image-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
  color: var(--pompe-blanc);
}

/* Gallery masonry */
.pompe-gallery-masonry {
  columns: 1;
  column-gap: 16px;
}

.pompe-gallery-masonry > * {
  break-inside: avoid;
  margin-bottom: 16px;
}

@media (min-width: 600px) {
  .pompe-gallery-masonry {
    columns: 2;
  }
}

@media (min-width: 1024px) {
  .pompe-gallery-masonry {
    columns: 3;
  }
}


/* ==========================================================================
   19. HERO
   ========================================================================== */

.pompe-hero {
  position: relative;
  background: linear-gradient(135deg, #0a1520 0%, #0d1a26 40%, #122232 70%, #0d1a26 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Subtle gold radial glow */
.pompe-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(191, 149, 63, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Fine diagonal texture overlay */
.pompe-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.01) 0px,
    rgba(255, 255, 255, 0.01) 1px,
    transparent 1px,
    transparent 40px
  );
  pointer-events: none;
  z-index: 0;
}

.pompe-hero > * {
  position: relative;
  z-index: 1;
}

.pompe-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 30px 20px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

/* Hero content column */
.pompe-hero-content {
  align-self: center;
}

/* Badge */
.pompe-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pompe-blanc);
  margin-bottom: 16px;
}

@keyframes pompe-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(191, 149, 63, 0.4); }
  50% { box-shadow: 0 0 12px 4px rgba(191, 149, 63, 0.15); }
}

.pompe-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--pompe-gold-gradient);
  border-radius: 50%;
  animation: pompe-pulse-dot 2s ease infinite;
}

/* Title */
.pompe-hero-title {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--pompe-blanc);
  margin-bottom: 14px;
}

.pompe-hero-title strong {
  display: block;
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Subtitle */
.pompe-hero-subtitle {
  font-family: var(--pompe-font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--pompe-text-secondary);
  margin-bottom: 20px;
}

/* Price block (from page content) */
.pompe-hero-price-wrap {
  margin-bottom: 28px;
}

.pompe-hero-price {
  display: inline-flex;
  align-items: baseline;
  gap: 15px;
  padding: 18px 28px;
  background: rgba(191, 149, 63, 0.06);
  border: 1px solid rgba(191, 149, 63, 0.25);
  border-radius: 12px;
  transition: border-color 0.3s ease;
}

.pompe-hero-price:hover {
  border-color: rgba(191, 149, 63, 0.5);
}

.pompe-hero-price-label {
  font-family: var(--pompe-font-display);
  font-size: 0.8rem;
  color: var(--pompe-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.pompe-hero-price-value {
  font-family: var(--pompe-font-display);
  font-size: 3rem;
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-hero-price-unit {
  font-size: 1rem;
  color: var(--pompe-text-muted);
}

/* Feature tags */
.pompe-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pompe-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-family: var(--pompe-font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--pompe-text-secondary);
  transition: background-color var(--pompe-transition);
}

.pompe-hero-feature:hover {
  background: rgba(255, 255, 255, 0.12);
}

.pompe-hero-feature::before {
  content: '\2713';
  font-weight: bold;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Form column */
.pompe-hero-form {
  width: 100%;
}

.pompe-hero-form .pompe-estimation-section {
  padding: 0;
}

.pompe-hero-form .pompe-estimation-container {
  max-width: 100%;
}

/* ── Hero responsive ── */
@media (min-width: 600px) {
  .pompe-hero-price {
    gap: 15px;
  }

  .pompe-hero-features {
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  .pompe-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 40px;
  }

  .pompe-hero-subtitle {
    font-size: 1.05rem;
  }
}

/* ── Hero entrance animations ── */
@keyframes pompe-heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pompe-heroFadeRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes pompe-heroFadeLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.pompe-hero-badge {
  animation: pompe-heroFadeLeft 0.6s ease both;
  animation-delay: 0.1s;
}

.pompe-hero-title {
  animation: pompe-heroFadeUp 0.7s ease both;
  animation-delay: 0.2s;
}

.pompe-hero-subtitle {
  animation: pompe-heroFadeUp 0.6s ease both;
  animation-delay: 0.35s;
}

.pompe-hero-price-wrap {
  animation: pompe-heroFadeUp 0.6s ease both;
  animation-delay: 0.45s;
}

.pompe-hero-features {
  animation: pompe-heroFadeUp 0.6s ease both;
  animation-delay: 0.55s;
}

/* Hero single column (no form, e.g. Contact page) */
.pompe-hero-grid--single {
  max-width: 800px;
}

@media (min-width: 1024px) {
  .pompe-hero-grid--single {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 60px 40px;
  }

  .pompe-hero-grid--single .pompe-hero-features {
    justify-content: center;
  }
}

.pompe-hero-form {
  animation: pompe-heroFadeRight 0.7s ease both;
  animation-delay: 0.25s;
}

@media (prefers-reduced-motion: reduce) {
  .pompe-hero-badge,
  .pompe-hero-title,
  .pompe-hero-subtitle,
  .pompe-hero-price-wrap,
  .pompe-hero-features,
  .pompe-hero-form {
    animation: none;
  }
}

/* ── Hero light theme ── */
.pompe-hero.pompe-bg-white {
  background-color: var(--pompe-blanc);
}

.pompe-hero.pompe-bg-white .pompe-hero-badge {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--pompe-text-dark);
}

.pompe-hero.pompe-bg-white .pompe-hero-title {
  color: var(--pompe-text-dark);
}

.pompe-hero.pompe-bg-white .pompe-hero-subtitle {
  color: var(--pompe-text-dark-secondary);
}

.pompe-hero.pompe-bg-white .pompe-hero-price {
  background: rgba(0, 0, 0, 0.03);
  border-color: rgba(0, 0, 0, 0.1);
}

.pompe-hero.pompe-bg-white .pompe-hero-price-label,
.pompe-hero.pompe-bg-white .pompe-hero-price-unit {
  color: var(--pompe-text-dark-secondary);
}

.pompe-hero.pompe-bg-white .pompe-hero-feature {
  background: rgba(0, 0, 0, 0.04);
  color: var(--pompe-text-dark-secondary);
}

.pompe-hero.pompe-bg-white .pompe-hero-feature:hover {
  background: rgba(0, 0, 0, 0.08);
}


/* ==========================================================================
   20. BREADCRUMBS
   ========================================================================== */

.pompe-breadcrumbs {
  padding: 12px 0;
  font-size: 0.85rem;
  color: var(--pompe-text-secondary);
}

.pompe-breadcrumbs a {
  color: var(--pompe-text-secondary);
  transition: color var(--pompe-transition);
}

.pompe-breadcrumbs a:hover {
  color: var(--pompe-gold);
}

.pompe-breadcrumbs span {
  margin: 0 8px;
  opacity: 0.5;
}

.pompe-breadcrumbs .current {
  color: var(--pompe-gold);
}


/* ==========================================================================
   21. FOOTER
   ========================================================================== */

.pompe-footer {
  background-color: var(--pompe-fond-dark);
}

/* --- Footer CTA Band --- */
.pompe-footer-cta {
  background: linear-gradient(135deg, var(--pompe-fond-medium) 0%, var(--pompe-fond-dark) 100%);
  border-top: 1px solid var(--pompe-border-gold);
  border-bottom: 1px solid var(--pompe-border-subtle);
  padding: 40px 0;
}

.pompe-footer-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.pompe-footer-cta-title {
  font-family: var(--pompe-font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--pompe-blanc);
  margin: 0;
}

.pompe-footer-cta-sub {
  color: var(--pompe-text-secondary);
  font-size: 0.95rem;
  margin: 4px 0 0;
}

.pompe-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.pompe-btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid var(--pompe-border-medium);
  border-radius: 6px;
  color: var(--pompe-blanc);
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all var(--pompe-transition);
  background: transparent;
  cursor: pointer;
}

.pompe-btn-outline-light:hover {
  border-color: var(--pompe-gold);
  color: var(--pompe-gold);
  background-color: rgba(191, 149, 63, 0.08);
}

/* --- Footer Main --- */
.pompe-footer-main {
  padding: 48px 0 40px;
}

.pompe-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.pompe-footer-col {
  min-width: 0;
}

/* Logo */
.pompe-footer-logo {
  font-family: var(--pompe-font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--pompe-blanc);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}

.pompe-footer-logo:hover {
  opacity: 0.85;
}

.pompe-footer-logo .gold {
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About text */
.pompe-footer-about {
  color: var(--pompe-text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 320px;
}

/* Social icons */
.pompe-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pompe-footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--pompe-border-medium);
  color: var(--pompe-text-secondary);
  transition: all var(--pompe-transition);
  text-decoration: none;
}

.pompe-footer-social-link:hover {
  color: var(--pompe-gold);
  border-color: var(--pompe-gold);
  background-color: rgba(191, 149, 63, 0.1);
  transform: translateY(-2px);
}

/* Column headings */
.pompe-footer-heading {
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.pompe-footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--pompe-gold);
  border-radius: 1px;
}

/* Footer links */
.pompe-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pompe-footer-links li {
  margin-bottom: 10px;
}

.pompe-footer-links li a {
  color: var(--pompe-text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--pompe-transition), padding-left var(--pompe-transition);
  display: inline-block;
}

.pompe-footer-links li a:hover {
  color: var(--pompe-gold);
  padding-left: 4px;
}

/* Contact list */
.pompe-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pompe-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--pompe-text-secondary);
  line-height: 1.5;
}

.pompe-footer-contact-item a {
  color: var(--pompe-text-secondary);
  text-decoration: none;
  transition: color var(--pompe-transition);
}

.pompe-footer-contact-item a:hover {
  color: var(--pompe-gold);
}

.pompe-footer-contact-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--pompe-gold);
}

.pompe-footer-contact-icon svg {
  width: 16px;
  height: 16px;
}

/* Footer bottom */
.pompe-footer-bottom {
  border-top: 1px solid var(--pompe-border-subtle);
  padding: 20px 0;
}

.pompe-footer-bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.pompe-footer-copy {
  font-size: 0.78rem;
  color: var(--pompe-text-secondary);
}

.pompe-footer-copy a {
  color: var(--pompe-gold);
  text-decoration: none;
}

.pompe-footer-copy a:hover {
  text-decoration: underline;
}

.pompe-footer-legal {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.05em;
}

/* Legacy widget title (keep for widget areas) */
.pompe-footer-widget-title {
  font-family: var(--pompe-font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pompe-gold);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.pompe-footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--pompe-gold);
  border-radius: 1px;
}

/* Legacy footer nav (keep for wp_nav_menu fallback) */
.pompe-footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pompe-footer-nav li {
  margin-bottom: 10px;
}

.pompe-footer-nav li a {
  color: var(--pompe-text-secondary);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--pompe-transition), padding-left var(--pompe-transition);
}

.pompe-footer-nav li a:hover {
  color: var(--pompe-gold);
  padding-left: 4px;
}

/* --- Footer Responsive --- */
@media (min-width: 600px) {
  .pompe-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .pompe-footer-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .pompe-footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .pompe-footer-cta {
    padding: 48px 0;
  }

  .pompe-footer-cta-title {
    font-size: 1.5rem;
  }

  .pompe-footer-main {
    padding: 64px 0 48px;
  }

  .pompe-footer-grid {
    grid-template-columns: 1.6fr 1fr 0.8fr 1.2fr;
    gap: 48px;
  }
}


/* ==========================================================================
   22. PAGINATION
   ========================================================================== */

.pompe-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.pompe-pagination a,
.pompe-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 4px 10px;
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pompe-text-secondary);
  background-color: var(--pompe-fond-card);
  border: 1px solid var(--pompe-border-subtle);
  border-radius: 8px;
  transition: all var(--pompe-transition);
  text-decoration: none;
}

.pompe-pagination a:hover {
  color: var(--pompe-gold);
  border-color: var(--pompe-border-gold);
  background-color: rgba(191, 149, 63, 0.08);
}

.pompe-pagination .current,
.pompe-pagination span.current {
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  border-color: transparent;
}


/* ==========================================================================
   23. ANIMATIONS
   ========================================================================== */

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

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.pompe-animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.pompe-animate-slideInLeft {
  animation: slideInLeft 0.6s ease forwards;
  opacity: 0;
}

.pompe-animate-scaleIn {
  animation: scaleIn 0.5s ease forwards;
  opacity: 0;
}

.pompe-animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

/* Animation delays */
.pompe-delay-1 {
  animation-delay: 0.1s;
}

.pompe-delay-2 {
  animation-delay: 0.2s;
}

.pompe-delay-3 {
  animation-delay: 0.3s;
}

.pompe-delay-4 {
  animation-delay: 0.4s;
}

.pompe-delay-5 {
  animation-delay: 0.5s;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .pompe-animate-fadeInUp,
  .pompe-animate-slideInLeft,
  .pompe-animate-scaleIn,
  .pompe-animate-pulse {
    animation: none;
    opacity: 1;
    transform: none;
  }
}


/* ==========================================================================
   24. UTILITIES
   ========================================================================== */

/* Text alignment */
.pompe-text-center {
  text-align: center;
}

.pompe-text-left {
  text-align: left;
}

.pompe-text-right {
  text-align: right;
}

/* Margin top */
.pompe-mt-sm {
  margin-top: 12px;
}

.pompe-mt-md {
  margin-top: 16px;
}

.pompe-mt-lg {
  margin-top: 24px;
}

.pompe-mt-xl {
  margin-top: 32px;
}

.pompe-mt-2xl {
  margin-top: 36px;
}

.pompe-mt-3xl {
  margin-top: 40px;
}

/* Margin bottom */
.pompe-mb-sm {
  margin-bottom: 12px;
}

.pompe-mb-md {
  margin-bottom: 16px;
}

.pompe-mb-lg {
  margin-bottom: 24px;
}

.pompe-mb-xl {
  margin-bottom: 32px;
}

.pompe-mb-2xl {
  margin-bottom: 36px;
}

.pompe-mb-3xl {
  margin-bottom: 40px;
}

/* Padding vertical */
.pompe-py-sm {
  padding-top: 12px;
  padding-bottom: 12px;
}

.pompe-py-md {
  padding-top: 16px;
  padding-bottom: 16px;
}

.pompe-py-lg {
  padding-top: 24px;
  padding-bottom: 24px;
}

.pompe-py-xl {
  padding-top: 32px;
  padding-bottom: 32px;
}

.pompe-py-2xl {
  padding-top: 36px;
  padding-bottom: 36px;
}

.pompe-py-3xl {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Padding horizontal */
.pompe-px-sm {
  padding-left: 12px;
  padding-right: 12px;
}

.pompe-px-md {
  padding-left: 16px;
  padding-right: 16px;
}

.pompe-px-lg {
  padding-left: 24px;
  padding-right: 24px;
}

.pompe-px-xl {
  padding-left: 32px;
  padding-right: 32px;
}

.pompe-px-2xl {
  padding-left: 36px;
  padding-right: 36px;
}

.pompe-px-3xl {
  padding-left: 40px;
  padding-right: 40px;
}

/* Width utilities */
.pompe-w-full {
  width: 100%;
}

.pompe-max-w-sm {
  max-width: 480px;
}

.pompe-max-w-md {
  max-width: 640px;
}

.pompe-max-w-lg {
  max-width: 960px;
}

/* Display helpers */
.pompe-hidden {
  display: none;
}

.pompe-block {
  display: block;
}

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


/* ==========================================================================
   25. WORDPRESS OVERRIDES
   ========================================================================== */

.pompe-main {
  min-height: 60vh;
  overflow-x: hidden;
}

/* WordPress caption */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.wp-caption img {
  display: block;
  width: 100%;
  height: auto;
}

.wp-caption-text {
  font-size: 0.85rem;
  color: var(--pompe-text-secondary);
  padding: 8px 4px;
  text-align: center;
  font-style: italic;
}

/* WordPress alignment */
.alignleft {
  float: left;
  margin: 0 1.5rem 1rem 0;
  max-width: 50%;
}

.alignright {
  float: right;
  margin: 0 0 1rem 1.5rem;
  max-width: 50%;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

.alignnone {
  margin-bottom: 1.5rem;
}

/* WordPress galleries */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.gallery-item {
  flex: 1 1 calc(50% - 8px);
  max-width: calc(50% - 4px);
}

.gallery-item img {
  border-radius: 6px;
}

/* WordPress page-numbers pagination */
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 4px 10px;
  font-family: var(--pompe-font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pompe-text-secondary);
  background-color: var(--pompe-fond-card);
  border: 1px solid var(--pompe-border-subtle);
  border-radius: 8px;
  text-decoration: none;
  transition: all var(--pompe-transition);
}

.page-numbers:hover {
  color: var(--pompe-gold);
  border-color: var(--pompe-border-gold);
  background-color: rgba(191, 149, 63, 0.08);
}

.page-numbers.current {
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  border-color: transparent;
}

.page-numbers.dots {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.page-numbers.dots:hover {
  background: transparent;
  border-color: transparent;
  color: var(--pompe-text-secondary);
}

/* WordPress block editor overrides */
.wp-block-image {
  margin-bottom: 1.5rem;
}

.wp-block-image img {
  border-radius: 8px;
}

.wp-block-image figcaption {
  font-size: 0.85rem;
  color: var(--pompe-text-secondary);
  text-align: center;
  margin-top: 8px;
}

/* WordPress clearfix */
.entry-content::after {
  content: '';
  display: table;
  clear: both;
}

@media (max-width: 599px) {
  .alignleft,
  .alignright {
    float: none;
    max-width: 100%;
    margin: 0 0 1rem 0;
  }
}


/* ==========================================================================
   26. LIGHT MODE OVERRIDES (.pompe-bg-white context)
   ========================================================================== */

/* Typography in light mode */
.pompe-bg-white .pompe-h1-hero,
.pompe-bg-white .pompe-h1,
.pompe-bg-white .pompe-h2,
.pompe-bg-white .pompe-h3,
.pompe-bg-white .pompe-h4 {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-h1-hero strong,
.pompe-bg-white .pompe-h1 strong,
.pompe-bg-white .pompe-h2 strong,
.pompe-bg-white .pompe-h3 strong,
.pompe-bg-white .pompe-h4 strong {
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pompe-bg-white .pompe-p,
.pompe-bg-white .pompe-lead,
.pompe-bg-white .pompe-p-large,
.pompe-bg-white .pompe-p-readable {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-title-tag,
.pompe-bg-white .pompe-section-tag {
  color: var(--pompe-gold);
}

/* Cards in light mode */
.pompe-bg-white .pompe-card {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pompe-bg-white .pompe-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

.pompe-bg-white .pompe-card-title {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-card-desc {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-card-icon-circle {
  background: rgba(191, 149, 63, 0.06);
}

/* Horizontal cards in light mode */
.pompe-bg-white .pompe-card-h {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-card-h:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.12);
}

/* Pricing cards in light mode */
.pompe-bg-white .pompe-card-pricing {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pompe-bg-white .pompe-card-pricing.featured {
  border-color: var(--pompe-gold);
}

.pompe-bg-white .pompe-pricing-name {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-pricing-header {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-pricing-features li {
  color: var(--pompe-text-dark-secondary);
}

/* Forms in light mode */
.pompe-bg-white .pompe-form-card {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pompe-bg-white .pompe-form-title {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-form-subtitle {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-form-label {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-form-input {
  background-color: var(--pompe-gris-fond);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-form-input::placeholder {
  color: var(--pompe-text-dark-secondary);
  opacity: 0.6;
}

.pompe-bg-white .pompe-form-input:focus {
  border-color: var(--pompe-gold);
  box-shadow: 0 0 0 3px rgba(191, 149, 63, 0.1);
}

.pompe-bg-white .pompe-form-trust {
  border-top-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-trust-item {
  color: var(--pompe-text-dark-secondary);
}

/* Tables in light mode */
.pompe-bg-white .pompe-table-wrapper {
  border-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-table th {
  background-color: var(--pompe-gris-fond);
  color: var(--pompe-text-dark-secondary);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

.pompe-bg-white .pompe-table td {
  color: var(--pompe-text-dark);
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

.pompe-bg-white .pompe-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.pompe-bg-white .pompe-table th.highlight {
  background-color: rgba(191, 149, 63, 0.08);
}

.pompe-bg-white .pompe-table td.highlight {
  background-color: rgba(191, 149, 63, 0.03);
}

/* Lists in light mode */
.pompe-bg-white .pompe-list-gold li,
.pompe-bg-white .pompe-list-check li,
.pompe-bg-white .pompe-list-numbered li,
.pompe-bg-white .pompe-list-icon li {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-list-box {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-list-box .pompe-list-gold li,
.pompe-bg-white .pompe-list-box .pompe-list-check li,
.pompe-bg-white .pompe-list-box .pompe-list-numbered li {
  border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* Quotes in light mode */
.pompe-bg-white .pompe-quote {
  background-color: rgba(191, 149, 63, 0.03);
  color: var(--pompe-text-dark);
}

/* Highlights in light mode */
.pompe-bg-white .pompe-highlight {
  background-color: rgba(191, 149, 63, 0.04);
}

.pompe-bg-white .pompe-highlight p {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-highlight-cyan {
  background-color: rgba(74, 155, 168, 0.04);
}

.pompe-bg-white .pompe-highlight-cyan p {
  color: var(--pompe-text-dark);
}

/* Stats in light mode */
.pompe-bg-white .pompe-stat-label {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-stat-item {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.pompe-bg-white .pompe-stat-item:hover {
  border-color: var(--pompe-border-gold);
}

/* FAQ in light mode */
.pompe-bg-white .pompe-faq-item {
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.pompe-bg-white .pompe-faq-question {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-faq-question:hover {
  color: var(--pompe-gold);
}

.pompe-bg-white .pompe-faq-icon {
  border-color: rgba(0, 0, 0, 0.15);
}

.pompe-bg-white .pompe-faq-answer-inner {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-faq-toggle:checked ~ .pompe-faq-question {
  color: var(--pompe-gold);
}

.pompe-bg-white .pompe-faq-toggle:checked ~ .pompe-faq-question .pompe-faq-icon {
  border-color: var(--pompe-gold);
}

/* Image cards in light mode */
.pompe-bg-white .pompe-image-card {
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pompe-bg-white .pompe-image-card-title {
  color: var(--pompe-text-dark);
}

.pompe-bg-white .pompe-image-card-desc {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-image-placeholder {
  background-color: var(--pompe-gris-fond);
}

/* Buttons in light mode */
.pompe-bg-white .pompe-btn {
  color: var(--pompe-gold);
  border-color: var(--pompe-gold);
}

.pompe-bg-white .pompe-btn:hover {
  background-color: var(--pompe-gold);
  color: var(--pompe-blanc);
}

/* Badges and tags in light mode */
.pompe-bg-white .pompe-tag-outline {
  color: var(--pompe-text-dark-secondary);
  border-color: rgba(0, 0, 0, 0.15);
}

/* Breadcrumbs in light mode */
.pompe-bg-white .pompe-breadcrumbs {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-breadcrumbs a {
  color: var(--pompe-text-dark-secondary);
}

.pompe-bg-white .pompe-breadcrumbs a:hover {
  color: var(--pompe-gold);
}

/* Pagination in light mode */
.pompe-bg-white .pompe-pagination a,
.pompe-bg-white .pompe-pagination span {
  color: var(--pompe-text-dark-secondary);
  background-color: var(--pompe-blanc);
  border-color: rgba(0, 0, 0, 0.1);
}

.pompe-bg-white .pompe-pagination a:hover {
  color: var(--pompe-gold);
  border-color: var(--pompe-border-gold);
  background-color: rgba(191, 149, 63, 0.05);
}

.pompe-bg-white .pompe-pagination .current {
  color: var(--pompe-fond-dark);
  background: var(--pompe-gold-gradient);
  border-color: transparent;
}

/* Section header in light mode */
.pompe-bg-white .pompe-section-line::after {
  background: var(--pompe-gold-gradient);
}

/* Title line in light mode */
.pompe-bg-white .pompe-title-line::after {
  background: var(--pompe-gold-gradient);
}

/* List icon box in light mode */
.pompe-bg-white .pompe-list-icon-box {
  background: rgba(191, 149, 63, 0.06);
  border-color: rgba(191, 149, 63, 0.2);
}

/* Table check/cross in light mode */
.pompe-bg-white .pompe-table-check {
  background-color: rgba(74, 155, 168, 0.1);
}

.pompe-bg-white .pompe-table-check.gold {
  background-color: rgba(191, 149, 63, 0.1);
}

.pompe-bg-white .pompe-table-cross {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--pompe-text-dark-secondary);
}


/* ==========================================================================
   HOMEPAGE: EXPERTISE BLOCKS & EDITORIAL
   ========================================================================== */

/* Image placeholder for expertise sections */
.pompe-expertise-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--pompe-fond-light);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--pompe-border-subtle);
}

.pompe-expertise-image-icon {
  font-size: 3rem;
  opacity: 0.4;
}

.pompe-expertise-image-text {
  font-size: 0.8rem;
  color: var(--pompe-text-secondary);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Expertise text block vertical alignment */
.pompe-expertise-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Alternating grid order on tablet+ */
@media (min-width: 600px) {
  .pompe-expertise-reverse .pompe-expertise-text {
    order: -1;
  }

  .pompe-expertise-image {
    min-height: 350px;
  }
}

/* Highlight box (gold market, key figures) */
.pompe-highlight-box {
  background: var(--pompe-fond-card);
  border-left: 4px solid var(--pompe-gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 24px 0;
}

.pompe-bg-white .pompe-highlight-box {
  background: var(--pompe-gris-fond);
  border-left-color: var(--pompe-gold);
}

.pompe-highlight-box p {
  margin-bottom: 0.5rem;
  color: var(--pompe-text-secondary);
}

.pompe-highlight-box p:last-child {
  margin-bottom: 0;
}

.pompe-bg-white .pompe-highlight-box p {
  color: var(--pompe-text-dark-secondary);
}

/* Section divider for expertise blocks */
.pompe-section-expertise {
  padding: 50px 0;
}

@media (min-width: 600px) {
  .pompe-section-expertise {
    padding: 70px 0;
  }
}

@media (min-width: 1024px) {
  .pompe-section-expertise {
    padding: 80px 0;
  }
}

/* CTA link style (text with arrow) */
.pompe-cta-link {
  display: inline-block;
  font-family: var(--pompe-font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pompe-gold);
  text-decoration: none;
  margin-top: 16px;
  transition: all var(--pompe-transition);
}

.pompe-cta-link:hover {
  color: var(--pompe-gold-light);
  transform: translateX(4px);
}

.pompe-bg-white .pompe-cta-link {
  color: var(--pompe-gold);
}

.pompe-bg-white .pompe-cta-link:hover {
  color: #aa771c;
}

/* ==========================================================================
   RACHAT CONTENT: Editorial styling for WordPress editor content
   ========================================================================== */

/*
 * .pompe-rachat-content wraps the_content() output from the WP editor.
 * Standard HTML tags (h2, h3, p, ul, blockquote, table) get automatic styling
 * so the editor HTML stays clean and simple.
 *
 * Width: 1200px for content (cards, tables, shortcodes).
 * .pompe-editorial inside sections stays at 900px for readable text.
 * N1 pages with .pompe-section break out to full viewport for backgrounds.
 */

.pompe-rachat-content {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* N1 pages: sections break out for full-width backgrounds */
.pompe-rachat-content > .pompe-section {
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  box-sizing: border-box;
}

/* Products grid: 4 columns inside wider editorial container */
@media (min-width: 1024px) {
  .pompe-rachat-content .max-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Sections inside editor content */
.pompe-rachat-content .pompe-section {
  padding: 60px 0;
}

@media (min-width: 600px) {
  .pompe-rachat-content .pompe-section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .pompe-rachat-content .pompe-section {
    padding: 100px 0;
  }
}

/* Editorial text container */
.pompe-rachat-content .pompe-editorial {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Widen editorial when it contains a products grid or shortcode cards */
.pompe-rachat-content .pompe-editorial:has(.max-products-grid) {
  max-width: 1200px;
}

/* H2 inside editor content */
.pompe-rachat-content h2 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--pompe-text-primary);
  margin-bottom: 0.75rem;
  margin-top: 2.5rem;
}

.pompe-rachat-content h2 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 600px) {
  .pompe-rachat-content h2 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .pompe-rachat-content h2 {
    font-size: 2.2rem;
  }
}

/* H3 inside editor content */
.pompe-rachat-content h3 {
  font-family: var(--pompe-font-display);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--pompe-text-primary);
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.pompe-rachat-content h3 strong {
  font-weight: 700;
  background: var(--pompe-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (min-width: 600px) {
  .pompe-rachat-content h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .pompe-rachat-content h3 {
    font-size: 1.6rem;
  }
}

/* Paragraphs inside editor content */
.pompe-rachat-content p {
  font-family: var(--pompe-font-body);
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--pompe-text-secondary);
  margin-bottom: 1rem;
}

/* p inside a white section */
.pompe-rachat-content .pompe-bg-white p {
  color: var(--pompe-text-dark-secondary);
}

.pompe-rachat-content .pompe-bg-white h2,
.pompe-rachat-content .pompe-bg-white h3 {
  color: var(--pompe-text-dark);
}

/* Strong in paragraphs */
.pompe-rachat-content p strong {
  color: var(--pompe-text-primary);
  font-weight: 600;
}

.pompe-rachat-content .pompe-bg-white p strong {
  color: var(--pompe-text-dark);
}

/* First H2 inside a section: remove top margin */
.pompe-rachat-content .pompe-section h2:first-child,
.pompe-rachat-content .pompe-editorial h2:first-child {
  margin-top: 0;
}

/* First H3 after intro text: moderate margin */
.pompe-rachat-content .pompe-editorial h3:first-child {
  margin-top: 0;
}

/* Links inside editor content */
.pompe-rachat-content a {
  color: var(--pompe-gold);
  font-weight: 500;
  transition: color var(--pompe-transition);
}

.pompe-rachat-content a:hover {
  color: var(--pompe-gold-light);
}

/* Blockquote (used as highlight box in editor) */
.pompe-rachat-content blockquote {
  background: var(--pompe-fond-card);
  border-left: 4px solid var(--pompe-gold);
  border-radius: 0 12px 12px 0;
  padding: 24px 28px;
  margin: 24px 0;
}

.pompe-rachat-content blockquote p {
  margin-bottom: 0.5rem;
}

.pompe-rachat-content blockquote p:last-child {
  margin-bottom: 0;
}

.pompe-rachat-content .pompe-bg-white blockquote {
  background: var(--pompe-gris-fond);
}

.pompe-rachat-content .pompe-bg-white blockquote p {
  color: var(--pompe-text-dark-secondary);
}

/* Lists inside editor content */
.pompe-rachat-content ul {
  padding-left: 28px;
  margin-bottom: 1rem;
}

.pompe-rachat-content ul li {
  position: relative;
  padding: 6px 0 6px 0;
  color: var(--pompe-text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  list-style: none;
}

.pompe-rachat-content ul li::before {
  content: '\25C6';
  position: absolute;
  left: -24px;
  top: 8px;
  font-size: 0.6rem;
  color: var(--pompe-gold);
}

/* HR as section visual separator */
.pompe-rachat-content hr {
  border: none;
  border-top: 1px solid var(--pompe-border-subtle);
  margin: 2.5rem 0;
}

/* ==========================================================================
   27. WHATSAPP FLOATING BUTTON
   ========================================================================== */

.pompe-whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.pompe-whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.pompe-whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

@media (min-width: 600px) {
  .pompe-whatsapp-float {
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
  }

  .pompe-whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}


/* ==========================================================================
   END OF DESIGN SYSTEM
   ========================================================================== */
