/*
 * ============================================================
 * GESTEXLINK — Mobile-First Vanilla CSS3 Stylesheet
 * Version    : 1.0.0
 * Authors    : NexLink Hub S.L.U. (CIF: B88756994)
 * Description: Deep tech palette, Flexbox/Grid, zero CLS.
 *              Base styles target 375-430px mobile viewports.
 *              Desktop scales up via progressive enhancement.
 * ============================================================
 *
 * TABLE OF CONTENTS
 * 1.  CSS Custom Properties (Design Tokens)
 * 2.  CSS Reset & Base
 * 3.  Typography Scale
 * 4.  Layout Utilities (.container, .section-header)
 * 5.  Buttons (.btn)
 * 6.  Skip Link (Accessibility)
 * 7.  QR Banner
 * 8.  Header / Navigation
 * 9.  Language Switcher
 * 10. Hero Section (Standard + QR Mode)
 * 11. Trust Badges
 * 12. Services Section
 * 13. How It Works Section
 * 14. Benefits Section
 * 15. About Section
 * 16. Contact CTA Section
 * 17. Footer (LSSI-CE compliant)
 * 18. Utility Classes
 * 19. Media Queries (Tablet: 768px, Desktop: 1024px, Wide: 1280px)
 * ============================================================
 */

/* ════════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES — Design Tokens
   Scope: :root for global access
═════════════════════════════════════════════════════════════ */
:root {
  /* ── Color Palette (Deep Tech Blue) ── */
  --color-primary:         #0F2B5B;   /* Deep Navy — primary brand */
  --color-primary-dark:    #091D3E;   /* Darker navy for hover states */
  --color-secondary:       #1A56DB;   /* Royal Tech Blue — CTA, links */
  --color-secondary-dark:  #1340AD;   /* CTA hover */
  --color-accent:          #06B6D4;   /* Cyan/Teal — highlights, badges */
  --color-accent-light:    #CFFAFE;   /* Light teal for backgrounds */

  /* ── Neutral Grays ── */
  --color-bg:              #FAFBFD;   /* Page background */
  --color-bg-alt:          #F0F4F8;   /* Alternate section background */
  --color-surface:         #FFFFFF;   /* Card/surface background */
  --color-border:          #E1E8F0;   /* Border color */
  --color-border-dark:     #CBD5E1;   /* Stronger border */

  /* ── Text Colors ── */
  --color-text:            #0F1419;   /* Primary text */
  --color-text-secondary:  #374151;   /* Secondary text */
  --color-muted:           #64748B;   /* Muted/placeholder text */
  --color-inverse:         #FFFFFF;   /* Text on dark backgrounds */

  /* ── Status / Functional Colors ── */
  --color-success:         #059669;
  --color-warning:         #D97706;
  --color-error:           #DC2626;

  /* ── Typography ── */
  --font-primary:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display:   'Space Grotesk', 'Inter', sans-serif;
  --font-mono:      'JetBrains Mono', 'Fira Code', monospace;

  /* ── Type Scale (mobile-first, in rem) ── */
  --text-xs:   0.75rem;    /* 12px */
  --text-sm:   0.875rem;   /* 14px */
  --text-base: 1rem;       /* 16px */
  --text-md:   1.125rem;   /* 18px */
  --text-lg:   1.25rem;    /* 20px */
  --text-xl:   1.5rem;     /* 24px */
  --text-2xl:  1.875rem;   /* 30px */
  --text-3xl:  2.25rem;    /* 36px */
  --text-4xl:  2.75rem;    /* 44px */
  --text-5xl:  3.5rem;     /* 56px */

  /* ── Font Weights ── */
  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extrabold: 800;

  /* ── Spacing Scale (8px base) ── */
  --space-1:   0.25rem;   /* 4px */
  --space-2:   0.5rem;    /* 8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */

  /* ── Border Radius ── */
  --radius-sm:   0.25rem;  /* 4px */
  --radius-md:   0.5rem;   /* 8px */
  --radius-lg:   0.75rem;  /* 12px */
  --radius-xl:   1rem;     /* 16px */
  --radius-2xl:  1.5rem;   /* 24px */
  --radius-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm:   0 1px 3px rgba(15, 43, 91, 0.08), 0 1px 2px rgba(15, 43, 91, 0.06);
  --shadow-md:   0 4px 12px rgba(15, 43, 91, 0.10), 0 2px 4px rgba(15, 43, 91, 0.06);
  --shadow-lg:   0 10px 30px rgba(15, 43, 91, 0.12), 0 4px 8px rgba(15, 43, 91, 0.06);
  --shadow-xl:   0 20px 50px rgba(15, 43, 91, 0.15);
  --shadow-focus: 0 0 0 3px rgba(26, 86, 219, 0.35);

  /* ── Transitions ── */
  --transition-fast:   150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow:   400ms ease;

  /* ── Z-index Scale ── */
  --z-base:     1;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* ── Container ── */
  --container-max:    1200px;
  --container-pad:    var(--space-4);   /* Mobile padding */
  --section-gap:      var(--space-16);  /* Vertical section spacing */

  /* ── Touch Target ── */
  --touch-target: 44px;   /* WCAG minimum touch target (2.1 SC 2.5.5) */
}

/* ════════════════════════════════════════════════════════════
   2. CSS RESET & BASE
═════════════════════════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;                    /* 16px base */
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;     /* Prevent font scaling on orientation change */
  text-size-adjust: 100%;
  /* Reduce CLS: reserve scrollbar space */
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-regular);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Prevent body scroll when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus-visible {
  color: var(--color-secondary-dark);
  text-decoration: underline;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ════════════════════════════════════════════════════════════
   3. TYPOGRAPHY SCALE
═════════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

h1 { font-size: var(--text-2xl); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
h4 { font-size: var(--text-md); }
h5 { font-size: var(--text-base); }
h6 { font-size: var(--text-sm); }

p { line-height: 1.7; }

strong { font-weight: var(--fw-semibold); }

/* ════════════════════════════════════════════════════════════
   4. LAYOUT UTILITIES
═════════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background-color: var(--color-accent-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.section-title {
  font-size: var(--text-2xl);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  line-height: 1.25;
}

.section-desc {
  font-size: var(--text-md);
  color: var(--color-muted);
  max-width: 60ch;
  margin-inline: auto;
}

/* ════════════════════════════════════════════════════════════
   5. BUTTONS
   Min touch target: 44x44px (WCAG 2.1 SC 2.5.5)
═════════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  min-height: var(--touch-target);
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  line-height: 1.25;
  border-radius: var(--radius-lg);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color var(--transition-fast),
              color var(--transition-fast),
              border-color var(--transition-fast),
              box-shadow var(--transition-fast),
              transform var(--transition-fast);
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
}

.btn:active {
  transform: scale(0.97);
}

/* ── Primary Button ── */
.btn--primary {
  background-color: var(--color-secondary);
  color: var(--color-inverse);
  border: 2px solid transparent;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background-color: var(--color-secondary-dark);
  color: var(--color-inverse);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(26, 86, 219, 0.35);
}

/* ── Outline Button ── */
.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border-dark);
}

.btn--outline:hover,
.btn--outline:focus-visible {
  background-color: var(--color-bg-alt);
  border-color: var(--color-primary);
  color: var(--color-primary);
  text-decoration: none;
}

/* ── Ghost Button (on dark backgrounds) ── */
.btn--ghost {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-inverse);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-inverse);
  text-decoration: none;
}

/* ── Size Modifiers ── */
.btn--nav { font-size: var(--text-sm); padding: var(--space-2) var(--space-4); min-height: var(--touch-target); }
.btn--lg  { font-size: var(--text-md);   padding: var(--space-4) var(--space-8); min-height: 52px; }
.btn--xl  { font-size: var(--text-lg);   padding: var(--space-5) var(--space-10); min-height: 60px; }

/* ── Pulse animation for high-urgency QR CTAs ── */
.btn--pulse {
  animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 86, 219, 0.4); }
  50%       { box-shadow: 0 0 0 12px rgba(26, 86, 219, 0); }
}

/* ════════════════════════════════════════════════════════════
   6. SKIP LINK (Accessibility)
═════════════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: var(--z-modal);
  background: var(--color-secondary);
  color: var(--color-inverse);
  padding: var(--space-3) var(--space-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: var(--fw-semibold);
  transition: top var(--transition-fast);
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ════════════════════════════════════════════════════════════
   7. QR BANNER
   Displays when ?origin=qr is detected
═════════════════════════════════════════════════════════════ */
.qr-banner {
  position: sticky;
  top: 0;
  z-index: var(--z-toast);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: var(--color-inverse);
  padding: var(--space-3) var(--space-4);
}

.qr-banner__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  max-width: var(--container-max);
  margin-inline: auto;
}

.qr-banner__icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.qr-banner__text {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}

.qr-banner__close {
  color: var(--color-inverse);
  font-size: var(--text-lg);
  min-width: var(--touch-target);
  min-height: var(--touch-target);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  transition: background-color var(--transition-fast);
  flex-shrink: 0;
}

.qr-banner__close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ════════════════════════════════════════════════════════════
   8. HEADER / NAVIGATION
═════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition-normal);
}

.site-header--scrolled {
  box-shadow: var(--shadow-md);
}

.nav {
  display: flex;
  align-items: center;
  position: relative;
  gap: var(--space-4);
  min-height: 64px;
  padding-block: var(--space-3);
}

.nav__brand {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav__logo {
  height: 30px;
  width: auto;
  object-fit: contain;
}

/* ── Hamburger Toggle (Mobile) ── */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: var(--touch-target);
  height: var(--touch-target);
  padding: var(--space-2);
  border-radius: var(--radius-md);
  margin-left: auto;
  transition: background-color var(--transition-fast);
  gap: 4px;
}

.nav__toggle:hover {
  background-color: var(--color-bg-alt);
}

.nav__toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  transform-origin: center;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

/* Hamburger → X animation */
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ── Mobile Nav Menu ── */
.nav__menu {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  background-color: var(--color-surface);
  padding: var(--space-6) var(--space-4);
  border-top: 1px solid var(--color-border);
  overflow-y: auto;
  gap: var(--space-2);
  box-shadow: var(--shadow-xl);
  z-index: var(--z-overlay);
  max-height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height var(--transition-normal), opacity var(--transition-normal), transform var(--transition-normal);
}

.nav__menu--open {
  max-height: 70vh;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav__link {
  display: flex;
  align-items: center;
  min-height: var(--touch-target);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.nav__link:hover,
.nav__link:focus-visible {
  background-color: var(--color-bg-alt);
  color: var(--color-secondary);
  text-decoration: none;
}

.nav__menu-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.nav__lang-chip {
  min-width: 44px;
  min-height: var(--touch-target);
  padding: 0 var(--space-3);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-dark);
  background-color: var(--color-surface);
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
}

.nav__lang-chip:hover,
.nav__lang-chip:focus-visible {
  background-color: var(--color-bg-alt);
  color: var(--color-secondary);
}

.nav__lang-chip--active {
  background-color: var(--color-accent-light);
  color: var(--color-secondary);
  border-color: rgba(26, 86, 219, 0.35);
}

/* Hide CTA button and lang switcher in mobile nav (shown in menu instead) */
.btn--nav,
.lang-switcher {
  display: none;
}

/* ════════════════════════════════════════════════════════════
   9. LANGUAGE SWITCHER
═════════════════════════════════════════════════════════════ */
.lang-switcher {
  position: relative;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  min-height: var(--touch-target);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

.lang-switcher__btn:hover {
  background-color: var(--color-bg-alt);
  border-color: var(--color-border-dark);
}

.lang-switcher__icon {
  flex-shrink: 0;
}

.lang-switcher__current {
  font-weight: var(--fw-semibold);
  letter-spacing: 0.05em;
}

.lang-switcher__chevron {
  font-size: 0.65em;
  transition: transform var(--transition-fast);
}

.lang-switcher__btn[aria-expanded="true"] .lang-switcher__chevron {
  transform: rotate(180deg);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  right: 0;
  min-width: 160px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  z-index: var(--z-dropdown);
}

.lang-switcher__option {
  display: flex;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  min-height: var(--touch-target);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.lang-switcher__option:hover {
  background-color: var(--color-bg-alt);
}

.lang-switcher__option--active {
  background-color: var(--color-accent-light);
  color: var(--color-secondary);
  font-weight: var(--fw-semibold);
}

/* ════════════════════════════════════════════════════════════
   10. HERO SECTION
   Mobile: Full viewport, centered, stacked layout
   QR Mode: Switches content with .qr-mode on body
═════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--color-primary) 0%, #1a3a6b 50%, #0d2447 100%);
  color: var(--color-inverse);
  padding-block: var(--space-5) var(--space-12);
  overflow: hidden;
  isolation: isolate;
}

/* Decorative background pattern */
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 86, 219, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: var(--z-base);
}

/* Standard hero: shown by default, hidden in QR mode */
.hero__content--standard {
  display: block;
}
.hero__content--qr {
  display: none;
}

/* ── QR Mode: swap hero content ── */
body.qr-mode .hero__content--standard {
  display: none;
}
body.qr-mode .hero__content--qr {
  display: block;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  background-color: rgba(6, 182, 212, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin-bottom: var(--space-5);
}

.hero__title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-inverse);
  line-height: 1.15;
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero__title-accent {
  background: linear-gradient(135deg, var(--color-accent) 0%, #7DD3FC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* QR mode: slightly larger title for urgency */
.hero__title--qr {
  font-size: var(--text-3xl);
}

.hero__subtitle {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.80);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 55ch;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero .btn--outline {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-inverse);
  border: 2px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.hero .btn--outline:hover,
.hero .btn--outline:focus-visible {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--color-inverse);
}

/* ── QR Feature Pills ── */
.qr-hero__feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.qr-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-md);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.9);
}

.qr-feature__icon {
  font-size: var(--text-xl);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   11. TRUST BADGES
═════════════════════════════════════════════════════════════ */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.75);
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════════════
   12. SERVICES SECTION
═════════════════════════════════════════════════════════════ */
.services {
  padding-block: var(--section-gap);
  background-color: var(--color-bg);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

.service-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: box-shadow var(--transition-normal), border-color var(--transition-normal), transform var(--transition-normal);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

.service-card__icon {
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.service-card__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.service-card__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: var(--space-4);
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) 0;
  min-height: var(--touch-target);
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.service-card__link:hover {
  color: var(--color-secondary-dark);
  gap: var(--space-2);
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   13. HOW IT WORKS SECTION
═════════════════════════════════════════════════════════════ */
.how-it-works {
  padding-block: var(--section-gap);
  background-color: var(--color-primary);
  color: var(--color-inverse);
}

.how-it-works .section-title {
  color: var(--color-inverse);
}

.steps__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
}

.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.step__number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  width: 3rem;
  opacity: 0.9;
}

.step__title {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-inverse);
  margin-bottom: var(--space-2);
}

.step__desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.how-it-works__cta {
  text-align: center;
}

/* ════════════════════════════════════════════════════════════
   14. BENEFITS SECTION
═════════════════════════════════════════════════════════════ */
.benefits {
  padding-block: var(--section-gap);
  background-color: var(--color-bg-alt);
}

.benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-6);
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.benefit-item__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  /* Tint world-map.svg to match brand color */
  filter: invert(16%) sepia(65%) saturate(700%) hue-rotate(192deg) brightness(85%) contrast(110%);
}

.benefit-item__emoji {
  font-size: 2.5rem;
  line-height: 1;
}

.benefit-item h3 {
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin: 0;
}

.benefit-item p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

/* ════════════════════════════════════════════════════════════
   15. ABOUT SECTION
═════════════════════════════════════════════════════════════ */
.about {
  padding-block: var(--section-gap);
  background-color: var(--color-bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.about-card {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-8) var(--space-6);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
}

.about-card--legal::before {
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.about-card--tech::before {
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.about-card__badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.about-card--legal .about-card__badge {
  background-color: rgba(26, 86, 219, 0.10);
  color: var(--color-secondary);
}

.about-card--tech .about-card__badge {
  background-color: rgba(6, 182, 212, 0.10);
  color: #0891B2;
}

.about-card__name {
  font-size: var(--text-xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.about-card__cif {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-5);
}

.about-card__desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
}

.about-card__link {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-target);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.about-card__link:hover {
  color: var(--color-secondary-dark);
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   16. CONTACT CTA SECTION
═════════════════════════════════════════════════════════════ */
.contact-cta {
  padding-block: var(--section-gap);
  background: linear-gradient(160deg, var(--color-secondary) 0%, var(--color-primary) 100%);
  color: var(--color-inverse);
  text-align: center;
}

.contact-cta__inner {
  max-width: 720px;
  margin-inline: auto;
}

.contact-cta__title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-extrabold);
  color: var(--color-inverse);
  margin-bottom: var(--space-5);
  line-height: 1.2;
}

.contact-cta__desc {
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.contact-cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-cta__email-label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.75);
}

.contact-cta__email {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
}

.contact-cta__email:hover {
  color: #ffffff;
}

/* ════════════════════════════════════════════════════════════
   16.5 PLATFORM PREVIEW MODAL
═════════════════════════════════════════════════════════════ */
body.modal-open {
  overflow: hidden;
}

.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: var(--space-4);
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.platform-modal--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.platform-modal__dialog {
  width: min(100%, 720px);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 32px 90px rgba(15, 23, 42, 0.32);
  transform: translateY(20px) scale(0.98);
  transition: transform var(--transition-base);
}

.platform-modal--visible .platform-modal__dialog {
  transform: translateY(0) scale(1);
}

.platform-modal__hero {
  position: relative;
  padding: var(--space-10) var(--space-8) var(--space-8);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #0f9d58 0%, #34a853 48%, #8fd3a9 100%);
  color: #ffffff;
}

.platform-modal__close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.platform-modal__close:hover,
.platform-modal__close:focus-visible {
  background: rgba(255, 255, 255, 0.28);
  transform: scale(1.04);
}

.platform-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  margin: 0 0 var(--space-5);
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-xs);
  font-family: var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.platform-modal__title {
  margin: 0 0 var(--space-4);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
}

.platform-modal__desc {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-md);
  line-height: 1.75;
}

.platform-modal__body {
  padding: var(--space-8);
}

.platform-modal__grid {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

.platform-modal__features {
  display: grid;
  gap: var(--space-4);
}

.platform-modal__feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  border-radius: var(--radius-xl);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.platform-modal__feature-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 157, 88, 0.16), rgba(52, 168, 83, 0.24));
  color: #0f9d58;
  font-size: 1.25rem;
}

.platform-modal__feature-text {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-base);
  line-height: 1.7;
}

.platform-modal__aside {
  display: grid;
  gap: var(--space-4);
}

.platform-modal__actions {
  display: grid;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .platform-modal__grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    align-items: start;
  }
}

/* ════════════════════════════════════════════════════════════
   17. FOOTER (LSSI-CE & GDPR compliant)
═════════════════════════════════════════════════════════════ */
.site-footer {
  background-color: var(--color-primary);
  color: rgba(255, 255, 255, 0.72);
  padding-block: var(--space-12) var(--space-8);
}

/* ── Footer Top: columns ── */
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  padding-bottom: var(--space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: var(--space-8);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.footer__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* Keep logo visible on dark background */
  /*filter: brightness(0) invert(1);*/
}

.footer__brand-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.65;
  max-width: 30ch;
  text-align: center;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-target);
  height: var(--touch-target);
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.footer__social-link:hover {
  background-color: var(--color-secondary);
  color: var(--color-inverse);
  text-decoration: none;
}

.footer__social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.footer__copyright-logo {
  display: inline-block;
  height: 16px;
  width: auto;
  vertical-align: text-bottom;
  /*filter: brightness(0) invert(1);*/
  margin-right: 6px;
}

/* ── Footer Nav Columns ── */
.footer__nav-title {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.40);
  margin-bottom: var(--space-4);
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-target);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition-fast);
  padding-block: var(--space-1);
}

.footer__nav-link:hover {
  color: var(--color-inverse);
  text-decoration: none;
}

/* ── Footer Bottom: LSSI-CE Compliance Block ── */
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

/* Dual corporate entity identification (LSSI-CE Art. 10 mandatory) */
.footer__legal-entities {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
}

.footer__entity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  line-height: 1.6;
}

.footer__entity-role {
  color: rgba(255, 255, 255, 0.45);
  font-weight: var(--fw-medium);
}

.footer__entity-name {
  color: var(--color-inverse);
  font-weight: var(--fw-bold);
  font-size: var(--text-sm);
}

.footer__entity-cif {
  color: var(--color-accent);
  font-weight: var(--fw-semibold);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
}

.footer__entity-reg {
  color: rgba(255, 255, 255, 0.40);
  width: 100%;
  font-style: italic;
}

/* GDPR/LSSI-CE notice */
.footer__compliance-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.50);
  line-height: 1.65;
}

.footer__compliance-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__compliance-link:hover {
  color: var(--color-inverse);
}

/* Copyright row */
.footer__copyright {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.40);
  text-align: center;
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__powered-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: var(--fw-medium);
}

.footer__powered-link:hover {
  color: var(--color-inverse);
}

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

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

/* ════════════════════════════════════════════════════════════
   19. MEDIA QUERIES
   Mobile-first: base styles above target 375-430px.
   Progressively enhance for larger viewports.
═════════════════════════════════════════════════════════════ */

/* ── Tablet: 640px (small tablets, large phones landscape) ── */
@media screen and (min-width: 640px) {
  :root {
    --container-pad: var(--space-6);
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-cta__actions {
    flex-direction: row;
    justify-content: center;
  }

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

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

  .footer__legal-entities {
    flex-direction: row;
    gap: var(--space-6);
  }

  .footer__entity {
    flex: 1;
  }
}

/* ── Tablet: 768px ── */
@media screen and (min-width: 768px) {
  :root {
    --container-pad: var(--space-8);
    --section-gap:   var(--space-20);
  }

  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }

  .nav__toggle { display: none; }

  /* Desktop nav: horizontal */
  .nav__menu {
    display: flex !important;
    flex-direction: row;
    position: static;
    max-height: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    inset: unset;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
    overflow: visible;
    gap: 0;
  }

  .nav__menu-lang {
    display: none;
  }

  .nav__link {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-3);
    min-height: unset;
  }

  .btn--nav {
    display: inline-flex;
  }

  .lang-switcher {
    display: block;
  }

  .footer__brand {
    align-items: flex-start;
  }

  .footer__brand-desc {
    text-align: left;
  }

  .hero {
    padding-block: var(--space-10) var(--space-16);
  }

  .hero__title {
    font-size: var(--text-3xl);
  }

  .hero__title--qr {
    font-size: var(--text-4xl);
  }

  .hero__subtitle {
    font-size: var(--text-lg);
  }

  .qr-hero__feature-list {
    flex-direction: row;
    gap: var(--space-8);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .steps__list {
    gap: var(--space-8);
  }

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

  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
  }
}

/* ── Desktop: 1024px ── */
@media screen and (min-width: 1024px) {
  :root {
    --section-gap: var(--space-24);
  }

  .hero {
    padding-block: var(--space-10) var(--space-14);
  }

  .hero__title {
    font-size: var(--text-4xl);
  }

  .hero__title--qr {
    font-size: var(--text-5xl);
  }

  .section-title {
    font-size: var(--text-3xl);
  }

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

  .steps__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }

  .step {
    flex-direction: column;
    gap: var(--space-4);
  }

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

  .contact-cta__title {
    font-size: var(--text-3xl);
  }
}

/* ── Wide: 1280px ── */
@media screen and (min-width: 1280px) {
  :root {
    --container-pad: var(--space-10);
  }

  .hero {
    min-height: auto;
    display: block;
    padding-block: var(--space-12) var(--space-16);
  }

  .hero__inner {
    width: 100%;
  }

  .hero__subtitle {
    font-size: var(--text-xl);
    max-width: 65ch;
  }
}

/* ════════════════════════════════════════════════════════════
   20. GDPR COOKIE CONSENT BANNER
   Slides up from bottom on first visit.
   State: [hidden] attr + .cookie-banner--visible / --hidden classes
═══════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9900;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner--hidden {
  transform: translateY(100%);
}

.cookie-banner__inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.cookie-banner__title {
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  display: block;
  margin-bottom: var(--space-1);
  color: #fff;
}

.cookie-banner__desc {
  font-size: var(--text-xs);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.cookie-banner__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__link:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-target);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-lg);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  font-family: inherit;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.cookie-banner__btn--accept {
  background-color: var(--color-secondary);
  color: #fff;
  border-color: var(--color-secondary);
}

.cookie-banner__btn--accept:hover,
.cookie-banner__btn--accept:focus-visible {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  outline: none;
}

.cookie-banner__btn--reject {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.35);
}

.cookie-banner__btn--reject:hover,
.cookie-banner__btn--reject:focus-visible {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  outline: none;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    padding-block: var(--space-5);
  }

  .cookie-banner__text {
    flex: 1;
  }

  .cookie-banner__actions {
    flex-direction: row;
    align-items: center;
  }
}

/* ── Print Styles ── */
@media print {
  .site-header,
  .qr-banner,
  .cookie-banner,
  .hero__actions,
  .btn,
  .lang-switcher,
  .nav__toggle,
  .footer__social,
  .contact-cta__actions,
  .how-it-works__cta {
    display: none !important;
  }

  .hero {
    background: none;
    color: #000;
    padding-block: var(--space-8);
  }

  .hero__title,
  .hero__title-accent {
    color: #000;
    -webkit-text-fill-color: #000;
  }

  .site-footer {
    background: none;
    color: #000;
    border-top: 1px solid #ccc;
  }

  .footer__nav-link,
  .footer__entity-name,
  .footer__entity-cif {
    color: #000;
  }
}
