/* Futurlum — Light Theme (inspired by Serenovables) */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=DM+Sans:ital,wght@0,400;0,500;0,600&display=swap');

:root {
  --primary: #F59E0B;
  --primary-hover: #D97706;
  --primary-light: #FEF3C7;
  --black: #0F172A;
  --gray-800: #1E293B;
  --gray-600: #475569;
  --gray-400: #94A3B8;
  --gray-200: #E2E8F0;
  --gray-100: #F1F5F9;
  --white: #FFFFFF;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.15; }

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ── NAV ── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}
#main-nav.scrolled {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
#main-nav.scrolled .nav-link { color: var(--gray-800); }
#main-nav.scrolled .nav-link:hover { color: var(--primary); }
#main-nav.scrolled .nav-logo img { filter: none; }
#main-nav.scrolled .hamburger svg { stroke: var(--black); }
#main-nav.scrolled .dropdown-arrow { border-top-color: var(--gray-600); }
#main-nav.scrolled .nav-cta-btn { background: var(--primary); color: var(--black); border-color: var(--primary); }

.nav-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 100px;
}

.nav-logo img { height: 72px; width: auto; object-fit: contain; display: block; }
.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; flex-wrap: nowrap; white-space: nowrap; }

/* Nav links */
.nav-links { flex: 1; justify-content: center; }
.nav-link {
  color: rgba(255,255,255,0.92); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: color 0.2s;
  display: flex; align-items: center; gap: 5px; padding: 8px 0;
  position: relative;
}
.nav-link:hover { color: var(--primary); }

.dropdown-arrow {
  width: 0; height: 0;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.7); transition: border-color 0.2s, transform 0.2s;
}
#main-nav.scrolled .dropdown-arrow { border-top-color: var(--gray-600); }

/* Nav dark mode — service/sub pages (non-index) */
.nav-dark #main-nav:not(.scrolled) .nav-link { color: var(--gray-800); }
.nav-dark #main-nav:not(.scrolled) .nav-link:hover { color: var(--primary); }
.nav-dark #main-nav:not(.scrolled) .dropdown-arrow { border-top-color: var(--gray-600); }
.nav-dark #main-nav:not(.scrolled) .hamburger svg { stroke: var(--black); }
.nav-dark #main-nav:not(.scrolled) .nav-cta-btn { background: var(--primary); color: var(--black); border-color: var(--primary); }
.nav-dark #main-nav:not(.scrolled) { background: rgba(255,255,255,0.96); box-shadow: 0 1px 8px rgba(0,0,0,0.06); }

/* Dropdown menu */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -12px;
  background: var(--white); border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 0.5rem 0; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu a {
  display: block; padding: 0.6rem 1.25rem;
  color: var(--gray-800); font-size: 0.88rem; font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--gray-100); color: var(--primary-hover); }

/* Nav CTA button */
.nav-cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--primary); color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.88rem;
  padding: 10px 22px; border-radius: 6px;
  border: 2px solid var(--primary);
  cursor: pointer; transition: all 0.2s; text-decoration: none;
  min-width: 140px; text-align: center;
}
.nav-cta-btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 8px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); }

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 13px 26px; border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
}
.btn-ghost-hero:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.75);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 11px 22px; border-radius: 8px;
  border: 2px solid var(--gray-200);
  transition: border-color 0.2s;
  text-decoration: none;
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.3) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  padding: 8rem 1.5rem 4rem;
  max-width: 620px; margin-left: calc((100vw - 1200px)/2 + 1.5rem);
}

@media (max-width: 1240px) { .hero-content { margin-left: 1.5rem; } }

/* Hero wide — dos columnas con foto equipo */
.hero-content-wide {
  max-width: 1200px;
  margin-left: auto; margin-right: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3.5rem;
}

@media (max-width: 1240px) { .hero-content-wide { margin-left: 1.5rem; margin-right: 1.5rem; } }

.hero-left { max-width: 580px; }

.hero-team-card {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}

.hero-team-img {
  width: 280px; height: 320px;
  object-fit: cover; object-position: center top;
  border-radius: 20px;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}

.hero-team-label {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem; font-weight: 600;
  padding: 7px 14px; border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--black); margin-bottom: 1.25rem;
}

.hero p {
  font-size: 1.15rem; color: var(--gray-600); margin-bottom: 2rem; max-width: 480px;
}

.hero-cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-stars {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--gray-600);
}

.stars { color: var(--primary); font-size: 1.1rem; letter-spacing: 2px; }

@media (max-width: 860px) {
  .hero-content-wide { grid-template-columns: 1fr; }
  .hero-team-card { display: none; }
}

/* ── SECTIONS ── */
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-100); }
.section-dark { background: var(--black); color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.section-tag {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-hover);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; margin-bottom: 1rem;
}

.section-sub {
  font-size: 1.05rem; color: var(--gray-600); max-width: 560px;
}

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}

.card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 2rem;
  transition: box-shadow 0.25s, transform 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }

.card-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(245,158,11,0.18);
}
.card-icon svg { color: var(--primary-hover); width: 28px; height: 28px; }
.card-icon img { width: 44px; height: 44px; object-fit: contain; }

.card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.6rem; }
.card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary-hover); font-weight: 600; font-size: 0.9rem;
  margin-top: 1.25rem;
}

/* ── SUBVENCIONES BANNER ── */
.subv-banner {
  background: linear-gradient(135deg, var(--black) 0%, #1e3a1e 100%);
  border-radius: 20px; padding: 3rem; color: var(--white);
  display: grid; grid-template-columns: 1.6fr auto auto; gap: 2.5rem; align-items: center;
}
@media (max-width: 900px) { .subv-banner { grid-template-columns: 1fr; text-align: center; } }

.subv-banner h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.75rem; }
.subv-banner p { color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.subv-pct {
  font-size: 4rem; font-weight: 900; color: var(--primary);
  line-height: 1; white-space: nowrap;
}
.subv-moves {
  border-radius: 16px;
  overflow: hidden;
  width: 220px;
  height: 160px;
  flex-shrink: 0;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.subv-moves img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (max-width: 900px) { .subv-moves { justify-self: center; } }

/* ── STATS ── */
.stats-row {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem; text-align: center; margin-top: 3rem;
}
.stat-num {
  font-size: 2.8rem; font-weight: 900; color: var(--primary);
  font-family: 'Outfit', sans-serif; line-height: 1;
}
.stat-lbl { font-size: 0.85rem; color: var(--gray-600); margin-top: 6px; }

/* ── PROCESS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2.5rem; }
.step { display: flex; gap: 1.25rem; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary); color: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1rem;
}
.step-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.step-body p { font-size: 1rem; color: var(--gray-600); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.testimonial {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 14px; padding: 1.75rem;
}
.t-stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
.t-text { font-size: 0.92rem; color: var(--gray-700); font-style: italic; margin-bottom: 1rem; }
.t-author { font-weight: 700; font-size: 0.88rem; }
.t-location { font-size: 0.82rem; color: var(--gray-400); }

/* ── FAQ ── */
.faq { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  text-align: left; padding: 1.25rem 0;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 1rem;
  color: var(--black); display: flex; justify-content: space-between; align-items: center;
}
.faq-q svg { min-width: 20px; transition: transform 0.2s; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { display: none; font-size: 1rem; color: var(--gray-600); padding-bottom: 1.25rem; line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT FORM ── */
.contact-form {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 20px; padding: 2.5rem; max-width: 560px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.contact-form h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.5rem; }
.contact-form p { font-size: 0.9rem; color: var(--gray-600); margin-bottom: 1.75rem; }

.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-row label { font-size: 0.83rem; font-weight: 600; color: var(--gray-800); }
.form-row input,
.form-row select,
.form-row textarea {
  background: var(--gray-100); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 11px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  color: var(--black); transition: border-color 0.2s; width: 100%;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--primary); }
.form-row textarea { resize: vertical; min-height: 100px; }
.form-privacy { font-size: 0.78rem; color: var(--gray-400); margin: 0.75rem 0; }
.form-privacy a { color: var(--primary-hover); text-decoration: underline; }

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 75px; height: 75px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 1000; text-decoration: none;
  transition: transform 0.2s;
  animation: wa-ring 2.5s ease-in-out infinite;
}
.wa-float svg { width: 36px; height: 36px; }
.wa-float:hover {
  transform: scale(1.1);
  animation: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.6);
}
@keyframes wa-ring {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.7),  0 4px 20px rgba(37,211,102,0.4); }
  40%  { box-shadow: 0 0 0 21px rgba(37,211,102,0),  0 4px 20px rgba(37,211,102,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0),     0 4px 20px rgba(37,211,102,0.4); }
}

/* ── FOOTER ── */
footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding: 3rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo img { height: 44px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem;
  font-size: 0.82rem; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--primary); }

/* ── MOBILE MENU ── */
.hamburger { display: none; background: rgba(0,0,0,0.55); border: none; cursor: pointer; padding: 8px; border-radius: 8px; line-height: 0; }
.hamburger svg { stroke: #fff !important; display: block; }
#main-nav.scrolled .hamburger { background: var(--primary); }
#main-nav.scrolled .hamburger svg { stroke: #fff !important; }
#mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--gray-200);
  z-index: 99; padding: 1.25rem 1.5rem 1.5rem;
  max-height: calc(100vh - 68px); overflow-y: auto;
}
#mobile-menu.open { display: block; }
.mobile-links { display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
.mobile-links a { font-weight: 600; font-size: 1rem; color: var(--black); padding: 0.75rem 0; display: block; border-bottom: 1px solid var(--gray-100); }

/* ── HERO PAGE (sub-pages) ── */
.page-hero {
  position: relative; overflow: hidden;
  background: var(--gray-100); padding: 7rem 0 4rem;
  min-height: 420px; display: flex; align-items: center;
  border-bottom: 1px solid var(--gray-200);
}
.page-hero .container { width: 100%; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--gray-600); max-width: 560px; margin-bottom: 2rem; }

/* ── PRICE BOX ── */
.price-box {
  background: var(--gray-100); border: 2px solid var(--primary);
  border-radius: 16px; padding: 2rem; max-width: 360px;
}
.price-from { font-size: 0.8rem; color: var(--gray-600); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.price-num { font-size: 2.8rem; font-weight: 900; color: var(--black); font-family: 'Outfit', sans-serif; }
.price-iva { font-size: 0.85rem; color: var(--gray-400); }
.price-features { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.price-feat { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.price-feat svg { color: var(--primary-hover); min-width: 16px; }

/* ── LANG SWITCH (dropdown with flags) ── */
.lang-switch { position: relative; font-size: 0.82rem; font-weight: 600; }
.lang-current {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.14); color: #fff;
  border: 1px solid rgba(255,255,255,0.25); border-radius: 6px;
  padding: 6px 10px; cursor: pointer; line-height: 1;
  font: inherit; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.lang-current:hover { background: rgba(255,255,255,0.22); }
#main-nav.scrolled .lang-current,
.nav-dark #main-nav:not(.scrolled) .lang-current {
  background: var(--gray-100); color: var(--gray-800); border-color: var(--gray-200);
}
#main-nav.scrolled .lang-current:hover,
.nav-dark #main-nav:not(.scrolled) .lang-current:hover { background: var(--gray-200); }
.lang-caret { transition: transform 0.2s; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }

.lang-options {
  position: absolute; top: calc(100% + 6px); right: 0;
  list-style: none; margin: 0; padding: 6px 0;
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 150px; z-index: 110;
  opacity: 0; visibility: hidden; transform: translateY(-4px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang-switch:hover .lang-options,
.lang-switch:focus-within .lang-options,
.lang-switch.open .lang-options {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.lang-options a {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 14px; color: var(--gray-800); text-decoration: none;
  white-space: nowrap; transition: background 0.15s, color 0.15s;
}
.lang-options a:hover { background: var(--gray-100); color: var(--primary-hover); }

/* Flag icons (inline SVG via data-uri) */
.flag {
  display: inline-block; width: 18px; height: 13px;
  background-size: cover; background-position: center;
  border-radius: 2px; flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.08);
}
.flag-es {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 750 500'><rect width='750' height='500' fill='%23c60b1e'/><rect y='125' width='750' height='250' fill='%23ffc400'/></svg>");
}
.flag-ca {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 270 180'><rect width='270' height='180' fill='%23FCDD09'/><rect y='20' width='270' height='20' fill='%23DA121A'/><rect y='60' width='270' height='20' fill='%23DA121A'/><rect y='100' width='270' height='20' fill='%23DA121A'/><rect y='140' width='270' height='20' fill='%23DA121A'/></svg>");
}
.flag-en {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'><clipPath id='s'><path d='M0,0 v30 h60 v-30 z'/></clipPath><clipPath id='t'><path d='M30,15 h30 v15 z v15 h-30 z h-30 v-15 z v-15 h30 z'/></clipPath><g clip-path='url(%23s)'><path d='M0,0 v30 h60 v-30 z' fill='%23012169'/><path d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/><path d='M0,0 L60,30 M60,0 L0,30' clip-path='url(%23t)' stroke='%23C8102E' stroke-width='4'/><path d='M30,0 v30 M0,15 h60' stroke='%23fff' stroke-width='10'/><path d='M30,0 v30 M0,15 h60' stroke='%23C8102E' stroke-width='6'/></g></svg>");
}

/* ── BLOG ── */
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2.5rem;
}
.blog-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.blog-card-img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag {
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
  color: var(--primary-hover); letter-spacing: 0.06em; margin-bottom: 0.5rem;
}
.blog-card-title {
  font-size: 1.1rem; font-weight: 700; line-height: 1.4;
  margin-bottom: 0.75rem; color: var(--black);
}
.blog-card-excerpt {
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.6;
  flex: 1; margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: 0.78rem; color: var(--gray-400); font-weight: 500;
}
.blog-cta {
  text-align: center; margin-top: 2.5rem;
}

/* ── BREADCRUMBS ── */
.breadcrumb { margin-bottom: 1.5rem; }
.breadcrumb-list {
  list-style: none; display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.35rem; padding: 0; margin: 0;
  font-size: 0.82rem; color: var(--gray-400);
}
.breadcrumb-list li + li::before { content: '/'; margin-right: 0.35rem; color: var(--gray-200); }
.breadcrumb-list a { color: var(--gray-400); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--primary-hover); }
.breadcrumb-list li[aria-current="page"] { color: var(--gray-600); font-weight: 500; }

/* ── TABLE OF CONTENTS ── */
.toc-box {
  background: var(--gray-100); border-left: 3px solid var(--primary);
  border-radius: 10px; padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.toc-title {
  font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem;
  color: var(--black); font-family: 'Outfit', sans-serif;
}
.toc-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.toc-item a {
  font-size: 0.88rem; color: var(--gray-600); text-decoration: none;
  transition: color 0.2s; line-height: 1.4;
}
.toc-item a:hover { color: var(--primary-hover); }
.toc-sub { padding-left: 1rem; }
.toc-sub a { font-size: 0.83rem; }

/* ── RELATED ARTICLES ── */
.related-articles { max-width: 720px; margin: 3rem auto 0; padding-top: 2.5rem; border-top: 1px solid var(--gray-200); }
.related-heading { font-size: 1.3rem; font-weight: 800; margin-bottom: 1.25rem; font-family: 'Outfit', sans-serif; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.related-card {
  border-radius: 12px; overflow: hidden; background: var(--white);
  border: 1px solid var(--gray-200); text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s; display: flex; flex-direction: column;
}
.related-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.related-img { width: 100%; height: 110px; object-fit: cover; display: block; }
.related-body { padding: 0.75rem; flex: 1; }
.related-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  color: var(--primary-hover); letter-spacing: 0.06em; display: block; margin-bottom: 4px; }
.related-title { font-size: 0.82rem; font-weight: 600; line-height: 1.4; color: var(--black); margin: 0; }
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* ── ACCESSIBILITY: focus styles ── */
.keyboard-nav a:focus,
.keyboard-nav button:focus,
.keyboard-nav input:focus,
.keyboard-nav select:focus,
.keyboard-nav textarea:focus {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── BLOG ARTICLE PAGE ── */
.article-header {
  max-width: 760px; margin: 0 auto; text-align: center;
}
.article-header .section-tag { margin-bottom: 0.75rem; }
.article-header h1 { font-size: 2.2rem; line-height: 1.3; margin-bottom: 1rem; }
.article-meta { font-size: 0.85rem; color: var(--gray-400); margin-bottom: 2rem; }
.article-hero-img {
  width: 100%; max-height: 420px; object-fit: cover; border-radius: 16px; margin-bottom: 2.5rem;
}
.article-body {
  max-width: 720px; margin: 0 auto;
  font-size: 1.05rem; line-height: 1.8; color: var(--gray-700, #374151);
}

/* ── STAT COUNTER ANIMATION ── */
.stat-num {
  transition: color 0.3s;
}
.stats-row .stat-block {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stats-row.animated .stat-block {
  opacity: 1; transform: translateY(0);
}

/* ── NAV RESPONSIVE — desktop links shrink fluidly, hamburger only on phones ── */
/* Tighten desktop nav 1100-1240px */
@media (max-width: 1240px) {
  .nav-inner { padding: 0 1.5rem; }
  .nav-links { gap: 22px !important; }
  .nav-link { font-size: 0.9rem; }
  .nav-cta-btn { min-width: auto; padding: 9px 18px; font-size: 0.85rem; }
  .nav-right { gap: 10px; }
}

/* Tighter still 950-1100px */
@media (max-width: 1100px) {
  .nav-inner { padding: 0 1rem; }
  .nav-links { gap: 16px !important; }
  .nav-link { font-size: 0.85rem; }
  .nav-cta-btn { padding: 8px 14px; font-size: 0.8rem; }
  .nav-logo img { height: 60px; }
}

/* Very tight 768-950px (small tablets) — hide CTA button to free space */
@media (max-width: 950px) {
  .nav-inner { padding: 0 0.85rem; height: 80px; }
  .nav-links { gap: 12px !important; }
  .nav-link { font-size: 0.8rem; }
  .nav-cta-btn.nav-cta-desktop { display: none; }
  .nav-logo img { height: 52px; }
  .nav-right { gap: 8px; }
  .lang-current { padding: 5px 8px; font-size: 0.78rem; }
}

/* Hamburger only on real mobile (<=768px) */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links.nav-cta-desktop { display: none !important; }
  .nav-inner { padding: 0 1rem; height: 72px; }
  .nav-logo img { height: 56px; }
  #mobile-menu { top: 72px; }
}

/* Smaller phone tweaks for lang switch */
@media (max-width: 480px) {
  .lang-current { padding: 5px 8px; gap: 5px; font-size: 0.78rem; }
  .lang-options { min-width: 140px; }
  .nav-inner { padding: 0 0.75rem; height: 64px; }
  .nav-logo img { height: 46px; }
  #mobile-menu { top: 64px; }
}

/* ── MOBILE RESPONSIVE ── */
@media (max-width: 768px) {
  /* Secciones */
  .section { padding: 3rem 0; }

  /* Hero */
  .hero { min-height: 85vh; }
  .hero-content { padding: 6rem 1.25rem 3rem; }
  .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
  .hero p { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero-cta { gap: 0.75rem; }

  /* Service page hero — reduce top padding on mobile */
  .page-hero { padding: 5rem 0 2.5rem; min-height: 320px; }
  .page-hero h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .page-hero p { font-size: 1rem; }
  /* Hide redundant pill tag in page-hero on mobile */
  .page-hero .section-tag { display: none; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Proceso — de 2 columnas a 1 */
  .section .container > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important; flex-direction: column; gap: 2rem;
  }

  /* Stats — 2x2 en móvil */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
  .stat-num { font-size: 2.2rem; }

  /* Subvenciones banner */
  .subv-banner { gap: 1.5rem; }
  .subv-pct { font-size: 2.8rem; }

  /* Testimonios */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Calculadora — de 2 columnas a 1 */
  #calculadora .container > div[style*="grid-template-columns:1fr 1fr"] {
    display: flex !important; flex-direction: column; gap: 1.5rem;
  }
  #calculadora .container > div > div:first-child { order: 1; }
  #calculadora .container > div > div:last-child { order: 2; }

  /* Formulario — de 2 columnas a 1 */
  .section .container > div[style*="grid-template-columns:1fr 1fr"][style*="gap:4rem"] {
    display: flex !important; flex-direction: column; gap: 2rem;
  }

  /* Blog grid */
  .blog-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Section title */
  .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-num { font-size: 1.9rem; }
  .hero h1 { font-size: 1.75rem; }
  .btn-primary { font-size: 0.95rem; padding: 13px 22px; }
  .subv-banner > div:last-child { display: none; } /* oculta % en móvil pequeño */
}
.article-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--black); }
.article-body h3 { font-size: 1.2rem; margin: 1.5rem 0 0.75rem; color: var(--black); }
.article-body p { margin-bottom: 1.25rem; }
.article-body ul, .article-body ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.article-body li { margin-bottom: 0.5rem; }
.article-body blockquote {
  border-left: 4px solid var(--primary); padding: 1rem 1.5rem; margin: 1.5rem 0;
  background: var(--primary-light); border-radius: 0 12px 12px 0; font-style: italic;
}
.article-back {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; color: var(--primary-hover); margin-bottom: 1.5rem; text-decoration: none;
}
.article-back:hover { text-decoration: underline; }

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 3rem;
  border-radius: 20px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden; position: relative; cursor: pointer;
  border-radius: 12px;
}
/* Masonry effect: every 1st and 3rd of each group of 4 spans 2 rows */
.gallery-item:nth-child(4n+1),
.gallery-item:nth-child(4n+3) {
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }

/* Tablet: 2 columns, simpler masonry */
@media (max-width: 1024px) and (min-width: 769px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item:nth-child(4n+1),
  .gallery-item:nth-child(4n+3) {
    grid-row: span 1;
  }
  .gallery-item:nth-child(odd) {
    grid-row: span 2;
  }
}

/* ── TEAM / ABOUT ── */
.team-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 860px) {
  .team-section { grid-template-columns: 1fr; gap: 2.5rem; }
}
.team-img-wrap {
  position: relative;
}
.team-img-wrap img {
  width: 100%; border-radius: 20px;
  object-fit: cover; aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.team-badge {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--primary); color: var(--black);
  font-family: 'Outfit', sans-serif; font-weight: 900;
  border-radius: 16px; padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(245,158,11,0.35);
}
.team-badge-num { font-size: 2.2rem; line-height: 1; }
.team-badge-lbl { font-size: 0.78rem; font-weight: 700; opacity: 0.75; margin-top: 2px; }
.team-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.team-feat {
  display: flex; align-items: flex-start; gap: 1rem;
}
.team-feat-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--primary-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.team-feat-icon svg { color: var(--primary-hover); }
.team-feat-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.team-feat-body p { font-size: 0.88rem; color: var(--gray-600); }

/* ── FAQ ── */
.faq-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .faq-2col { grid-template-columns: 1fr; }
}

/* ── FADE IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Restore fast hover transitions once fade-in completes */
.card.fade-in.visible {
  transition: box-shadow 0.25s, transform 0.2s;
}
.testimonial-v2.fade-in.visible {
  transition: box-shadow 0.25s, transform 0.2s;
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ── IMPROVED SUBV BANNER ── */
.subv-banner-v2 {
  background: linear-gradient(135deg, #0F172A 0%, #1a3a2a 60%, #0F172A 100%);
  border-radius: 24px; padding: 3.5rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 3rem; align-items: center;
  position: relative; overflow: hidden;
}
.subv-banner-v2::before {
  content: '';
  position: absolute; top: -60px; right: 200px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.subv-banner-v2 h3 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.subv-banner-v2 p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 1.5rem; }
.subv-pills { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 1.75rem; }
.subv-pill {
  background: rgba(245,158,11,0.15); color: var(--primary);
  border: 1px solid rgba(245,158,11,0.3);
  font-size: 0.82rem; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
}
.subv-right { text-align: center; flex-shrink: 0; }
.subv-big-num {
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: var(--primary); font-family: 'Outfit', sans-serif;
}
.subv-big-lbl { color: rgba(255,255,255,0.6); font-size: 0.85rem; margin-top: 4px; }
@media (max-width: 768px) {
  .subv-banner-v2 { grid-template-columns: 1fr; gap: 2rem; }
  .subv-big-num { font-size: 3.5rem; }
}

/* ── IMPROVED TESTIMONIALS ── */
.testimonial-v2 {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow 0.25s, transform 0.2s;
}
.testimonial-v2:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-4px); }
.t-header { display: flex; align-items: flex-start; gap: 12px; min-height: 64px; }
.t-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--primary-hover);
  flex-shrink: 0;
}
.t-meta { flex: 1; }
.t-name { font-weight: 700; font-size: 0.92rem; }
.t-loc { font-size: 0.8rem; color: var(--gray-400); }
.t-kw {
  display: inline-block;
  background: var(--primary-light); color: var(--primary-hover);
  font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
  margin-left: auto;
}
.t-body { font-size: 0.92rem; color: var(--gray-600); font-style: italic; line-height: 1.65; flex: 1; }
.t-result {
  background: var(--gray-100); border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem; font-weight: 600; color: var(--gray-800);
  display: flex; align-items: center; gap: 8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .hero { min-height: 75vh; }
  .subv-banner { text-align: center; }
  .subv-pct { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 7rem; }
}


/* ══ UX FIXES ══════════════════════════════════════════════════════════════ */

/* FIX 1: Focus visible - accessibility */
:focus-visible {
  outline: 3px solid var(--primary) !important;
  outline-offset: 3px !important;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--primary) !important;
  outline-offset: 3px !important;
}

/* FIX 2: Skip to content */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: var(--black);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 8px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 1rem;
}

/* FIX 3: Language switcher - CA and EN clearly visible */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
}
.lang-btn {
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.lang-btn:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.lang-btn.active {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}
#main-nav.scrolled .lang-btn {
  color: var(--gray-600);
  border-color: var(--gray-200);
}
#main-nav.scrolled .lang-btn:hover {
  background: var(--gray-100);
  color: var(--black);
}
#main-nav.scrolled .lang-btn.active {
  background: var(--primary);
  color: var(--black);
  border-color: var(--primary);
}

/* FIX 4: Small font minimum */
.stat-lbl,
.section-tag,
.gallery-caption,
.t-meta {
  font-size: 0.82rem !important;
}

/* FIX 5: gray-400 contrast fix - use gray-600 where on white bg */
.calc-label-sm,
[style*="color:var(--gray-400)"] {
  color: var(--gray-600) !important;
}

/* FIX 6: Calculator responsive */
@media (max-width: 768px) {
  #calculadora > .container > div,
  .calc-outer-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-results-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* FIX 7: Form section responsive */
.form-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .form-section-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* FIX 8: Team section responsive (already has .team-section but check) */
@media (max-width: 768px) {
  .team-section {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile: horizontal scroll-snap carousel */
@media (max-width: 768px) {
  #galeria { overflow: hidden; }
  .gallery-grid {
    display: flex !important;
    grid-template-columns: none !important;
    grid-template-rows: none !important;
    grid-auto-rows: auto !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-padding: 0 1.25rem;
    padding: 0 1.25rem 1rem;
    margin: 2rem -1.25rem 0;
    gap: 12px;
    border-radius: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .gallery-grid::-webkit-scrollbar { display: none; }
  .gallery-item,
  .gallery-item:nth-child(4n+1),
  .gallery-item:nth-child(4n+3),
  .gallery-item:nth-child(odd) {
    flex: 0 0 78%;
    grid-row: auto !important;
    grid-column: auto !important;
    height: 280px;
    scroll-snap-align: center;
    border-radius: 14px;
  }
  .gallery-item:first-child { scroll-snap-align: start; }
  .gallery-item:last-child  { scroll-snap-align: end; }
  /* swipe hint */
  .gallery-grid::after {
    content: '';
    flex: 0 0 0.75rem; /* trailing padding so last item snaps cleanly */
  }
}
@media (max-width: 480px) {
  .gallery-item,
  .gallery-item:nth-child(4n+1),
  .gallery-item:nth-child(4n+3),
  .gallery-item:nth-child(odd) {
    flex-basis: 82%;
    height: 240px;
  }
}

/* FIX 10: WA button smaller on mobile */
@media (max-width: 600px) {
  .wa-float {
    width: 56px !important;
    height: 56px !important;
    bottom: 16px !important;
    right: 16px !important;
  }
  .wa-float svg {
    width: 26px !important;
    height: 26px !important;
  }
}

/* FIX 11: Subvenciones banner responsive */
@media (max-width: 768px) {
  .subv-banner-v2 {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .subv-right {
    display: none !important;
  }
}

/* FIX 12: Stats row responsive */
@media (max-width: 600px) {
  .stats-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 1.5rem !important;
  }
}

/* FIX 13: FAQ 2col responsive */
@media (max-width: 768px) {
  .faq-2col {
    grid-template-columns: 1fr !important;
  }
}

/* FIX 14: Card hover accessible - respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .fade-in.visible {
    opacity: 1 !important;
    transform: none !important;
  }
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
