/* FullGraphics Theme Styles — v1.0 */

/* ══════════════════════════════════════════════════════════ */
/* WORDPRESS RESET — Override WP default layout constraints  */
/* ══════════════════════════════════════════════════════════ */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

/* Kill WordPress block layout constraints */
.wp-site-blocks,
.wp-site-blocks > *,
.is-layout-constrained > *,
.is-layout-flow > *,
.entry-content > *,
main > *,
#page-home > *,
#page-nosotros > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Ensure full-width sections */
.hero,
section,
.clients-section,
.footer-v2,
.copy-banner,
.cta-banner,
.stats-section,
.marquee-section {
  width: 100% !important;
  max-width: 100% !important;
}

/* Remove WP admin bar space push on front-end if needed */
body.admin-bar #mainNav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar #mainNav {
    top: 46px;
  }
}

@font-face { font-family: 'Brittany Signature'; font-display: swap; }

/* ══════════════════════════════════════════════════════════ */
/* HOME PAGE STYLES                                          */
/* ══════════════════════════════════════════════════════════ */

  :root {
    --gold: #f2c029;
    --gold-dark: #d4a820;
    --black: #0A0A0A;
    --dark: #141414;
    --dark-card: #1A1A1A;
    --gray: #2A2A2A;
    --light-gray: #666;
    --white: #F5F5F0;
    --text: #CCCCCC;
    --whatsapp: #25D366;
    --whatsapp-hover: #1fb855;
    --light-bg: #f6f6f8;
  }

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

  html { scroll-behavior: smooth; }

  /* ── PAGE LOAD ── */
  body {
    font-family: 'Roboto Condensed', sans-serif;
    background: var(--black);
    color: var(--text);
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 0.6s 0.1s ease forwards;
  }

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

  /* ── SCROLL PROGRESS BAR ── */
  .scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold), var(--gold-dark));
    width: 0%;
    z-index: 9999;
    transition: width 0.05s linear;
    pointer-events: none;
  }

  /* ── GLOBAL FOCUS STATES (A11Y) ── */
  *:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
    border-radius: 2px;
  }

  input:focus-visible,
  textarea:focus-visible {
    outline: none;
  }

  /* ── SELECTION STYLE ── */
  ::selection {
    background: rgba(242,192,41,0.3);
    color: inherit;
  }

  /* ── SMOOTH SCROLL HINT (hero) ── */
  .scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s 1.2s forwards;
  }

  .scroll-hint span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  .scroll-mouse {
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    position: relative;
  }

  .scroll-mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    animation: scrollDot 1.8s ease-in-out infinite;
  }

  @keyframes scrollDot {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
  }

  /* ── GRAIN OVERLAY ── */
  body.on-home::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px;
  }

  /* ── MAGNETIC BUTTON EFFECT ── */
  .magnetic-btn {
    transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  /* ── ENHANCED LINK HOVER ── */
  a {
    transition: color 0.3s, opacity 0.3s;
  }

  /* ── TOOLTIP ON HOVER (carousel arrows) ── */
  .carousel-arrow { position: relative; }
  .carousel-arrow::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px; height: 2px;
    background: var(--gold);
    transition: transform 0.3s;
    border-radius: 1px;
  }
  .carousel-arrow:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* ── CARD HOVER DEPTH ── */
  .carousel-card {
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), box-shadow 0.5s cubic-bezier(0.16,1,0.3,1);
  }
  .carousel-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 4px 6px rgba(0,0,0,0.04),
      0 10px 24px rgba(0,0,0,0.08),
      0 32px 64px rgba(0,0,0,0.08);
  }

  /* ── FORM INPUT LABEL ANIMATION ── */
  .cf-group {
    position: relative;
  }

  .cf-group label {
    transition: color 0.3s, transform 0.3s;
  }

  .cf-group input:focus ~ label,
  .cf-group textarea:focus ~ label {
    color: var(--gold);
  }

  .cf-group input:focus,
  .cf-group textarea:focus {
    background: #d0d0d4;
    box-shadow: 0 0 0 2px rgba(242,192,41,0.3);
    transform: translateY(-1px);
  }

  /* Input underline animation */
  .cf-group::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.4s cubic-bezier(0.25,0.1,0.25,1);
  }

  .cf-group:focus-within::after {
    width: 100%;
  }

  /* ── SUBMIT BUTTON PULSE ── */
  .cf-submit {
    position: relative;
    overflow: hidden;
  }

  .cf-submit::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: rgba(242,192,41,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .cf-submit:hover::before {
    width: 400px; height: 400px;
  }

  /* ── COMPARE CIRCLE PULSE HINT ── */
  .compare-circle {
    animation: pulseBorder 2.5s ease-in-out infinite;
  }

  @keyframes pulseBorder {
    0%, 100% { box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 6px rgba(242,192,41,0.1); }
    50% { box-shadow: 0 4px 30px rgba(242,192,41,0.35), 0 0 0 10px rgba(242,192,41,0.15); }
  }

  .compare-viewer.dragging .compare-circle {
    animation: none;
  }

  /* ── HERO PARALLAX LAYER ── */
  .hero-content {
    will-change: transform, opacity;
  }

  /* ── MARQUEE ITEM HOVER SCALE ── */
  .marquee-item {
    transition: opacity 0.3s, transform 0.3s;
  }

  .marquee-item:hover {
    opacity: 1;
    transform: scale(1.08);
  }

  /* ── CONTACT INFO ITEMS HOVER ── */
  .contact-detail-item {
    transition: transform 0.3s, background 0.3s;
    border-radius: 4px;
    padding: 24px 12px;
  }

  .contact-detail-item:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.03);
  }

  .cd-icon {
    transition: transform 0.3s;
  }

  .contact-detail-item:hover .cd-icon {
    transform: scale(1.15);
  }

  /* ── FOOTER LINKS UNDERLINE ── */
  .footer-col-v2 ul li a {
    position: relative;
    display: inline-block;
  }

  .footer-col-v2 ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 1px;
    background: #1a2744;
    transition: width 0.3s;
  }

  .footer-col-v2 ul li a:hover::after {
    width: 100%;
  }

  /* ── SOCIAL ICONS BOUNCE ── */
  .footer-socials a {
    transition: color 0.3s, transform 0.3s;
  }

  .footer-socials a:hover {
    color: var(--gold);
    transform: translateY(-3px);
  }

  /* ── PAYMENT BADGE HOVER ── */
  .pay-badge {
    transition: transform 0.2s, background 0.3s;
    cursor: default;
  }

  .pay-badge:hover {
    transform: translateY(-2px);
    background: #2a3a5e;
  }

  /* ── WHATSAPP BUTTON PULSE ── */
  .whatsapp-btn {
    animation: whatsappPulse 2s ease infinite;
  }

  @keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 36px rgba(37,211,102,0.6), 0 0 0 8px rgba(37,211,102,0.1); }
  }

  /* ── PROCESS CARD IMAGE ZOOM ── */
  .process-img::before,
  .process-img::after {
    transition: transform 0.5s cubic-bezier(0.25,0.1,0.25,1);
  }

  .process-card:hover .process-img::before {
    transform: translateX(-50%) scale(1.05);
  }

  .process-card:hover .process-num {
    color: var(--gold);
    transition: color 0.3s;
  }

  /* ── SECTION DIVIDERS ── */
  .section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 40px;
    border-radius: 1px;
    opacity: 0;
    transform: scaleX(0);
    transition: transform 0.6s, opacity 0.6s;
  }

  .section-divider.visible {
    opacity: 1;
    transform: scaleX(1);
  }

  /* ── NAVBAR ── */
  nav#mainNav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 20px 60px;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  nav.scrolled {
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-right: auto;
  }

  .nav-logo-img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s;
  }

  .nav-logo:hover .nav-logo-img {
    opacity: 0.8;
  }

  .nav-logo-icon {
    width: 48px; height: 48px;
    border: 2px solid var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px; color: var(--white);
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    position: relative;
  }

  .nav-logo-text {
    display: flex;
    align-items: baseline;
    gap: 0;
  }

  .nav-logo-text .bold {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .nav-logo-text .light {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 17px;
    color: var(--white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    gap: 56px;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    letter-spacing: 3px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--white);
    transition: width 0.3s;
  }

  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-links a.active {
    color: var(--white);
  }

  .nav-links a.active::after {
    width: 100%;
    background: var(--gold);
  }

  /* ── MEGA MENU ── */
  .has-mega {
    position: static;
  }

  .has-mega > a {
    display: flex;
    align-items: center;
  }

  .has-mega > a svg {
    transition: transform 0.3s;
    flex-shrink: 0;
  }

  .has-mega:hover > a svg {
    transform: rotate(180deg);
  }

  .has-mega > a::after {
    display: none;
  }

  .mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 48px 60px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    border-top: 1px solid rgba(0,0,0,0.04);
    z-index: 999;
  }

  .has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Invisible bridge to prevent gap hover loss */
  .has-mega::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    display: none;
  }

  .has-mega:hover::after {
    display: block;
  }

  /* Columns */
  .mega-col {
    padding: 0 32px;
    border-right: 1px solid rgba(0,0,0,0.06);
  }

  .mega-col:last-of-type {
    border-right: none;
  }

  .mega-col h6 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .mega-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-col ul li {
    margin-bottom: 4px;
  }

  .mega-col ul li a {
    color: #2a2a2a !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    padding: 8px 0;
    display: block;
    transition: color 0.2s, padding-left 0.2s;
    position: relative;
  }

  .mega-col ul li a::after {
    display: none !important;
  }

  .mega-col ul li a::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gold);
    border-radius: 2px;
    transition: height 0.2s;
  }

  .mega-col ul li a:hover {
    color: #1a1a1a !important;
    padding-left: 8px;
  }

  .mega-col ul li a:hover::before {
    height: 18px;
  }

  /* Feature image area */
  .mega-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
  }

  .mega-feature-img {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 4/5;
    background: #f0efed;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .mega-book-mock {
    display: flex;
    transform: rotate(-4deg);
    transition: transform 0.4s;
  }

  .mega-feature:hover .mega-book-mock {
    transform: rotate(0deg) scale(1.04);
  }

  .mega-book-spine {
    width: 14px;
    height: 180px;
    background: linear-gradient(90deg, #1a1816, #2a2624, #1e1c1a);
    border-radius: 2px 0 0 2px;
    position: relative;
    top: 4px;
  }

  .mega-book-front {
    width: 130px;
    height: 186px;
    background: linear-gradient(160deg, #2a2826, #1e1c1a, #161412);
    border-radius: 0 3px 3px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 4px 6px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(242,192,41,0.08);
  }

  .mega-book-front span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: #d4c9a8;
    text-align: center;
    line-height: 1.5;
    font-weight: 400;
  }

  .mega-book-leaf svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }

  .mega-feature-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-top: 16px;
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    width: 100%;
    max-width: 260px;
  }

  /* ── CARD GRADIENT BACKGROUNDS (extracted from inline styles) ── */
  .card-img-base {
    background: linear-gradient(135deg, #3a3530 0%, #2a2520 50%, #1a1510 100%);
  }
  .card-img-hover-a {
    background: linear-gradient(135deg, #4a4035 0%, #352d25 50%, #2a2018 100%);
  }
  .card-img-hover-b {
    background: linear-gradient(135deg, #4a3f32 0%, #352a20 50%, #2a1f15 100%);
  }
  .card-img-hover-c {
    background: linear-gradient(135deg, #453a2e 0%, #302520 50%, #251a12 100%);
  }

  /* ── COPY BANNER STYLES (extracted from inline) ── */
  .copy-banner {
    background: var(--light-bg);
    padding: 52px 48px;
    text-align: center;
  }
  .copy-banner-headline {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2.5vw, 28px);
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--dark-card);
    margin: 0;
  }
  .gold-bold {
    color: var(--gold);
    font-weight: 800;
  }

  /* ── UTILITY CLASSES (extracted from inline) ── */
  .map-iframe {
    border: 0;
    border-radius: 4px;
  }

  /* ── HERO ── */
  .hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
  }

  .hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-video-wrapper video,
  .hero-video-wrapper img.hero-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.1) 40%,
      rgba(0,0,0,0.5) 75%,
      rgba(10,10,10,1) 100%
    );
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1100px;
    padding: 0 60px 120px;
  }

  .hero-subtitle {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 100;
    font-size: 15px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s forwards;
  }

  .hero-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 82px);
    color: #fff;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-search {
    display: flex;
    align-items: center;
    background: var(--gold);
    border-radius: 0;
    padding: 0;
    max-width: 650px;
    margin: 60px 0 0 0;
    overflow: hidden;
    opacity: 0;
    animation: fadeUp 0.8s 0.7s forwards;
    border: 2px solid var(--gold);
  }

  .hero-search-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--black);
    padding: 16px 20px;
    white-space: nowrap;
    font-weight: 700;
  }

  .hero-search input {
    flex: 1;
    border: none;
    background: var(--black);
    color: var(--white);
    padding: 16px 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    outline: none;
    letter-spacing: 1px;
  }

  .hero-search input::placeholder {
    color: var(--light-gray);
  }

  .hero-search button {
    background: var(--gold);
    border: none;
    padding: 16px 24px;
    cursor: pointer;
    color: var(--black);
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: background 0.3s;
  }

  .hero-search button:hover {
    background: var(--gold-dark);
  }

  /* ── HERO CTA & DESCRIPTOR ── */
  .hero-descriptor {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s forwards;
  }

  .hero-cta {
    display: inline-block;
    margin-top: 32px;
    padding: 18px 48px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid var(--gold);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-cta:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(242,192,41,0.3);
  }

  .hero-cta-arrow {
    display: inline-block;
    transition: transform 0.3s;
  }

  .hero-cta:hover .hero-cta-arrow {
    transform: translateX(4px);
  }

  .hero-social-proof {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  /* ── SECTION STYLES ── */
  section {
    padding: 100px 48px;
  }

  .section-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-bottom: 12px;
  }

  .section-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 60px;
  }

  .section-title .highlight {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  /* ── ANTES / DESPUÉS SLIDER ── */
  /* ══════════════════════════════════════════════ */
  /* COMPARE SECTION — MULTI-SLIDE SYSTEM           */
  /* ══════════════════════════════════════════════ */
  .compare-section {
    background: var(--black);
    padding: 0;
  }

  /* ── INTRO ── */
  .compare-intro {
    text-align: center;
    padding: 64px 48px 40px;
    background: var(--black);
  }

  .compare-intro-sub {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }

  .compare-intro-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3.5vw, 44px);
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 14px;
  }

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

  .compare-intro-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 1px;
  }

  /* ── CAROUSEL CONTAINER ── */
  .compare-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px 48px;
  }

  /* ── SINGLE SLIDE ── */
  .compare-slide {
    display: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0,0,0,0.4);
    background: #1a1a1a;
  }

  .compare-slide.active { display: block; }

  /* ── VIEWER (the image comparison area) ── */
  .compare-viewer {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: col-resize;
    user-select: none;
    -webkit-user-select: none;
  }

  /* ── SIDES ── */
  .compare-side {
    position: absolute;
    inset: 0;
  }

  .compare-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .side-before {
    z-index: 2;
    clip-path: inset(0 40% 0 0);
  }

  .side-after { z-index: 1; }

  /* ── Gradient overlays for contrast on tags ── */
  .side-before::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to right, rgba(180,175,168,0.25) 0%, transparent 40%),
      linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
  }

  .side-after::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to left, rgba(0,0,0,0.15) 0%, transparent 40%),
      linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── LABEL TAGS (SIN FG / CON FG) ── */
  .compare-label-tag {
    position: absolute;
    top: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    z-index: 5;
    padding: 8px 18px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .before-tag-generic {
    left: 20px;
    color: #7a7570;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(0,0,0,0.08);
  }

  .after-tag-premium {
    right: 20px;
    color: var(--gold);
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(242,192,41,0.25);
  }

  .tag-icon { font-size: 10px; }

  /* ── QUALITY TAGS (always visible!) ── */
  .compare-tags {
    position: absolute;
    z-index: 6;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
  }

  .tags-right {
    right: 20px;
    bottom: 16px;
    align-items: flex-end;
  }

  .tags-left {
    left: 20px;
    bottom: 16px;
    align-items: flex-start;
  }

  .ctag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.8px;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    animation: ctagFloat 3s ease-in-out infinite;
  }

  .ctag-good {
    background: rgba(242,192,41,0.2);
    color: var(--gold);
    border: 1px solid rgba(242,192,41,0.3);
  }

  .ctag-bad {
    background: rgba(0,0,0,0.08);
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    text-decoration: line-through;
    text-decoration-color: rgba(200,60,60,0.5);
  }

  .ctag:nth-child(1) { animation-delay: 0s; }
  .ctag:nth-child(2) { animation-delay: 0.4s; }
  .ctag:nth-child(3) { animation-delay: 0.8s; }

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

  /* ── SLIDER HANDLE ── */
  .compare-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 60%;
    transform: translateX(-50%);
    width: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    pointer-events: none;
  }

  .compare-line {
    flex: 1;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.8) 15%, rgba(255,255,255,0.8) 85%, transparent 100%);
  }

  .compare-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 6px rgba(242,192,41,0.1);
    transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    pointer-events: auto;
    cursor: col-resize;
  }

  .compare-circle span {
    font-size: 15px;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
    transition: color 0.3s;
  }

  .compare-circle:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.08);
    box-shadow: 0 4px 30px rgba(242,192,41,0.4), 0 0 0 8px rgba(242,192,41,0.15);
  }

  .compare-circle:hover span { color: #fff; }

  .compare-viewer.dragging .compare-circle {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.12);
    box-shadow: 0 4px 30px rgba(242,192,41,0.5), 0 0 0 10px rgba(242,192,41,0.2);
  }

  .compare-viewer.dragging .compare-circle span { color: #fff; }

  .compare-viewer.dragging .compare-line {
    background: linear-gradient(180deg, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%);
    width: 3px;
  }

  /* ── DRAG HINT ── */
  .drag-hint {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: dragHintFade 0.6s 1.5s forwards;
    pointer-events: none;
  }

  .drag-hint.hidden { opacity: 0 !important; animation: none; transition: opacity 0.4s; }

  .drag-hint-arrow {
    font-size: 16px;
    color: rgba(255,255,255,0.4);
    animation: dragHintMove 1.5s ease-in-out infinite;
  }

  .drag-hint-arrow.left { animation-direction: reverse; }

  .drag-hint span:not(.drag-hint-arrow) {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  @keyframes dragHintMove {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(8px); opacity: 0.8; }
  }

  @keyframes dragHintFade {
    from { opacity: 0; transform: translateX(-50%) translateY(8px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  /* ── BOTTOM BAR (product name + CTA, inside slider) ── */
  .compare-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: rgba(26,26,26,0.97);
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .compare-bar-info h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 0 2px;
  }

  .compare-bar-info p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
    margin: 0;
  }

  .compare-bar-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s;
    white-space: nowrap;
  }

  .compare-bar-cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(242,192,41,0.3);
  }

  /* ── DOTS (product navigation) ── */
  .compare-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
  }

  .compare-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
  }

  .compare-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
  }

  .compare-dot:hover:not(.active) {
    background: rgba(255,255,255,0.4);
  }

  /* ── COPY BELOW (simplified) ── */
  .compare-copy {
    text-align: center;
    padding: 56px 48px 64px;
    background: var(--light-bg);
  }

  .compare-copy-main {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: clamp(20px, 2.5vw, 32px);
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 12px;
  }

  .compare-copy-main .highlight { color: var(--gold); }

  .compare-copy-sub {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #666;
    letter-spacing: 0.5px;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
  }

  /* ── AUTO-PLAY HINT ANIMATION ── */
  @keyframes autoPlayHint {
    0% { left: 60%; }
    30% { left: 30%; }
    70% { left: 70%; }
    100% { left: 60%; }
  }

  /* ── SIDE VERDICTS (kept for visual flair) ── */
  .side-verdict {
    position: absolute;
    bottom: 56px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    pointer-events: none;
  }

  .verdict-left {
    left: 20px;
    color: rgba(0,0,0,0.35);
  }

  .verdict-right {
    right: 20px;
    color: var(--gold);
  }

  .verdict-emoji { font-size: 14px; }
  /* ── prefers-reduced-motion ── */
  @media (prefers-reduced-motion: reduce) {
    .ctag { animation: none; }
    .drag-hint { animation: none; opacity: 1; }
    .drag-hint-arrow { animation: none; }
  }


  .products-type-section {
    background: var(--light-bg);
    padding: 72px 0 60px;
  }

  .products-type-header {
    padding: 0 60px;
    margin-bottom: 36px;
  }

  .products-type-header h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(16px, 2vw, 22px);
    letter-spacing: 6px;
    color: #1a1a1a;
    text-transform: uppercase;
  }

  .highlight-underline {
    color: var(--gold);
    font-style: italic;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-color: var(--gold);
  }

  .carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 24px;
  }

  .carousel-track-container {
    overflow: hidden;
    flex: 1;
    margin: 0 16px;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.6s cubic-bezier(0.25, 0.1, 0.25, 1);
  }

  .carousel-card {
    min-width: calc(25% - 16px);
    max-width: calc(25% - 16px);
    flex-shrink: 0;
    cursor: pointer;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
  }

  .carousel-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(242,192,41,0.1);
  }

  .card-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    max-height: 500px;
  }

  .carousel-card:hover .card-image-wrapper img,
  .carousel-card:hover .card-img {
    transform: scale(1.03);
  }

  .card-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s cubic-bezier(0.16,1,0.3,1),
                filter 1s cubic-bezier(0.16,1,0.3,1),
                transform 1.2s cubic-bezier(0.16,1,0.3,1);
  }

  .card-img-hover {
    opacity: 0;
    filter: blur(8px) brightness(0.8) saturate(0.6);
    transform: scale(1.04);
  }

  .carousel-card:hover .card-img-hover {
    opacity: 1;
    filter: blur(0px) brightness(1.05) saturate(1.1);
    transform: scale(1);
  }

  .carousel-card:not(.carousel-card-cta):hover .card-img:not(.card-img-hover) {
    opacity: 0;
    filter: blur(6px) brightness(0.5);
    transform: scale(0.97);
  }

  /* CTA card: subtle zoom on hover, no crossfade */
  .carousel-card-cta:hover .card-img {
    transform: scale(1.05);
    filter: brightness(1.15);
  }

  .card-img-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .card-label-hidden {
    opacity: 0;
  }

  /* ── CARD ACTION OVERLAY (now always visible) ── */
  .card-actions-overlay {
    display: none;
  }

  /* Product name inside overlay */
  .card-overlay-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    margin-bottom: 16px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }

  /* Two-button row */
  .card-action-btns {
    display: flex;
    gap: 8px;
    width: 100%;
  }

  .card-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    white-space: nowrap;
    transform: translateY(8px);
    opacity: 0;
  }

  .carousel-card:hover .card-btn {
    transform: translateY(0);
    opacity: 1;
  }

  .carousel-card:hover .card-btn:nth-child(1) {
    transition-delay: 0.05s;
  }
  .carousel-card:hover .card-btn:nth-child(2) {
    transition-delay: 0.1s;
  }

  /* Vista Rápida button */
  .card-btn-preview {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
  }

  .card-btn-preview:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.3);
  }

  .card-btn-preview svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  /* Cotizar button */
  .card-btn-cotizar {
    background: var(--whatsapp);
    color: #fff;
  }

  .card-btn-cotizar:hover {
    background: var(--whatsapp-hover);
    box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  }

  .card-btn-cotizar svg {
    width: 13px;
    height: 13px;
    fill: white;
  }

  /* ── CARD BODY INFO (redesigned) ── */
  .card-info {
    padding: 16px 18px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .carousel-card {
    display: flex;
    flex-direction: column;
  }

  .card-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: none;
    color: #1a1a1a;
    line-height: 1.3;
    transition: color 0.4s cubic-bezier(0.16,1,0.3,1);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .carousel-card:hover .card-label {
    color: var(--gold-dark);
  }

  .card-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--light-gray);
    margin-top: 6px;
    letter-spacing: 0.3px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 12px;
  }

  .card-tag {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--light-gray);
    background: #f4f4f6;
    padding: 4px 10px;
    border-radius: 100px;
  }

  .card-cta-row {
    display: flex;
    gap: 8px;
    margin-top: 16px;
  }

  .card-cta-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
  }

  .card-cta-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 4px 12px rgba(242,192,41,0.3);
  }

  .card-cta-primary svg {
    width: 13px;
    height: 13px;
    fill: currentColor;
  }

  .card-cta-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    background: transparent;
    color: var(--light-gray);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s;
  }

  .card-cta-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .card-cta-wpp {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #25D366;
    border-color: rgba(37,211,102,0.25);
  }

  .card-cta-wpp:hover {
    background: rgba(37,211,102,0.08);
    border-color: #25D366;
    color: #25D366;
  }

  .card-cta-wpp svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .card-cta-wpp-only {
    background: #25D366;
    color: #fff;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .card-cta-wpp-only:hover {
    background: #1ebe5a;
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
  }

  .card-cta-wpp-only svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
    flex-shrink: 0;
  }

  .card-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    background: rgba(242,192,41,0.15);
    border: 1px solid rgba(242,192,41,0.25);
    border-radius: 100px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold);
    text-transform: uppercase;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* ── Gold top accent line on hover ── */
  .card-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    z-index: 6;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }

  .carousel-card:hover .card-image-wrapper::before {
    transform: scaleX(1);
  }

  /* Mock product illustrations — SCALED UP */
  .mock-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    transform: perspective(400px) rotateX(12deg) rotateY(-5deg);
  }

  .mock-stack.shifted {
    transform: perspective(400px) rotateX(8deg) rotateY(5deg);
  }

  .mock-card-item {
    width: 160px;
    height: 95px;
    background: linear-gradient(135deg, #2a2520, #1a1510);
    border: 1px solid rgba(200,170,100,0.15);
    border-radius: 3px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  }

  .mock-card-item.gold-edge {
    border-color: rgba(200,170,100,0.4);
    box-shadow: 0 4px 20px rgba(200,170,100,0.2);
  }

  .mock-book-stack {
    position: relative;
    width: 130px;
    height: 170px;
  }

  .mock-book {
    position: absolute;
    bottom: 0;
    width: 115px;
    height: 145px;
    background: linear-gradient(135deg, #2a2520, #1a1510);
    border: 1px solid rgba(200,170,100,0.1);
    border-radius: 3px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  }

  .mock-book:nth-child(1) { left: 0; bottom: 0; }
  .mock-book:nth-child(2) { left: 6px; bottom: 7px; }
  .mock-book.top { left: 12px; bottom: 14px; z-index: 2; }

  .mock-book.gold-accent {
    border-color: rgba(200,170,100,0.3);
    box-shadow: 0 6px 24px rgba(200,170,100,0.12);
  }

  .mock-box {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .mock-box-lid {
    width: 145px;
    height: 28px;
    background: linear-gradient(180deg, #3a3530, #2a2520);
    border: 1px solid rgba(200,170,100,0.1);
    border-radius: 3px 3px 0 0;
    transition: transform 0.4s;
  }

  .mock-box.open .mock-box-lid {
    transform: translateY(-16px) rotateX(-15deg);
  }

  .mock-box-base {
    width: 135px;
    height: 105px;
    background: linear-gradient(180deg, #2a2520, #1a1510);
    border: 1px solid rgba(200,170,100,0.1);
    border-radius: 0 0 3px 3px;
  }

  .mock-box-base.gold-trim {
    border-color: rgba(200,170,100,0.3);
    box-shadow: 0 4px 16px rgba(200,170,100,0.1);
  }

  .mock-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .mock-banner-roll {
    width: 130px;
    height: 22px;
    background: linear-gradient(180deg, #555, #333);
    border-radius: 11px;
  }

  .mock-banner-sheet {
    width: 110px;
    height: 135px;
    background: linear-gradient(180deg, #ddd, #bbb);
    border-radius: 0 0 3px 3px;
    border: 1px solid rgba(0,0,0,0.1);
  }

  .mock-banner.wide .mock-banner-roll { width: 150px; }
  .mock-banner.wide .mock-banner-sheet { width: 130px; }
  .mock-banner-sheet.gold-sheet {
    background: linear-gradient(180deg, var(--gold), #d4a820);
  }

  /* CTA card */
  /* ── CTA CARD (matches regular card design) ── */
  .cta-card-bg {
    background: linear-gradient(135deg, #1a1a1a, #2a2620) !important;
  }

  .cta-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(242,192,41,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .cta-card-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.7);
    text-align: center;
    line-height: 1.5;
    margin: 0;
  }

  /* Carousel arrows */
  .carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ccc;
    background: var(--light-bg);
    color: #333;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    z-index: 5;
    font-weight: 300;
  }

  .carousel-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: var(--light-bg);
  }

  /* ── CLIENTS MARQUEE ── */
  .clients-section-v2 {
    background: var(--light-bg);
    padding: 60px 0;
    overflow: hidden;
  }

  .clients-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
  }

  .marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-bg), transparent);
  }

  .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--light-bg), transparent);
  }

  .marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
  }

  .marquee-track:hover {
    animation-play-state: paused;
  }

  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 64px;
    opacity: 0.45;
    transition: opacity 0.3s;
    cursor: default;
  }

  .marquee-item:hover {
    opacity: 1;
  }

  .marquee-item span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
  }

  .logo-cubrica { font-family: 'Roboto Condensed', sans-serif !important; font-style: italic; }
  .logo-cubrica small { font-style: normal; letter-spacing: 1px; }
  .logo-bansi { font-size: 22px !important; color: #c62828 !important; }
  .logo-bansi b { color: #c62828; }
  .logo-sakata { font-size: 22px !important; color: #1a3a6e !important; font-weight: 700 !important; }
  .logo-seasons { font-size: 12px !important; letter-spacing: 3px !important; line-height: 1.5 !important; }
  .logo-seasons small { font-size: 10px; letter-spacing: 2px; display: block; margin-top: 2px; }
  .logo-santo { font-family: 'Roboto Condensed', sans-serif !important; font-size: 20px !important; font-style: italic; }
  .logo-legacy { font-size: 16px !important; letter-spacing: 6px !important; font-weight: 300 !important; }
  .logo-gloss { font-size: 20px !important; letter-spacing: 3px !important; line-height: 1.2 !important; }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px; height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
  }

  .whatsapp-btn:hover { transform: scale(1.1); }
  .whatsapp-btn svg { width: 28px; height: 28px; fill: white; }

  /* ── INDUSTRY SECTION (reuses carousel styles) ── */
  .industry-bg {
    background-color: var(--light-bg);
  }

  /* ── INDUSTRY CARD REDESIGN ── */
  .industry-card .card-image-wrapper {
    aspect-ratio: 4/3;
  }

  .industry-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
  }

  .industry-icon {
    font-size: 24px;
    margin-bottom: 8px;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
  }

  .industry-name {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.3px;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
  }

  .industry-count {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
    margin-top: 3px;
  }

  .industry-bg .card-image-wrapper::after {
    display: none;
  }

  .industry-bg .carousel-card {
    position: relative;
  }

  .industry-card .card-desc {
    -webkit-line-clamp: 3;
  }

  /* ── CTA BANNER V2 ── */
  .cta-banner-v2 {
    text-align: center;
    padding: 72px 48px;
    background: var(--light-bg);
  }

  .cta-banner-v2 .cta-line1 {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(22px, 3.5vw, 42px);
    color: #1a1a1a;
    letter-spacing: 3px;
    line-height: 1.4;
    margin-bottom: 8px;
  }

  .cta-banner-v2 .cta-line2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(20px, 3vw, 38px);
    color: var(--gold);
    letter-spacing: 3px;
    line-height: 1.4;
  }

  /* ── PROCESS STEPS V2 ── */
  .process-section-v2 {
    background: var(--light-bg);
    padding: 60px 48px 80px;
    overflow-x: auto;
  }

  /* Accordion: hidden on desktop */
  .process-accordion { display: none; }

  .process-steps-grid {
    display: flex;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    min-height: 520px;
  }

  .process-card {
    flex: 1;
    min-width: 180px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s;
    cursor: pointer;
  }

  .process-card:hover {
    transform: translateY(-6px);
  }

  .process-card.offset-down {
    margin-top: 60px;
  }

  .process-card.offset-up {
    margin-top: 60px;
  }

  .reveal-card.visible.offset-up {
    margin-top: 0;
  }

  .process-img {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 2px;
    background: linear-gradient(135deg, #b8b2aa 0%, #a8a29a 40%, #9a948c 100%);
  }

  .process-img-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse at 30% 40%, rgba(200,195,185,0.6) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 30%, rgba(210,220,225,0.3) 0%, transparent 50%),
      linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 100%);
  }

  /* Dark product stack illustration */
  .process-img::before {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 65%;
    height: 35%;
    background: linear-gradient(135deg, #2a2520, #1a1510);
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 1;
  }

  .process-img::after {
    content: '';
    position: absolute;
    bottom: 12%;
    left: 48%;
    transform: translateX(-50%);
    width: 65%;
    height: 33%;
    background: linear-gradient(135deg, #353025, #252018);
    border-radius: 2px;
    z-index: 0;
  }

  .process-num {
    position: absolute;
    top: -16px;
    right: -8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(60px, 6vw, 90px);
    color: #fff;
    z-index: 3;
    line-height: 1;
    text-shadow: 0 3px 20px rgba(0,0,0,0.2);
    opacity: 0.9;
    transition: color 0.4s, text-shadow 0.4s, transform 0.4s;
  }

  .process-card:hover .process-num {
    color: var(--gold);
    text-shadow: 0 3px 24px rgba(242,192,41,0.4);
    transform: scale(1.08);
  }

  .process-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-align: center;
    line-height: 1.8;
    margin-top: 20px;
    padding: 0 4px;
  }

  /* Reveal cards on scroll */
  .reveal-card {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(3px);
    transition: opacity 0.4s ease-out,
                transform 0.4s ease-out,
                filter 0.4s ease-out,
                margin-top 0.4s ease-out;
  }

  .reveal-card.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  .reveal-card:nth-child(1) { transition-delay: 0s; }
  .reveal-card:nth-child(2) { transition-delay: 0.08s; }
  .reveal-card:nth-child(3) { transition-delay: 0.16s; }
  .reveal-card:nth-child(4) { transition-delay: 0.24s; }
  .reveal-card:nth-child(5) { transition-delay: 0.32s; }

  /* ── CONTACT V2 ── */
  .contact-tabs-mobile { display: none; }

  .contact-section-v2 {
    background: var(--light-bg);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%;
    min-height: 100vh;
  }

  /* Form panel */
  .contact-form-panel {
    background: var(--light-bg);
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-form-header p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 18px;
    letter-spacing: 6px;
    color: #1a1a1a;
    line-height: 1.8;
  }

  .contact-form-header .gold {
    color: var(--gold);
  }

  .cf-group {
    margin-top: 28px;
  }

  .cf-group label {
    display: block;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    margin-bottom: 10px;
  }

  .cf-group input,
  .cf-group textarea {
    width: 100%;
    background: #dddde0;
    border: none;
    border-radius: 0;
    color: #1a1a1a;
    padding: 14px 16px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    outline: none;
    transition: background 0.3s, box-shadow 0.3s;
  }

  .cf-group input:focus,
  .cf-group textarea:focus {
    background: #d0d0d4;
    box-shadow: 0 0 0 2px rgba(242,192,41,0.3);
  }

  .cf-group textarea {
    resize: vertical;
    min-height: 120px;
  }

  .cf-submit {
    margin-top: 32px;
    width: 100%;
    padding: 16px;
    background: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 28px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
  }

  .cf-submit:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(242,192,41,0.3);
  }

  .cf-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
  }

  .cf-submit--loading {
    background: var(--gold);
    opacity: 0.8;
  }

  .cf-submit--success {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: white;
  }

  .cf-submit--error {
    background: #dc3545;
    border-color: #dc3545;
    color: white;
  }

  .cf-feedback {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    animation: fadeUp 0.4s forwards;
  }

  .cf-feedback--success {
    background: rgba(37,211,102,0.1);
    border: 1px solid var(--whatsapp);
    color: #1a1a1a;
  }

  .cf-feedback--error {
    background: rgba(220,53,69,0.1);
    border: 1px solid #dc3545;
    color: #dc3545;
  }

  .cf-input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220,53,69,0.2);
  }

  .cf-input-valid {
    border-color: var(--whatsapp) !important;
  }

  .cf-response-time {
    text-align: center;
    margin-top: 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--light-gray);
  }

  .cf-response-time strong {
    color: var(--gold);
  }

  /* Info panel */
  .contact-info-panel {
    background: #1a1a1a;
    padding: 72px 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
  }

  .contact-tagline {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.8);
    line-height: 2;
  }

  .contact-details-row {
    display: flex;
    gap: 32px;
  }

  .contact-details-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .contact-detail-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .contact-detail-item.full-width {
    width: 100%;
  }

  .cd-icon {
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
  }

  .contact-detail-item h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
  }

  .contact-detail-item p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }

  .contact-map {
    margin-top: auto;
    border-radius: 4px;
    overflow: hidden;
  }

  .contact-map iframe {
    display: block;
  }

  .map-overlay-wrapper {
    position: relative;
  }

  .map-touch-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(10,10,10,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: opacity 0.3s;
  }

  .map-touch-overlay span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    color: var(--white);
    background: rgba(0,0,0,0.6);
    padding: 10px 20px;
    border-radius: 6px;
  }

  .map-touch-overlay.active {
    opacity: 0;
    pointer-events: none;
  }

  /* ── TEAM PHOTO ── */
  /* ── TEAM PHOTO ── */
  .team-photo-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--light-bg);
  }

  .team-photo {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(1);
    object-fit: cover;
    object-position: center 30%;
    transition: filter 0.6s, transform 0.6s;
  }

  .team-photo-section:hover .team-photo {
    filter: grayscale(0.5);
    transform: scale(1.01);
  }

  .team-badge {
    position: absolute;
    bottom: 32px;
    right: 48px;
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
  }

  .team-badge-logo {
    width: 48px; height: 48px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
  }

  .team-badge-text {
    display: flex;
    flex-direction: column;
  }

  .team-badge-text span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1.5px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }

  .team-badge-text small {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.8);
    margin-top: 2px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  }

  /* ── FOOTER V2 ── */
  .footer-v2 {
    background: var(--light-bg);
    padding: 64px 60px 32px;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 48px;
  }

  /* Newsletter */
  .footer-newsletter h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-weight: 700;
    font-size: 18px;
    color: #1a2744;
    margin-bottom: 24px;
    line-height: 1.4;
  }

  .footer-email-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #bbb;
    padding-bottom: 4px;
    max-width: 340px;
  }

  .footer-email-input input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    padding: 10px 0;
    outline: none;
  }

  .footer-email-input input::placeholder {
    color: #aaa;
  }

  .footer-email-input button {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background: transparent;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
  }

  .footer-email-input button:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* Footer columns */
  .footer-col-v2 h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #1a2744;
    margin-bottom: 20px;
  }

  .footer-col-v2 ul {
    list-style: none;
  }

  .footer-col-v2 ul li {
    margin-bottom: 12px;
  }

  .footer-col-v2 ul li a {
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #5a6070;
    transition: color 0.3s;
  }

  .footer-col-v2 ul li a:hover {
    color: #1a2744;
  }

  .footer-about {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    color: #5a6070;
    line-height: 1.7;
  }

  .footer-about strong {
    color: #1a2744;
    font-weight: 500;
  }

  /* Social icons */
  .footer-social-row {
    padding: 24px 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 24px;
  }

  .footer-socials {
    display: flex;
    gap: 24px;
  }

  .footer-socials a {
    color: #1a2744;
    transition: color 0.3s;
    display: flex;
    align-items: center;
  }

  .footer-socials a:hover {
    color: var(--gold);
  }

  /* Bottom bar */
  .footer-bottom-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-bottom-v2 p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    color: var(--light-gray);
  }

  .payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #1a2744;
    border-radius: 4px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.5px;
    min-width: 52px;
    text-align: center;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }

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

  /* ── RESPONSIVE ── */
  /* ── NAV CTA BUTTON ── */
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-radius: 28px;
    margin-left: 32px;
    transition: all 0.3s;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .nav-cta:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  }

  .nav-cta svg {
    flex-shrink: 0;
  }

  /* ── SIDE DOTS NAV ── */
  .side-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.4s;
  }

  .side-dots.visible {
    opacity: 1;
  }

  .side-dot {
    position: relative;
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(26,26,26,0.2);
    border: 1.5px solid rgba(26,26,26,0.15);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
  }

  .side-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
  }

  .side-dot span {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #1a1a1a;
    white-space: nowrap;
    background: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
    transform: translateY(-50%) translateX(6px);
  }

  .side-dot:hover span {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }

  /* ── CLIENT LOGOS STRIP ── */
  .clients-section {
    padding: 48px 32px;
    background: #ffffff;
    text-align: center;
    overflow: hidden;
  }

  .clients-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 32px;
  }

  .clients-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    min-height: 56px;
  }

  .clients-track {
    display: flex !important;
    align-items: center;
    gap: 40px;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
    min-height: 56px;
  }

  .clients-track img {
    height: 56px;
    width: 130px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.45);
    transition: filter 0.3s ease;
    flex-shrink: 0;
  }

  .clients-track img:hover {
    filter: grayscale(0%) opacity(0.85);
  }

  @keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Nosotros variant: dark bg, inverted logos */
  .clients-section-nosotros {
    background: #1a1a1a;
  }
  .clients-section-nosotros .clients-label {
    color: rgba(255,255,255,0.5);
  }
  .clients-section-nosotros .clients-track img {
    filter: grayscale(100%) invert(1) opacity(0.4);
  }
  .clients-section-nosotros .clients-track img:hover {
    filter: grayscale(0%) invert(1) opacity(0.8);
  }

  /* ── STATS COUNTERS ── */
  .stats-section {
    background: var(--light-bg);
    padding: 48px 48px;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    justify-items: center;
    gap: 0;
    max-width: 960px;
    margin: 0 auto;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    text-align: center;
    padding: 12px 20px;
    position: relative;
  }

  /* Vertical dividers between stat items via pseudo-elements */
  .stat-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0,0,0,0.08);
  }

  .stat-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(36px, 4vw, 56px);
    color: #1a1a1a;
    line-height: 1;
    display: inline;
  }

  .stat-suffix {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3vw, 36px);
    color: var(--gold);
    line-height: 1;
  }

  .stat-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--light-gray);
    margin-top: 10px;
    line-height: 1.6;
  }

  /* SAFETY: ensure stats are ALWAYS visible even if reveal JS doesn't fire */
  .stats-section {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .stats-grid.reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }

  /* stat-divider hidden — using pseudo-elements instead */

  .carousel-card {
    position: relative;
  }

  /* ── WHATSAPP FLOAT CONTEXTUAL ── */
  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .wa-tooltip {
    background: #fff;
    color: #1a1a1a;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    max-width: 220px;
  }

  .whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  .whatsapp-float .whatsapp-btn {
    position: relative;
  }
  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    margin-left: auto;
    z-index: 1002;
    -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE MENU CLOSE BUTTON ── */
  .mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    z-index: 1003;
    transition: all 0.3s;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-close:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ── CAROUSEL DOTS ── */
  .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 8px 0;
  }

  .carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    position: relative;
  }
  /* 44px invisible touch target */
  .carousel-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
  }

  .carousel-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
    transform: none;
  }

  .carousel-dot:hover {
    background: var(--gold-dark);
  }

  /* ── MOBILE MENU OVERLAY ── */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s;
    overflow-y: auto;
  }
  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
  }
  .mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .mobile-menu-links li a {
    display: block;
    padding: 18px 0;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
  }
  .mobile-menu-links li a:hover,
  .mobile-menu-links li a:active {
    color: var(--gold);
    padding-left: 8px;
  }
  .mobile-menu-links li.mobile-mega-title > a {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    letter-spacing: 5px;
    padding: 24px 0 8px;
    border-bottom: none;
    pointer-events: none;
  }
  .mobile-menu-links li.mobile-mega-item a {
    font-size: 15px;
    letter-spacing: 2px;
    padding: 12px 0 12px 16px;
    color: rgba(255,255,255,0.7);
  }
  .mobile-menu-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    border-radius: 32px;
    margin-top: 32px;
    transition: background 0.3s;
  }
  .mobile-menu-cta:hover { background: var(--whatsapp-hover); }
  .mobile-menu-cta svg { width: 20px; height: 20px; fill: white; }

  /* ── STICKY MOBILE CTA ── */
  .mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 8999;
    background: var(--whatsapp);
    padding: 0;
  }
  .mobile-sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .mobile-sticky-cta svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }
  /* ── YELLOW TOOLTIP NOTE ── */
  .note-tooltip {
    position: absolute;
    background: var(--gold);
    color: var(--black);
    padding: 10px 14px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 10px;
    letter-spacing: 1px;
    max-width: 180px;
    line-height: 1.5;
    z-index: 5;
  }

  .note-tooltip::before {
    content: '';
    position: absolute;
    width: 0; height: 0;
    border: 6px solid transparent;
  }


/* ══════════════════════════════════════════════════════════ */
/* NOSOTROS PAGE STYLES                                      */
/* ══════════════════════════════════════════════════════════ */

  /* ── HERO NOSOTROS ── */
  .nosotros-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 520px;
    max-height: 780px;
    overflow: hidden;
    margin-top: 64px;
  }

  .nosotros-hero-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 40%;
    transition: transform 10s ease-out;
  }

  .nosotros-hero:hover .nosotros-hero-img {
    transform: scale(1.04);
  }

  .nosotros-hero-overlay {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.6) 100%),
      linear-gradient(90deg, rgba(0,0,0,0.25) 0%, transparent 50%);
    pointer-events: none;
  }

  /* Rotating service text top-left */
  .nosotros-service-rotator {
    position: absolute;
    top: 48px;
    left: 48px;
    z-index: 3;
    height: 20px;
    overflow: hidden;
  }

  .service-word {
    position: absolute;
    top: 0; left: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s, transform 0.5s;
  }

  .service-word.active {
    opacity: 1;
    transform: translateY(0);
  }

  /* Title bottom-right */
  .nosotros-hero-title {
    position: absolute;
    bottom: 48px;
    right: 60px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 6vw, 80px);
    color: #fff;
    letter-spacing: 14px;
    text-shadow: 0 4px 40px rgba(0,0,0,0.5);
    z-index: 3;
    line-height: 1;
  }

  /* ── QUÉ HACEMOS ── */
  .que-hacemos {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 72px;
    padding: 100px 72px;
    align-items: center;
    background: var(--light-bg);
  }

  .que-hacemos-left {
    min-width: 0;
  }

  .que-hacemos-question {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(38px, 5vw, 72px);
    color: #1a1a1a;
    letter-spacing: 1px;
    line-height: 1.05;
    max-width: 100%;
    overflow: hidden;
  }

  .que-hacemos-en {
    display: inline-block;
    text-align: right;
    width: 100%;
    font-weight: 900;
    font-style: italic;
    font-size: clamp(34px, 4.2vw, 60px);
  }

  .que-hacemos-brand {
    font-family: 'Brittany Signature', cursive;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(40px, 5vw, 72px);
    color: #1a1a1a;
    line-height: 1.3;
    display: block;
  }

  .que-hacemos-right {
    padding-top: 12px;
  }

  .que-hacemos-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #444;
    letter-spacing: 0.3px;
    line-height: 1.8;
    margin-bottom: 40px;
  }

  .cotizar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 56px;
    background: var(--gold);
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 4px;
    border-radius: 32px;
    transition: all 0.3s;
  }

  .cotizar-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(242,192,41,0.3);
  }

  /* ── VIDEO / SERVICIOS GRID ── */
  .servicios-visual {
    padding: 0;
    background: var(--black);
  }

  .servicios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
  }

  .servicio-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
  }

  .servicio-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
    filter: brightness(0.6);
  }

  .servicio-card:hover .servicio-card-img {
    transform: scale(1.08);
    filter: brightness(0.85);
  }

  .servicio-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.6) 100%);
    pointer-events: none;
  }

  .servicio-card-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 3px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
  }

  .servicio-card-sub {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
  }

  /* ── ¿POR QUÉ SOMOS DIFERENTES? ── */
  .diferencia-section {
    padding: 100px 20px;
    background: #fff;
    overflow: hidden;
    position: relative;
  }

  /* Subtle decorative glow */
  .diferencia-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(242,192,41,0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .diferencia-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .diferencia-header {
    text-align: center;
    margin-bottom: 70px;
  }

  .diferencia-sub {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 20px;
  }

  .diferencia-sub::before,
  .diferencia-sub::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--gold);
  }

  .diferencia-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: #1a1a1a;
    letter-spacing: -1px;
    line-height: 1.2;
  }

  .diferencia-title em {
    font-style: italic;
    color: var(--gold-dark);
  }

  /* Grid */
  .diferencia-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  /* Card */
  .diferencia-card {
    position: relative;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 24px;
    padding: 45px 40px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
  }

  /* Left accent bar — grows on hover */
  .diferencia-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    border-radius: 0 0 4px 0;
    transition: height 0.5s ease;
  }

  /* Subtle gradient overlay on hover */
  .diferencia-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(242,192,41,0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
  }

  .diferencia-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0,0,0,0.1);
    box-shadow:
      0 8px 16px rgba(0,0,0,0.04),
      0 25px 50px rgba(0,0,0,0.08);
  }

  .diferencia-card:hover::before { height: 100%; }
  .diferencia-card:hover::after { opacity: 1; }

  /* Number */
  .diferencia-card-num {
    position: absolute;
    top: 30px;
    right: 35px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: 5rem;
    line-height: 1;
    color: rgba(0,0,0,0.08);
    z-index: 1;
    pointer-events: none;
    transition: color 0.4s ease;
  }

  .diferencia-card:hover .diferencia-card-num {
    color: #1a1a1a;
  }

  /* Icon */
  .diferencia-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
  }

  .diferencia-card-icon svg {
    width: 28px;
    height: 28px;
    transition: all 0.4s ease;
  }

  .diferencia-card:hover .diferencia-card-icon {
    transform: scale(1.1) rotate(-5deg);
  }

  /* Per-card colors */
  .dcard-blue::before { background: #4a7c94; }
  .dcard-blue .diferencia-card-icon { background: rgba(74,124,148,0.12); }
  .dcard-blue .diferencia-card-icon svg { stroke: #4a7c94; }
  .dcard-blue:hover .diferencia-card-icon { background: #4a7c94; }
  .dcard-blue:hover .diferencia-card-icon svg { stroke: #fff; }

  .dcard-olive::before { background: #9eb01a; }
  .dcard-olive .diferencia-card-icon { background: rgba(158,176,26,0.12); }
  .dcard-olive .diferencia-card-icon svg { stroke: #9eb01a; }
  .dcard-olive:hover .diferencia-card-icon { background: #9eb01a; }
  .dcard-olive:hover .diferencia-card-icon svg { stroke: #fff; }

  .dcard-orange::before { background: #e67e22; }
  .dcard-orange .diferencia-card-icon { background: rgba(230,126,34,0.12); }
  .dcard-orange .diferencia-card-icon svg { stroke: #e67e22; }
  .dcard-orange:hover .diferencia-card-icon { background: #e67e22; }
  .dcard-orange:hover .diferencia-card-icon svg { stroke: #fff; }

  .dcard-gold::before { background: var(--gold); }
  .dcard-gold .diferencia-card-icon { background: rgba(242,192,41,0.15); }
  .dcard-gold .diferencia-card-icon svg { stroke: var(--gold-dark); }
  .dcard-gold:hover .diferencia-card-icon { background: var(--gold); }
  .dcard-gold:hover .diferencia-card-icon svg { stroke: #1a1a1a; }

  .diferencia-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
  }

  .diferencia-card p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
  }

  /* Mobile carousel dots */
  .diferencia-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }
  .diferencia-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }
  .diferencia-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
  }
  .diferencia-dot.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
    transform: none;
  }

  /* ── PILARES SECTION ── */
  .pilares-section {
    padding: 80px 72px 72px;
    background: #fdfefd;
  }

  .pilares-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1040px;
    margin: 0 auto 64px;
    text-align: center;
  }

  .pilar {
    position: relative;
    padding: 36px 24px 32px;
    border-radius: 4px;
    transition: background 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
  }

  /* Gold top line that grows on hover */
  .pilar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  }

  .pilar:hover {
    background: rgba(242,192,41,0.04);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(242,192,41,0.06);
  }

  .pilar:hover::before {
    width: 100%;
  }

  .pilar h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 4px;
    color: #1a1a1a;
    margin-bottom: 14px;
    transition: color 0.3s cubic-bezier(0.16,1,0.3,1);
  }

  .pilar:hover h5 {
    color: var(--gold-dark);
  }

  .pilar p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 15px;
    color: #666;
    line-height: 1.75;
    letter-spacing: 0.3px;
  }

  /* Closing statement */
  .diferencia-closing {
    text-align: right;
    max-width: 1040px;
    margin: 0 auto;
    padding: 48px 0 0;
    border-top: 1px solid rgba(0,0,0,0.08);
  }

  .diferencia-closing p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.4vw, 16px);
    letter-spacing: 4px;
    color: var(--light-gray);
    line-height: 2.2;
    text-transform: uppercase;
  }

  .diferencia-closing strong {
    font-weight: 700;
    color: #1a1a1a;
  }

  .pilares-dots {
    display: none;
  }

  .proceso-dots,
  .proceso-tabs,
  .proceso-progress {
    display: none;
  }
  .proceso-detail {
    display: none;
  }

  /* ── NUESTRO PROCESO ── */
  .proceso-section {
    padding: 100px 20px;
    background: #fff !important;
    overflow: hidden;
  }

  .proceso-container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .proceso-header {
    text-align: center;
    margin-bottom: 80px;
  }

  .proceso-badge {
    display: inline-block;
    padding: 10px 28px;
    background: var(--gold);
    color: #1a1a1a;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
  }

  .proceso-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -2px;
    line-height: 1.1;
  }

  .proceso-title em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 800;
  }

  .proceso-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 1.15rem;
    color: var(--light-gray);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
  }

  /* Timeline */
  .proceso-timeline {
    position: relative;
    padding-top: 30px;
  }

  /* Connecting line */
  .proceso-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold) 80%, transparent 100%);
    z-index: 1;
    border-radius: 2px;
  }

  /* Steps row */
  .proceso-steps {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    z-index: 2;
  }

  .proceso-step {
    flex: 1;
    text-align: center;
  }

  /* Number circle */
  .proceso-num {
    width: 65px;
    height: 65px;
    background: #fff;
    border: 3px solid #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    transition: all 0.4s ease;
    position: relative;
  }

  .proceso-num::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
  }

  .proceso-step:hover .proceso-num {
    background: #1a1a1a;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0,0,0,0.15);
  }

  .proceso-step:hover .proceso-num::after {
    border-color: rgba(0,0,0,0.1);
  }

  /* Card */
  .proceso-card {
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 20px;
    padding: 35px 20px;
    transition: all 0.4s ease;
  }

  .proceso-step:hover .proceso-card {
    background: #1a1a1a;
    border-color: #1a1a1a;
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
  }

  /* Icon */
  .proceso-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
  }

  .proceso-icon svg {
    width: 100%;
    height: 100%;
    stroke: #999;
    stroke-width: 1.5;
    fill: none;
    transition: all 0.4s ease;
  }

  .proceso-step:hover .proceso-icon svg {
    stroke: var(--gold);
  }

  /* Title & desc */
  .proceso-card h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.4s ease;
  }

  .proceso-step:hover .proceso-card h4 {
    color: #fff;
  }

  .proceso-card p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.6;
    transition: color 0.4s ease;
  }

  .proceso-step:hover .proceso-card p {
    color: rgba(255,255,255,0.6);
  }

  /* ── NUESTRA HISTORIA ── */
  .historia {
    padding: 100px 72px;
    background: var(--light-bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }

  .historia-stats {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .historia-stat {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }

  .historia-stat-number {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(40px, 4vw, 64px);
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
  }

  .historia-stat-text {
    padding-top: 8px;
  }

  .historia-stat-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
  }

  .historia-stat-desc {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666;
    letter-spacing: 0.5px;
    line-height: 1.6;
  }

  .historia-narrative {
    padding-left: 24px;
    border-left: 3px solid var(--gold);
  }

  .historia-narrative h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 2.5vw, 36px);
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .historia-narrative p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
  }

  .historia-narrative p:last-child {
    margin-bottom: 0;
  }

  /* ── EQUIPO ── */
  .equipo-section {
    position: relative;
    overflow: hidden;
    line-height: 0;
  }

  .equipo-photo {
    width: 100%;
    height: 50vh;
    min-height: 360px;
    object-fit: cover;
    object-position: center 30%;
    filter: grayscale(0.8);
    transition: filter 1s, transform 1s;
  }

  .equipo-section:hover .equipo-photo {
    filter: grayscale(0.3);
    transform: scale(1.02);
  }

  .equipo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(10,10,10,0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 48px;
    pointer-events: none;
  }

  .equipo-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    pointer-events: auto;
  }

  .equipo-badge-icon {
    width: 52px; height: 52px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-style: italic;
    font-weight: 300;
    font-size: 15px;
    color: #fff;
  }

  .equipo-badge-text span {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    letter-spacing: 2px;
    display: block;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  .equipo-badge-text small {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 6px;
    color: rgba(255,255,255,0.7);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  }

  /* ── NUESTROS CLIENTES ── */
  .clients-section-v2 {
    background: var(--light-bg);
    padding: 60px 0;
    overflow: hidden;
  }

  .clients-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 48px;
    letter-spacing: 4px;
  }

  .marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .marquee-wrapper::before,
  .marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
  }

  .marquee-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--light-bg), transparent);
  }

  .marquee-wrapper::after {
    right: 0;
    background: linear-gradient(-90deg, var(--light-bg), transparent);
  }

  .marquee-track {
    display: flex;
    align-items: center;
    gap: 64px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
  }

  .marquee-track:hover {
    animation-play-state: paused;
  }

  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 64px;
    opacity: 0.45;
    transition: opacity 0.3s;
    cursor: default;
  }

  .marquee-item:hover { opacity: 1; }

  .marquee-item span {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    text-align: center;
    line-height: 1.3;
  }

  /* Logo styles already defined in HOME CSS — no need to duplicate */

  /* ── CTA FINAL ── */
  .cta-final {
    padding: 80px 48px;
    background: #fdfefd;
    text-align: center;
  }

  .cta-final h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: clamp(24px, 3vw, 42px);
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .cta-final h3 span { color: var(--gold-dark); }

  .cta-final p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--light-gray);
    letter-spacing: 1px;
    margin-bottom: 36px;
  }

  .cta-final-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 44px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    border-radius: 32px;
    transition: all 0.3s;
  }

  .cta-final-btn:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  }

  /* ── FOOTER ── */
  .footer-v2 {
    background: var(--light-bg);
    padding: 64px 60px 0;
    color: #1a1a1a;
  }

  .footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .footer-newsletter h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: #1a1a1a;
  }

  .footer-email-input {
    display: flex;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 4px;
    overflow: hidden;
    max-width: 340px;
  }

  .footer-email-input input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
  }

  .footer-email-input button {
    padding: 12px 20px;
    background: var(--black);
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .footer-email-input button:hover { background: #333; }

  .footer-col-v2 h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 16px;
  }

  .footer-col-v2 ul { list-style: none; }

  .footer-col-v2 li {
    margin-bottom: 10px;
  }

  .footer-col-v2 a {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-col-v2 a:hover { color: var(--gold-dark); }

  .footer-about {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
  }

  .footer-social-row {
    display: flex;
    justify-content: center;
    padding: 32px 0;
  }

  .footer-socials {
    display: flex;
    gap: 24px;
  }

  .footer-socials a {
    color: var(--light-gray);
    transition: color 0.3s, transform 0.3s;
  }

  .footer-socials a:hover {
    color: var(--gold-dark);
    transform: translateY(-2px);
  }

  .footer-bottom-v2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .footer-bottom-v2 p {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 12px;
    color: #999;
    letter-spacing: 1px;
  }

  .payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }

  .pay-badge {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 3px;
    color: var(--light-gray);
    background: #fff;
  }

  /* ── WHATSAPP TOOLTIP ── */
  .wa-tooltip {
    background: #fff;
    color: #1a1a1a;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px 0 0 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(12px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
  }
  .whatsapp-float:hover .wa-tooltip {
    opacity: 1;
    transform: translateX(0);
  }

  /* ── INTERMEDIATE CTA ── */
  .nosotros-mid-cta {
    text-align: center;
    padding: 40px 48px;
    background: var(--light-bg);
  }
  .nosotros-mid-cta a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.5px;
    border-radius: 28px;
    transition: all 0.3s;
  }
  .nosotros-mid-cta a:hover {
    background: var(--whatsapp-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  }
  .nosotros-mid-cta a svg { width: 18px; height: 18px; fill: white; }

  /* ── SCROLL REVEAL SYSTEM ── */
  .reveal-up {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-up.visible { opacity: 1; transform: translateY(0); }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }

  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }

  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  .reveal-stagger > * {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
  }
  .reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
  .reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }

  @media (prefers-reduced-motion: reduce) {
    .reveal-up, .reveal-scale, .reveal-left, .reveal-right, .reveal-stagger > * {
      opacity: 1 !important; transform: none !important; transition: none !important;
    }
  }

  /* ── WHATSAPP FLOAT ── */
  .whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 9000;
    display: flex;
    align-items: center;
    gap: 0;
  }

  .whatsapp-btn {
    width: 56px; height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  }

  .whatsapp-btn svg {
    width: 28px; height: 28px;
    fill: #fff;
  }
/* ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════ */
/* ══════════════════════════════════════════════ */
/* MEJORA 11: NAV LOGO — GOLD HOVER PULSE        */
/* ══════════════════════════════════════════════ */
.nav-logo-icon {
  transition: border-color 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1);
}

.nav-logo:hover .nav-logo-icon {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,192,41,0.15), 0 0 20px rgba(242,192,41,0.1);
  transform: scale(1.05);
}

.nav-logo:hover .nav-logo-text .bold {
  color: var(--gold);
  transition: color 0.3s;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 14: STATS — GOLD UNDERLINE POST-COUNT   */
/* ══════════════════════════════════════════════ */
.stat-item {
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1);
}

.stat-item.counted::after {
  width: 40px;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 15: PROCESO TIMELINE — SCROLL PROGRESS  */
/* ══════════════════════════════════════════════ */
.proceso-line {
  position: absolute;
  top: 60px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(0,0,0,0.06) !important;
  z-index: 1;
  border-radius: 2px;
  overflow: hidden;
}

.proceso-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold));
  border-radius: 2px;
  transition: width 0.3s linear;
}

.proceso-line.fill-10::after { width: 10%; }
.proceso-line.fill-20::after { width: 20%; }
.proceso-line.fill-30::after { width: 30%; }
.proceso-line.fill-40::after { width: 40%; }
.proceso-line.fill-50::after { width: 50%; }
.proceso-line.fill-60::after { width: 60%; }
.proceso-line.fill-70::after { width: 70%; }
.proceso-line.fill-80::after { width: 80%; }
.proceso-line.fill-90::after { width: 90%; }
.proceso-line.fill-100::after { width: 100%; }

/* ══════════════════════════════════════════════ */
/* MEJORA 16: TEAM PHOTO — GOLD VIGNETTE HOVER    */
/* ══════════════════════════════════════════════ */
.team-photo-section::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 0 0 rgba(242,192,41,0);
  transition: box-shadow 0.6s cubic-bezier(0.16,1,0.3,1);
}

.team-photo-section:hover::after {
  box-shadow: inset 0 0 80px rgba(242,192,41,0.12), inset 0 0 160px rgba(242,192,41,0.05);
}

/* Team badge gold highlight on hover */
.team-badge-logo {
  transition: border-color 0.4s, box-shadow 0.4s;
}

.team-photo-section:hover .team-badge-logo {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242,192,41,0.2), 0 0 16px rgba(242,192,41,0.15);
}

/* ══════════════════════════════════════════════ */
/* EXTRA: SIDE DOTS — GOLD RING ON ACTIVE          */
/* ══════════════════════════════════════════════ */
.side-dot.active {
  box-shadow: 0 0 0 4px rgba(242,192,41,0.2);
}

.side-dot:hover {
  background: rgba(242,192,41,0.5);
  border-color: var(--gold);
}

/* ══════════════════════════════════════════════ */
/* EXTRA: DIFERENCIA CARDS — ENHANCED GLOW          */
/* ══════════════════════════════════════════════ */
.diferencia-card:hover {
  box-shadow:
    0 8px 16px rgba(0,0,0,0.04),
    0 25px 50px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.8) !important;
}

/* ══════════════════════════════════════════════ */
/* EXTRA: PROCESO NUM — GOLD BORDER HOVER           */
/* ══════════════════════════════════════════════ */
.proceso-step:hover .proceso-num {
  border-color: var(--gold) !important;
  background: #1a1a1a;
  color: var(--gold) !important;
}

.proceso-step:hover .proceso-num::after {
  border-color: rgba(242,192,41,0.15) !important;
}

/* ══════════════════════════════════════════════ */
/* EXTRA: FOOTER — REVEAL STAGGER                   */
/* ══════════════════════════════════════════════ */
.footer-main {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.footer-main.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer col links — staggered underline draw */
.footer-col-v2 ul li a {
  position: relative;
}

.footer-col-v2 ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}

.footer-col-v2 ul li a:hover::after {
  width: 100%;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 6: MARQUEE FADE EDGES — WIDER + SOFTER */
/* ══════════════════════════════════════════════ */
.marquee-wrapper::before,
.marquee-wrapper::after {
  width: 140px !important;
}

.marquee-wrapper::before {
  background: linear-gradient(90deg, var(--light-bg) 0%, rgba(246,246,248,0.6) 50%, transparent 100%) !important;
}

.marquee-wrapper::after {
  background: linear-gradient(-90deg, var(--light-bg) 0%, rgba(246,246,248,0.6) 50%, transparent 100%) !important;
}

/* Marquee items: smoother entrance feel */
.marquee-item {
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}

.marquee-item:hover {
  opacity: 1 !important;
  transform: scale(1.06);
}

/* ══════════════════════════════════════════════ */
/* MEJORA 7: CTA FINAL — PREMIUM UPGRADE         */
/* ══════════════════════════════════════════════ */

/* Subtle radial gold glow background */
.cta-final {
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(242,192,41,0.06) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1);
}

.cta-final.visible::before {
  opacity: 1;
}

/* Animated underline on "diferencia" */
.cta-final h3 span {
  position: relative;
}

.cta-final h3 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s;
}

.cta-final.visible h3 span::after {
  width: 100%;
}

/* Button upgrade — subtle gold ring on rest */
.cta-final-btn {
  box-shadow: 0 0 0 0 rgba(37,211,102,0);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}

.cta-final-btn:hover {
  box-shadow: 0 8px 28px rgba(37,211,102,0.35), 0 0 0 4px rgba(37,211,102,0.1) !important;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 8: COPY BANNER — GOLD GLOW WORD         */
/* ══════════════════════════════════════════════ */

.copy-banner {
  position: relative;
}

/* "extraordinario" gold glow animation */
@keyframes goldGlowPulse {
  0%, 100% { text-shadow: 0 0 0 rgba(242,192,41,0); }
  50% { text-shadow: 0 0 20px rgba(242,192,41,0.25), 0 0 40px rgba(242,192,41,0.1); }
}

.copy-banner.visible span {
  animation: goldGlowPulse 3s ease-in-out 0.5s infinite;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 9: CTA BANNER — GOLD ACCENT DIVIDER     */
/* ══════════════════════════════════════════════ */

.cta-banner-v2 {
  position: relative;
}

/* Gold center accent line between the two lines */
.cta-banner-v2::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold);
  margin: 12px auto 16px;
  border-radius: 1px;
  transition: width 0.8s cubic-bezier(0.16,1,0.3,1) 0.2s;
}

.cta-banner-v2.visible::after {
  width: 60px;
}

/* ══════════════════════════════════════════════ */
/* MEJORA 10: CONTACT FORM — GOLD ACCENTS          */
/* ══════════════════════════════════════════════ */

/* Submit button: gold bottom border accent + enhanced hover */
.cf-submit {
  border-bottom: 2px solid var(--gold) !important;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
  position: relative;
  overflow: hidden;
}

.cf-submit:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1a1a1a !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(242,192,41,0.25);
}

/* Form input focus: gold left border accent */
.cf-group input:focus,
.cf-group textarea:focus {
  border-left: 3px solid var(--gold) !important;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

/* Footer newsletter button: gold hover */
.footer-email-input button:hover {
  background: var(--gold) !important;
  color: #1a1a1a !important;
}

/* Footer social icons: gold glow on hover */
.footer-socials a:hover {
  color: var(--gold) !important;
  text-shadow: 0 0 12px rgba(242,192,41,0.3);
}

/* ══════════════════════════════════════════════ */
/* MEJORA 3: BUTTON TACTILE FEEDBACK + SHIMMER   */
/* ══════════════════════════════════════════════ */

/* Universal press feedback on interactive elements */
.carousel-arrow:active,
.cf-submit:active,
.compare-cta:active,
.cotizar-btn:active,
.cta-final-btn:active,
.nosotros-mid-cta a:active,
.cta-whatsapp-link:active,
.page-nav-tabs a:active,
.whatsapp-btn:active,
.nav-cta:active,
.mobile-menu-cta:active,
.footer-email-input button:active {
  transform: scale(0.96) !important;
  transition-duration: 0.1s !important;
}

/* Gold shimmer sweep keyframe */
@keyframes goldShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Shimmer on primary CTA buttons */
.compare-cta,
.cotizar-btn,
.cta-final-btn,
.nosotros-mid-cta a,
.nav-cta {
  position: relative;
  overflow: hidden;
}

.compare-cta::after,
.cotizar-btn::after,
.cta-final-btn::after,
.nosotros-mid-cta a::after,
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 35%,
    rgba(255,255,255,0.15) 45%,
    rgba(255,255,255,0.25) 50%,
    rgba(255,255,255,0.15) 55%,
    transparent 65%,
    transparent 100%
  );
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  border-radius: inherit;
}

.compare-cta:hover::after,
.cotizar-btn:hover::after,
.cta-final-btn:hover::after,
.nosotros-mid-cta a:hover::after,
.nav-cta:hover::after {
  opacity: 1;
  animation: goldShimmer 1.2s ease-in-out;
}

/* Gold underline draw for WhatsApp CTA links */
.cta-whatsapp-link {
  position: relative;
}

.cta-whatsapp-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}

.cta-whatsapp-link:hover::after {
  width: 100%;
}

/* ══════════════════════════════════════════════ */
/* PAGE SWITCHER STYLES                          */
/* ══════════════════════════════════════════════ */
#page-home,
#page-nosotros {
  display: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1);
}

#page-home.active,
#page-nosotros.active {
  display: block;
}

#page-home.active.fade-in,
#page-nosotros.active.fade-in {
  opacity: 1;
}

/* Body background crossfade */
body {
  transition: background-color 0.5s cubic-bezier(0.16,1,0.3,1), color 0.5s cubic-bezier(0.16,1,0.3,1);
}

/* Body theme switching */
body.on-home {
  background: var(--black) !important;
  color: var(--text) !important;
}

body.on-nosotros {
  background: #fdfefd !important;
  color: #444444 !important;
}

/* Side dots only on home */
.side-dots {
  display: none !important;
}

body.on-home .side-dots {
  display: flex !important;
}

/* Nav active state for page switching */
.nav-links .page-link-home,
.nav-links .page-link-nosotros {
  cursor: pointer;
}

/* Nav theme per page */
body.on-home nav:not(.scrolled) {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: none !important;
}

body.on-nosotros nav {
  background: rgba(10,10,10,0.92) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
}

/* Page nav indicator */
.page-nav-tabs {
  display: flex;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9990;
  gap: 4px;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  border-radius: 32px;
  padding: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}

.page-nav-tabs a {
  text-decoration: none;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 10px 24px;
  border-radius: 26px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}

.page-nav-tabs a:hover {
  color: rgba(255,255,255,0.8);
}

.page-nav-tabs a.active {
  background: var(--gold);
  color: #1a1a1a;
}
/* ══════════════════════════════════════════════════════════ */
/* MOBILE UX IMPROVEMENTS — CRITICAL BLOCK (1-5)            */
/* ══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────── */
/* M1: HERO — PROPER MOBILE ADAPTATION                      */
/* ──────────────────────────────────────────────────────── */
/* M2: COPY BANNER — FIX LETTER-SPACING OVERFLOW            */
/* ──────────────────────────────────────────────────────── */
/* M3: STATS — PROPER 2×2 GRID + VISUAL SEPARATORS          */
/* ──────────────────────────────────────────────────────── */
/* M4: CAROUSELS — SWIPE INDICATOR + BIGGER TOUCH TARGETS   */
/* ──────────────────────────────────────────────────────── */
/* M5: PROCESS STEPS — VERTICAL TIMELINE ON MOBILE           */
/* ══════════════════════════════════════════════════════════ */
/* MOBILE UX IMPROVEMENTS — HIGH IMPACT BLOCK (6-10)        */
/* ══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────── */
/* M6: MOBILE MENU — BRAND IDENTITY + STAGGER ANIMATION     */
/* ──────────────────────────────────────────────────────── */

/* Logo header inside mobile menu */
.mobile-menu::before {
  content: 'FULLGRAPHICS';
  display: block;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 6px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(242,192,41,0.15);
}

/* Gold accent on section dividers */
.mobile-menu-links li.mobile-mega-title > a {
  border-top: 1px solid rgba(242,192,41,0.1) !important;
  margin-top: 8px;
  padding-top: 20px !important;
}

/* Stagger animation for links */
.mobile-menu-links li {
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1), 
              transform 0.35s cubic-bezier(0.16,1,0.3,1);
}

.mobile-menu.open .mobile-menu-links li:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.mobile-menu.open .mobile-menu-links li:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.08s; }
.mobile-menu.open .mobile-menu-links li:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.11s; }
.mobile-menu.open .mobile-menu-links li:nth-child(4) { opacity: 1; transform: translateX(0); transition-delay: 0.14s; }
.mobile-menu.open .mobile-menu-links li:nth-child(5) { opacity: 1; transform: translateX(0); transition-delay: 0.17s; }
.mobile-menu.open .mobile-menu-links li:nth-child(6) { opacity: 1; transform: translateX(0); transition-delay: 0.20s; }
.mobile-menu.open .mobile-menu-links li:nth-child(7) { opacity: 1; transform: translateX(0); transition-delay: 0.23s; }
.mobile-menu.open .mobile-menu-links li:nth-child(8) { opacity: 1; transform: translateX(0); transition-delay: 0.26s; }
.mobile-menu.open .mobile-menu-links li:nth-child(9) { opacity: 1; transform: translateX(0); transition-delay: 0.29s; }
.mobile-menu.open .mobile-menu-links li:nth-child(10) { opacity: 1; transform: translateX(0); transition-delay: 0.32s; }
.mobile-menu.open .mobile-menu-links li:nth-child(11) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }
.mobile-menu.open .mobile-menu-links li:nth-child(12) { opacity: 1; transform: translateX(0); transition-delay: 0.38s; }

/* CTA stagger (appears after all links) */
.mobile-menu-cta {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s cubic-bezier(0.16,1,0.3,1) 0.45s,
              transform 0.4s cubic-bezier(0.16,1,0.3,1) 0.45s,
              background 0.3s;
}

.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Active link — gold left bar */
.mobile-menu-links li a:active {
  border-left: 3px solid var(--gold) !important;
  padding-left: 12px !important;
  color: var(--gold) !important;
}

/* ──────────────────────────────────────────────────────── */
/* M7: TOUCH FEEDBACK — GLOBAL TAP HIGHLIGHT + ACTIVE       */
/* ──────────────────────────────────────────────────────── */
/* M8: CAROUSEL CARDS — ENHANCED TAP STATE                   */
/* M9: Compare slider mobile — now handled in compare-section CSS block */

/* ──────────────────────────────────────────────────────── */
/* M10: NOSOTROS PROCESO — HORIZONTAL SCROLL-SNAP            */
/* ══════════════════════════════════════════════════════════ */
/* MOBILE UX IMPROVEMENTS — FINAL POLISH BLOCK (11-20)      */
/* ══════════════════════════════════════════════════════════ */

/* ──────────────────────────────────────────────────────── */
/* M11: BOTTOM AREA — DECLUTTER FIXED ELEMENTS               */
/* ──────────────────────────────────────────────────────── */
/* M12: iOS ZOOM FIX — MINIMUM 16PX INPUTS                   */
/* ──────────────────────────────────────────────────────── */
/* M13: TYPOGRAPHY — REDUCE LETTER-SPACING FOR MOBILE        */
/* ──────────────────────────────────────────────────────── */
/* M15: FOOTER — COMPACT 2-COL + HIDE NOSOTROS ON MOBILE    */
/* ──────────────────────────────────────────────────────── */
/* M16: iOS SAFE AREAS — NOTCH + HOME INDICATOR              */
/* ──────────────────────────────────────────────────────── */
/* Safe areas handled by app-bottom-bar CSS */

/* ──────────────────────────────────────────────────────── */
/* MARQUEE MOBILE FIX                                        */
/* ──────────────────────────────────────────────────────── */
/* M17: SMOOTH SECTION SNAP (optional, light touch)          */
/* ──────────────────────────────────────────────────────── */
/* M18: DIFERENCIA DOTS — 44PX TOUCH TARGETS                 */
/* ──────────────────────────────────────────────────────── */
/* M20: NOSOTROS HERO — PARALLAX ON SCROLL                   */
/* ──────────────────────────────────────────────────────── */
/* EXTRA: CTA FINAL MOBILE — FULL WIDTH + LARGER             */
/* ──────────────────────────────────────────────────────── */
/* EXTRA: NOSOTROS MID CTA — FULL WIDTH ON MOBILE            */
/* ──────────────────────────────────────────────────────── */
/* EXTRA: CONTACT SECTION — COMPACT MOBILE                    */
/* ──────────────────────────────────────────────────────── */
/* EXTRA: TEAM PHOTO — MOBILE ADJUSTMENTS                     */
/* EXTRA: COMPARE SECTION MOBILE COPY — now in compare block */

/* ──────────────────────────────────────────────────────── */
/* EXTRA: GLOBAL MOBILE SMOOTHNESS                            */
/* ══════════════════════════════════════════════════════════ */
/* EXTRA SMALL SCREENS (≤480px) — IPHONE SE, GALAXY S       */
/* ══════════════════════════════════════════════════════════ */
/* APP TAB BAR — UNIFIED MOBILE NAVIGATION (per proposal)    */
/* ══════════════════════════════════════════════════════════ */
.app-tab-bar {
  display: none;
}
/* ── SCROLL PADDING: compensate fixed navbar on anchor jumps ── */
html {
  scroll-padding-top: 80px;
}
/* ── REDUCED MOTION: global accessibility ── */
@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;
  }
}

/* ════════════════════════════════════════════════════════════════ */
/* MOBILE SAFETY NET — FINAL OVERRIDES (MUST BE LAST IN CASCADE)   */
/* ════════════════════════════════════════════════════════════════ */
/* INDUSTRY CARD MOBILE — OUTLINE CTA + IMPROVED STRUCTURE        */

/* ════════════════════════════════════════════════════════════════════════ */
/* CONSOLIDATED MOBILE CSS — ONE BLOCK PER BREAKPOINT                      */
/* ════════════════════════════════════════════════════════════════════════ */

/* ── MOBILE: max-width 900px ── */
@media (max-width: 900px) {
    .compare-carousel { padding: 0 16px 32px; }
    .compare-intro { padding: 48px 24px 28px; }

    .compare-viewer { aspect-ratio: 4/3; }

    .compare-label-tag {
      font-size: 9px;
      letter-spacing: 2px;
      padding: 6px 12px;
      top: 12px;
    }

    .before-tag-generic { left: 10px; }
    .after-tag-premium { right: 10px; }

    /* Tags: reposition to bottom, horizontal row */
    .compare-tags {
      flex-direction: row;
      flex-wrap: wrap;
      bottom: 10px;
      gap: 5px;
    }

    .tags-left { left: 10px; right: auto; }
    .tags-right { right: 10px; left: auto; }

    .ctag {
      font-size: 9px;
      padding: 4px 10px;
      letter-spacing: 0.3px;
    }

    .compare-bar { padding: 14px 16px; flex-direction: column; gap: 10px; text-align: center; }

    .compare-bar-cta {
      width: 100%;
      justify-content: center;
      padding: 14px 20px;
      font-size: 13px;
      border-radius: 10px;
      min-height: 48px;
    }

    .compare-circle {
      width: 44px;
      height: 44px;
    }

    .compare-circle span { font-size: 13px; }

    .side-verdict { display: none; }

    .compare-copy { padding: 40px 24px 48px; }
    .nav-cta { display: none; }
    body .side-dots, body.on-home .side-dots { display: none !important; visibility: hidden !important; pointer-events: none !important; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
    .stat-item { min-width: unset; }
    /* body padding now handled by app-bottom-bar CSS */
    nav#mainNav { padding: 12px 20px; }
    .nav-links { display: none; }
    section { padding: 48px 20px; }
    /* compare section responsive handled in its own block */
    .compare-cta { font-size: 13px; padding: 12px 28px; }
    /* Carousel: native scroll-snap on mobile — widths/gaps handled by safety net */
    .carousel-track {
      transform: none !important;
      overflow: visible !important;
      display: flex !important;
      width: max-content !important;
    }
    /* carousel-card width: handled by safety net (78vw) */
    .carousel-card {
      flex-shrink: 0 !important;
      scroll-snap-align: start;
    }
    .products-type-section { padding: 40px 0 32px; }
    .products-type-header { padding: 0 16px; margin-bottom: 20px !important; }
    .carousel-wrapper { padding: 0 16px; flex-direction: column; align-items: stretch !important; }
    .carousel-track-container {
      margin: 0;
      overflow-x: auto !important;
      overflow-y: hidden !important;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      width: 100% !important;
    }
    .carousel-track-container::-webkit-scrollbar { display: none; }
    .carousel-arrow { display: none !important; }
    .process-steps-grid {
      flex-wrap: nowrap;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 16px;
    }
    /* process-card: handled by vertical timeline block */
    .process-grid::before { display: none; }
    .contact-grid {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .contact-form-panel,
    .contact-info-panel {
      padding: 36px 20px;
    }
    .contact-form-header p {
      font-size: 14px !important;
      letter-spacing: 3px !important;
      word-spacing: -2px !important;
    }
    /* contact-tagline & details-row: handled by contact section block */
    .cd-icon svg {
      width: 24px !important;
      height: 24px !important;
    }
    .footer-main {
      grid-template-columns: 1fr 1fr;
    }
    .hamburger { display: flex; }
    /* mobile-sticky-cta replaced by app-bottom-bar */
    .whatsapp-float { display: none !important; }
    .whatsapp-float { bottom: 72px; }

    .nosotros-hero { height: 55vh; min-height: 360px; margin-top: 56px; }
    .nosotros-service-rotator { top: 20px; left: 20px; }
    .service-word { font-size: 10px !important; letter-spacing: 4px !important; }
    .nosotros-hero-title { bottom: 28px; right: 24px; letter-spacing: 8px; }

    .que-hacemos { grid-template-columns: 1fr; gap: 24px; padding: 48px 24px; }
    .que-hacemos-desc { font-size: 16px; margin-bottom: 28px; }
    .cotizar-btn { padding: 14px 40px; font-size: 13px; letter-spacing: 3px; }

    .diferencia-section { padding: 60px 16px; }
    .diferencia-header { margin-bottom: 32px; }
    .diferencia-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      overflow: visible;
    }
    .diferencia-grid .diferencia-card {
      padding: 20px 16px;
      border-radius: 16px;
    }
    .diferencia-card-num { font-size: 2.5rem; top: 12px; right: 12px; }
    .diferencia-card-icon { width: 44px; height: 44px; border-radius: 12px; margin-bottom: 10px; }
    .diferencia-card-icon svg { width: 20px; height: 20px; }
    .diferencia-card h4 { font-size: 0.85rem; margin-bottom: 6px; }
    .diferencia-card p { font-size: 0.75rem; line-height: 1.4; }
    .diferencia-dots { display: none; }

    .pilares-section { padding: 32px 0 24px; overflow: hidden; }
    .pilares-row {
      display: flex !important;
      grid-template-columns: none;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      gap: 0;
      margin-bottom: 16px;
      padding: 0;
    }
    .pilares-row::-webkit-scrollbar { display: none; }
    .pilar {
      flex: 0 0 80%;
      scroll-snap-align: center;
      padding: 32px 28px 28px;
      text-align: center;
      margin: 0 10%;
    }
    .pilar::before { width: 40px; }
    .pilar h5 { font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
    .pilar p { font-size: 13px; line-height: 1.6; color: #555; }
    .pilares-dots {
      display: flex !important;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }
    .pilares-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.15);
      padding: 0;
      cursor: pointer;
      transition: all 0.3s;
    }
    .pilares-dot.active {
      background: var(--gold);
      width: 20px;
      border-radius: 4px;
    }
    .diferencia-closing { padding: 0 20px; }
    .diferencia-closing p { font-size: 12px !important; line-height: 1.5 !important; }
    .diferencia-closing p strong { font-size: 13px !important; }

    .proceso-section,
    .proceso-section * {
      --_proceso-bg: #F7F6F3;
    }
    .proceso-section {
      padding: 48px 0 !important;
      overflow: hidden !important;
      background: #F7F6F3 !important;
      position: relative;
      z-index: 1;
    }
    .proceso-container {
      background: #F7F6F3 !important;
    }
    .proceso-header { margin-bottom: 28px; padding: 0 20px; color: #1a1a1a; background: transparent !important; }
    .proceso-title { font-size: 1.6rem; color: #1a1a1a !important; }
    .proceso-desc { color: #7A7A7A !important; }
    .proceso-badge { color: #1a1a1a !important; }
    .proceso-line { display: none !important; }
    .proceso-timeline { overflow: visible; background: transparent !important; }
    .proceso-num { display: none !important; }
    .proceso-num::after { display: none !important; }

    /* ─── Tab Pills ─── */
    .proceso-tabs {
      display: flex !important;
      gap: 6px;
      margin: 0 20px 24px;
      overflow-x: auto;
      scrollbar-width: none;
      -ms-overflow-style: none;
      padding: 2px;
      background: transparent !important;
    }
    .proceso-tabs::-webkit-scrollbar { display: none; }
    .proceso-tab {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      padding: 12px 6px 10px;
      border-radius: 10px;
      background: #fff;
      border: 1.5px solid transparent;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-tap-highlight-color: transparent;
      position: relative;
    }
    .proceso-tab::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%) scaleX(0);
      width: 24px;
      height: 3px;
      background: var(--gold);
      border-radius: 3px 3px 0 0;
      transition: transform 0.3s ease;
    }
    .proceso-tab.active {
      border-color: rgba(212,160,23,0.35);
      box-shadow: 0 2px 12px rgba(212,160,23,0.12);
    }
    .proceso-tab.active::after {
      transform: translateX(-50%) scaleX(1);
    }
    .proceso-tab-num {
      font-size: 16px;
      font-weight: 700;
      color: #B8B8B8;
      transition: color 0.3s ease;
    }
    .proceso-tab.active .proceso-tab-num {
      color: var(--gold);
    }
    .proceso-tab-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #7A7A7A;
      text-transform: uppercase;
      transition: color 0.3s ease;
      white-space: nowrap;
    }
    .proceso-tab.active .proceso-tab-label {
      color: #1a1a1a;
    }

    /* ─── Steps: show only active ─── */
    .proceso-steps {
      display: block !important;
      padding: 0 20px;
    }
    .proceso-step {
      display: none !important;
    }
    .proceso-step.active {
      display: block !important;
      animation: procesoSlideIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    @keyframes procesoSlideIn {
      from { opacity: 0; transform: translateY(8px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ─── Card styling (reference design) ─── */
    .proceso-card {
      background: #fff;
      border-radius: 16px;
      padding: 20px;
      text-align: left;
      display: grid;
      grid-template-columns: 56px 1fr;
      grid-template-rows: auto auto auto;
      gap: 0 16px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 4px 16px rgba(0,0,0,0.04);
      position: relative;
      overflow: hidden;
    }
    .proceso-card::before {
      content: '' !important;
      display: block !important;
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), #F2D978);
    }
    .proceso-card::after { display: none !important; }
    .proceso-step:hover .proceso-card,
    .proceso-step .proceso-card {
      background: #fff !important;
      border-color: transparent !important;
    }
    .proceso-step:hover .proceso-card h4,
    .proceso-step .proceso-card h4 {
      color: #1a1a1a !important;
    }
    .proceso-step:hover .proceso-card p,
    .proceso-step .proceso-card p {
      color: #7A7A7A !important;
    }
    .proceso-card .proceso-icon {
      grid-row: 1;
      grid-column: 1;
      width: 56px;
      height: 56px;
      border-radius: 14px;
      background: rgba(212,160,23,0.08) !important;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .proceso-icon svg {
      width: 28px !important;
      height: 28px !important;
      stroke: var(--gold) !important;
      stroke-width: 1.8;
    }
    .proceso-card h4 {
      grid-row: 1;
      grid-column: 2;
      align-self: center;
      font-size: 20px;
      font-weight: 700;
      margin: 0;
      padding: 0;
      line-height: 1.2;
      color: #1a1a1a;
      font-style: normal;
      letter-spacing: 0;
    }
    .proceso-card h4::before {
      content: "Paso 0" attr(data-num);
      display: block;
      font-size: 12px;
      font-weight: 400;
      font-style: italic;
      color: var(--gold);
      margin-bottom: 4px;
    }
    .proceso-card p {
      grid-row: 2;
      grid-column: 1 / -1;
      font-size: 14px;
      line-height: 1.6;
      color: #7A7A7A;
      margin: 14px 0 0;
      padding: 0;
    }
    .proceso-detail {
      grid-row: 3;
      grid-column: 1 / -1;
      display: flex !important;
      align-items: center;
      gap: 8px;
      margin-top: 14px;
      padding-top: 12px;
      border-top: 1px solid #F5F4F1;
    }
    .proceso-detail-dot {
      width: 6px; height: 6px;
      background: var(--gold);
      border-radius: 50%;
      flex-shrink: 0;
    }
    .proceso-detail-text {
      font-size: 12px;
      font-weight: 500;
      color: #3A3A3A;
      font-style: italic;
    }

    /* ─── Progress bar ─── */
    .proceso-progress {
      display: flex !important;
      align-items: center;
      gap: 12px;
      margin: 24px 20px 0;
    }
    .proceso-progress-track {
      flex: 1;
      height: 4px;
      background: rgba(0,0,0,0.06);
      border-radius: 4px;
      overflow: hidden;
    }
    .proceso-progress-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--gold), #F2D978);
      border-radius: 4px;
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .proceso-progress-label {
      font-size: 12px;
      font-weight: 600;
      color: #7A7A7A;
      white-space: nowrap;
    }

    .nosotros-mid-cta { padding: 32px 20px; }
    .nosotros-mid-cta a { padding: 12px 28px; font-size: 12px; }
    .cta-final { padding: 56px 24px; }

    .footer-main { grid-template-columns: 1fr 1fr; }
  .hero {
    height: 100vh;
    height: 100svh; /* small viewport height for mobile browsers with dynamic toolbar */
    min-height: 500px;
  }

  .hero-content {
    padding: 0 20px 80px;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .hero-title {
    font-size: clamp(20px, 5.5vw, 36px);
    letter-spacing: 2px;
    line-height: 1.15;
  }

  .hero-search {
    margin-top: 32px;
  }

  .hero-search-label {
    font-size: 9px;
    padding: 12px 14px;
    letter-spacing: 1.5px;
  }

  .hero-search input {
    font-size: 12px;
    padding: 12px 14px;
  }

  .hero-descriptor {
    font-size: 14px;
    margin-top: 16px;
  }

  .hero-cta {
    margin-top: 20px;
    padding: 14px 28px;
    font-size: 12px;
    letter-spacing: 1.5px;
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-social-proof {
    font-size: 11px;
    letter-spacing: 1.5px;
    margin-top: 16px;
  }

  .hero-search button {
    padding: 12px 16px;
  }

  /* Hide scroll hint on mobile — conflicts with sticky CTA */
  .scroll-hint {
    display: none;
  }
  .copy-banner {
    padding: 28px 20px !important;
  }

  .copy-banner p {
    letter-spacing: 5px !important;
    font-size: clamp(11px, 2.5vw, 16px) !important;
  }
  .stats-section {
    padding: 32px 20px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 500px;
    margin: 0 auto !important;
    position: relative;
  }

  .stat-item {
    padding: 20px 12px;
    text-align: center;
  }

  /* Remove all per-item dividers */
  .stat-item::before,
  .stat-item::after {
    display: none !important;
  }

  /* Cross dividers via grid pseudo-elements */
  .stats-grid::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    width: 1px;
    height: 80%;
    background: rgba(0,0,0,0.08);
    z-index: 1;
  }

  .stats-grid::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 80%;
    height: 1px;
    background: rgba(0,0,0,0.08);
    z-index: 1;
  }

  .stat-number {
    font-size: clamp(32px, 8vw, 44px);
  }

  .stat-suffix {
    font-size: clamp(20px, 5vw, 28px);
  }
  /* Larger touch-friendly arrows */
  .carousel-arrow {
    width: 44px !important;
    height: 44px !important;
    font-size: 20px !important;
    -webkit-tap-highlight-color: rgba(242,192,41,0.15);
  }

  /* Card mobile: square image for consistent sizing */
  .card-image-wrapper {
    aspect-ratio: 1/1;
  }

  .card-tags {
    display: none;
  }
  /* Show tags on industry cards */
  .industry-bg .card-tags {
    display: flex !important;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
  }
  .industry-bg .card-tag {
    font-size: 10px;
    padding: 3px 8px;
  }

  .card-cta-row {
    gap: 4px;
    margin-top: 8px;
  }

  .card-cta-secondary {
    display: none;
  }

  .card-cta-secondary.card-cta-wpp {
    display: inline-flex !important;
    font-size: 7px;
    padding: 5px 4px;
    min-height: 28px;
    border-radius: 6px;
    gap: 3px;
    color: #25D366;
    border-color: rgba(37,211,102,0.3);
    letter-spacing: 0.3px;
  }

  .card-cta-wpp svg {
    width: 10px;
    height: 10px;
  }

  .card-cta-primary {
    padding: 6px 4px;
    min-height: 28px;
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  .card-cta-wpp-only {
    background: #25D366 !important;
    color: #fff !important;
    font-size: 8px !important;
    padding: 6px 4px !important;
  }
  .card-cta-wpp-only svg {
    width: 10px;
    height: 10px;
  }

  .card-label {
    font-size: 9px;
    line-height: 1.2;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .card-desc {
    display: none;
  }

  .card-info {
    padding: 6px 6px 8px;
  }

  /* Card tap feedback */
  .carousel-card:active .card-image-wrapper {
    transform: scale(0.97) !important;
    transition-duration: 0.1s !important;
  }

  .carousel-card:active .card-label {
    color: var(--gold) !important;
  }

  /* Swipe hint below carousels */
  .carousel-wrapper {
    position: relative;
  }

  .carousel-wrapper::after {
    content: '← desliza →';
    display: block;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-top: 8px;
    opacity: 1;
    transition: opacity 0.5s;
    animation: swipeHintPulse 2.5s ease-in-out infinite;
  }

  /* Hide hint after user interacts */
  .carousel-wrapper.swiped::after {
    opacity: 0;
  }

  @keyframes swipeHintPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }

  /* Gradient fade on carousel edges: DISABLED (overlaps cards at 3-visible) */
  .carousel-track-container::after {
    display: none !important;
  }

  /* Card tap feedback (since no hover on mobile) */
  .carousel-card:active {
    transform: scale(0.97);
    transition: transform 0.1s !important;
  }

  .carousel-card:active .card-label {
    color: var(--gold) !important;
  }
  /* ── PROCESS: accordion on mobile ── */
  .process-section-v2 {
    padding: 0 !important;
    overflow: visible !important;
    background: var(--light-bg) !important;
  }

  /* Hide desktop cards on mobile */
  .process-desktop-only {
    display: none !important;
  }

  /* Show accordion on mobile */
  .process-accordion {
    display: block !important;
    padding: 32px 16px !important;
  }

  .process-accordion-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 300;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
  }

  .process-acc-item {
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .process-acc-item:first-of-type {
    border-top: 1px solid rgba(0,0,0,0.06);
  }

  .process-acc-header {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 4px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
  }

  .process-acc-num {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: var(--gold);
    min-width: 28px;
    text-align: center;
    line-height: 1;
  }

  .process-acc-name {
    flex: 1;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #1a1a1a;
    letter-spacing: 0.3px;
  }

  .process-acc-arrow {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 300;
    color: #999;
    transition: transform 0.3s;
    line-height: 1;
  }

  .process-acc-item.open .process-acc-arrow {
    transform: rotate(45deg);
  }

  .process-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 4px 0 42px;
  }

  .process-acc-item.open .process-acc-body {
    max-height: 120px;
    padding: 0 4px 16px 42px;
  }

  .process-acc-body p {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
  }

  /* Thumbnail: decorative mini-image */
  .process-acc-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(135deg, #2a2520, #1a1510);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }

  .process-acc-thumb svg {
    width: 20px;
    height: 20px;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .process-acc-item.open .process-acc-thumb {
    background: linear-gradient(135deg, #3a3020, #2a2015);
    box-shadow: 0 2px 12px rgba(242,192,41,0.15);
  }

  /* Hide swipe indicator */
  .process-section-v2::after {
    display: none !important;
  }

  /* Force CTA banner visible on mobile */
  .cta-banner-v2 {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  /* Custom gold tap highlight for all interactive elements */
  a, button, .carousel-card, .process-card, .diferencia-card, .pilar, .proceso-step {
    -webkit-tap-highlight-color: rgba(242,192,41,0.08);
  }

  /* Global active press feedback */
  .cotizar-btn:active,
  .cta-final-btn:active,
  .nosotros-mid-cta a:active,
  .mobile-menu-cta:active,
  .mobile-sticky-cta a:active {
    transform: scale(0.96) !important;
    transition-duration: 0.1s !important;
  }

  /* Sticky CTA: gold flash on tap */
  .mobile-sticky-cta a:active {
    background: var(--whatsapp-hover);
    box-shadow: inset 0 0 0 2px var(--gold);
  }

  /* Diferencia cards — tap state since no hover */
  .diferencia-card:active {
    transform: translateY(-2px) scale(0.98) !important;
    border-color: var(--gold) !important;
    transition-duration: 0.15s !important;
  }

  /* Pilares — show gold line by default on mobile (no hover) */
  .pilar::before {
    width: 40px !important;
  }

  .pilar:active::before {
    width: 100% !important;
    transition-duration: 0.2s !important;
  }

  .pilar:active {
    background: rgba(242,192,41,0.04) !important;
    transform: translateY(-2px) !important;
  }

  .pilar:active h5 {
    color: var(--gold-dark) !important;
  }

  /* Proceso tab tap state */
  .proceso-tab:active {
    transform: scale(0.97);
  }
  /* Card image: no gold border on tap (interferes with scroll) */
  .carousel-card:active .card-image-wrapper {
    box-shadow: none !important;
  }

  /* Card Cotizar button: pulse hint animation on mobile */
  .card-btn-cotizar {
    animation: ctaPulse 3s ease-in-out 2s infinite;
  }

  @keyframes ctaPulse {
    0%, 80%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
    40% { box-shadow: 0 0 0 6px rgba(37,211,102,0.2); }
  }

  /* CTA card: same structure as regular cards */
  .carousel-card-cta .card-img-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 28px;
  }

  /* Industry cards mobile: 1:1 image (matches product cards) */
  .industry-card .card-image-wrapper {
    aspect-ratio: 1/1;
  }

  .industry-name {
    font-size: 9px;
  }

  .industry-count {
    display: none;
  }

  /* Industry carousel: same scroll-snap treatment */
  .industry-bg .carousel-track-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100% !important;
  }
  .industry-bg .carousel-track-container::-webkit-scrollbar { display: none; }
  .industry-bg .carousel-track {
    transform: none !important;
    overflow: visible !important;
    width: max-content !important;
  }
  /* Proceso: kill all pseudo-elements on mobile */
  .proceso-section::before,
  .proceso-section::after { display: none !important; content: none !important; }
  .proceso-timeline::before,
  .proceso-timeline::after { display: none !important; content: none !important; }
  .proceso-container::before,
  .proceso-container::after { display: none !important; content: none !important; }
  /* Hide desktop WhatsApp float on mobile — app bar handles it */
  .whatsapp-float {
    display: none !important;
  }
  .cf-group input,
  .cf-group textarea {
    font-size: 16px !important;
    padding: 14px 16px;
  }

  .cf-group label {
    font-size: 13px;
  }

  .cf-submit {
    font-size: 15px !important;
    padding: 16px !important;
  }

  /* Footer email input too */
  .footer-email-input input {
    font-size: 16px !important;
  }

  /* Hero search input */
  .hero-search input {
    font-size: 16px !important;
  }
  /* Section headers with spaced lettering */
  .products-type-header h2 {
    font-size: clamp(14px, 3.5vw, 20px) !important;
    letter-spacing: 2px !important;
    /* Override the P R O D U C T O S spaced text */
  }

  .clients-title {
    letter-spacing: 2px !important;
    font-size: clamp(16px, 4vw, 24px) !important;
  }

  /* Nosotros hero title */
  .nosotros-hero-title {
    letter-spacing: 5px !important;
    font-size: clamp(32px, 10vw, 56px) !important;
  }

  /* Contact form header spaced text */
  .contact-form-header p {
    letter-spacing: 2px !important;
    font-size: 14px !important;
    word-spacing: -2px !important;
  }

  .contact-tagline {
    letter-spacing: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    word-spacing: normal !important;
  }

  /* Que hacemos brand script */
  .que-hacemos-question {
    letter-spacing: 1px !important;
  }

  /* Compare intro */
  .compare-intro-sub {
    letter-spacing: 3px !important;
    font-size: 10px !important;
  }

  .compare-intro-title {
    font-size: clamp(22px, 5.5vw, 34px) !important;
  }

  /* CTA banner */
  .cta-banner-v2 .cta-line1 {
    letter-spacing: 1px !important;
    font-size: clamp(18px, 5vw, 30px) !important;
  }

  .cta-banner-v2 .cta-line2 {
    letter-spacing: 1px !important;
    font-size: clamp(16px, 4.5vw, 26px) !important;
  }

  /* Diferencia closing text */
  .diferencia-closing p {
    font-size: 12px !important;
    letter-spacing: 1px !important;
    text-align: center !important;
  }
  .footer-v2 {
    padding: 32px 20px 0 !important;
  }

  .footer-newsletter h4 {
    font-size: 15px !important;
    margin-bottom: 12px;
  }

  .footer-email-input {
    max-width: 100% !important;
  }

  /* Links grid: newsletter full, then 2 cols side by side */
  .footer-main {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
  }

  /* Newsletter spans full width */
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  /* Hide Nosotros column — redundant on mobile */
  .footer-col-v2:nth-child(4) {
    display: none !important;
  }

  .footer-col-v2 h5 {
    font-size: 11px !important;
    margin-bottom: 8px !important;
  }

  .footer-col-v2 li {
    margin-bottom: 4px !important;
  }

  .footer-col-v2 a {
    font-size: 12px !important;
    line-height: 1.8 !important;
  }

  .footer-social-row {
    padding: 20px 0 !important;
  }

  /* Payment icons: compact */
  .payment-icons {
    gap: 4px !important;
  }

  .pay-badge {
    font-size: 8px !important;
    padding: 3px 6px !important;
  }

  .footer-bottom-v2 {
    padding: 12px 0 !important;
    padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px) + 60px) !important;
    font-size: 10px !important;
  }
  .marquee-track {
    gap: 40px;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 40px;
  }
  /* Smooth deceleration when scrolling between sections */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .diferencia-dots {
    gap: 8px !important;
    margin-top: 16px !important;
  }

  .diferencia-dot {
    width: 10px !important;
    height: 10px !important;
    /* Invisible touch padding to reach 44px */
    position: relative;
  }

  .diferencia-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
  }

  .diferencia-dot.active {
    background: var(--gold) !important;
    transform: scale(1.4) !important;
    box-shadow: 0 0 0 3px rgba(242,192,41,0.2);
  }
  .nosotros-hero {
    overflow: hidden;
    height: 45vh !important;
    min-height: 280px !important;
    margin-top: 52px !important;
  }

  .nosotros-hero-img {
    height: 120% !important;
    object-position: center 30%;
    will-change: transform;
    transition: none !important; /* Remove desktop hover transition */
  }
  .cta-final {
    padding: 40px 16px !important;
  }

  .cta-final h3 {
    font-size: clamp(20px, 5.5vw, 32px) !important;
    letter-spacing: 1px !important;
  }

  .cta-final p {
    font-size: 14px !important;
    margin-bottom: 28px !important;
  }

  .cta-final-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px !important;
    font-size: 14px !important;
    border-radius: 28px !important;
  }
  .nosotros-mid-cta a {
    display: flex !important;
    width: calc(100% - 40px);
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
    padding: 14px 24px !important;
    font-size: 13px !important;
    border-radius: 28px;
  }
  /* ── CONTACT: tabbed mobile layout ── */
  .contact-section-v2 {
    padding: 0 !important;
    display: block !important;
    min-height: auto !important;
  }

  /* Mobile tabs */
  .contact-tabs-mobile {
    display: flex !important;
    width: 100% !important;
    background: #1a1a1a;
    padding: 8px;
    gap: 6px;
    box-sizing: border-box;
  }

  .contact-tab {
    flex: 1;
    padding: 10px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    background: transparent;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s;
  }

  .contact-tab.active {
    color: #1a1a1a;
    background: var(--gold);
    border-color: var(--gold);
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    width: 100% !important;
  }

  .contact-form-panel {
    padding: 24px 20px !important;
    order: 1;
    display: flex !important;
  }

  /* Info panel: hidden by default (tab inactive) */
  .contact-info-panel {
    padding: 24px 16px !important;
    order: 2;
    gap: 16px !important;
    display: none !important;
  }

  /* Active tab content */
  .contact-form-panel.tab-hidden {
    display: none !important;
  }
  .contact-info-panel.tab-visible {
    display: flex !important;
  }

  /* Tagline: override spaced text */
  .contact-tagline {
    letter-spacing: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    word-spacing: normal !important;
  }

  /* Detail items: horizontal grid */
  .contact-details-row,
  .contact-details-row.two-col {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 8px !important;
  }

  .contact-detail-item,
  .contact-detail-item.full-width {
    width: auto !important;
    padding: 12px 8px !important;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border-bottom: none !important;
    text-align: center;
  }

  .contact-detail-item .cd-icon svg {
    width: 20px !important;
    height: 20px !important;
  }

  .contact-detail-item h5 {
    font-size: 11px !important;
    margin-bottom: 2px !important;
  }

  .contact-detail-item p {
    font-size: 10px !important;
  }

  .contact-detail-item p a {
    font-size: 10px !important;
  }

  /* SHOW map on mobile when info tab active */
  .contact-map {
    display: block !important;
    margin-top: 16px;
    width: 100% !important;
    border-radius: 12px !important;
    overflow: hidden;
  }

  .contact-map .map-overlay-wrapper {
    width: 100% !important;
    position: relative;
  }

  .contact-map iframe {
    width: 100% !important;
    height: 250px !important;
    border-radius: 0 !important;
    display: block !important;
  }

  .map-touch-overlay span {
    font-size: 11px !important;
    padding: 8px 14px !important;
  }

  /* Compact form fields for mobile */
  .cf-group {
    margin-top: 16px !important;
  }
  .cf-group label {
    font-size: 12px !important;
    margin-bottom: 6px !important;
  }
  .cf-group input,
  .cf-group textarea {
    padding: 10px 12px !important;
    font-size: 13px !important;
  }
  .cf-group textarea {
    min-height: 60px !important;
  }
  .cf-submit {
    margin-top: 20px !important;
    padding: 14px !important;
    font-size: 12px !important;
  }
  .contact-form-header p {
    letter-spacing: 2px !important;
    font-size: 13px !important;
  }
  .contact-form-header {
    margin-bottom: 4px !important;
  }

  .team-photo {
    max-height: 280px;
    object-position: center 25%;
  }

  .team-badge {
    display: none !important;
  }
  /* Prevent horizontal overflow globally */
  body {
    overflow-x: hidden;
  }

  /* Smoother fonts on mobile */
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Section padding normalization */
  section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .products-type-section,
  .compare-section,
  .stats-section,
  .process-section-v2,
  .contact-section-v2,
  .clients-section-v2,
  .clients-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .clients-section {
    padding: 32px 0 !important;
  }
  .clients-label {
    font-size: 9px !important;
    letter-spacing: 3px !important;
    margin-bottom: 20px !important;
  }
  .clients-track {
    gap: 28px !important;
    animation-duration: 20s !important;
  }
  .clients-track img {
    height: 44px !important;
    width: 100px !important;
  }
  html, body {
    overflow-x: clip; /* better than hidden — doesn't create BFC */
    max-width: 100vw;
  }
  /* Kill old competing elements */
  .page-nav-tabs { display: none !important; }
  .mobile-sticky-cta { display: none !important; }
  .whatsapp-float { display: none !important; }

  .app-tab-bar {
    display: flex;
    position: fixed;
    top: auto !important;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 6px 0;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px));
    /* Override generic nav styles */
    align-items: center;
    justify-content: space-around;
  }

  /* Reset generic nav properties that .app-tab-bar inherits from 'nav' rule */
  .app-tab-bar,
  .app-tab-bar * {
    text-transform: none;
  }

  .app-tab-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 6px 4px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s;
  }

  .app-tab-bar svg {
    width: 20px;
    height: 20px;
  }

  .app-tab-bar a.active {
    color: var(--gold);
  }

  .app-tab-bar a.active::before {
    content: '';
    position: absolute;
    top: 0;
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 0 0 2px 2px;
  }

  .app-tab-bar a.tab-wa {
    color: #25D366;
  }

  .app-tab-bar a:active {
    transform: scale(0.92);
  }
  /* body padding-bottom: handled by safety net block */
  body.on-home::after {
    display: none !important;
  }
  html {
    scroll-padding-top: 60px;
  }
  /* Force carousel wrapper to stretch children in column mode */
  .carousel-wrapper {
    align-items: stretch !important;
    flex-direction: column !important;
    padding: 0 !important;
  }

  /* Track container = scroll container */
  .carousel-track-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    flex: none !important;
    width: 100% !important;
  }
  .carousel-track-container::-webkit-scrollbar { display: none; }

  /* Track = static flex row, container handles scroll */
  .carousel-track {
    transform: none !important;
    transition: none !important;
    overflow: visible !important;
    display: flex !important;
    width: max-content !important;
    gap: 8px !important;
    padding: 0 10px !important;
  }

  /* Cards = 3 visible on mobile — use vw instead of % (track is max-content) */
  .carousel-card {
    min-width: calc((100vw - 36px) / 3) !important;
    max-width: calc((100vw - 36px) / 3) !important;
    flex-shrink: 0 !important;
    scroll-snap-align: start;
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
    border-radius: 8px;
    transition: none !important;
    -webkit-filter: none !important;
    filter: none !important;
  }
  .carousel-card:hover,
  .carousel-card:active,
  .carousel-card:focus {
    box-shadow: none !important;
    transform: none !important;
    border: none !important;
    outline: none !important;
  }
  /* Kill image swap/white flash on tap */
  .carousel-card:hover .card-img-hover,
  .carousel-card:active .card-img-hover {
    opacity: 0 !important;
    filter: none !important;
  }
  .carousel-card:hover .card-img:not(.card-img-hover),
  .carousel-card:active .card-img:not(.card-img-hover) {
    opacity: 1 !important;
    filter: none !important;
  }
  .carousel-card:hover .card-image-wrapper img,
  .carousel-card:active .card-image-wrapper img {
    transform: none !important;
  }
  .carousel-card:hover .card-label,
  .carousel-card:active .card-label {
    color: #1a1a1a !important;
  }
  .carousel-card:hover .card-image-wrapper::before,
  .carousel-card:active .card-image-wrapper::before {
    transform: scaleX(0) !important;
  }
  .carousel-card .card-image-wrapper {
    aspect-ratio: 1/1;
    border-radius: 8px 8px 0 0;
    box-shadow: none !important;
  }
  /* Kill all pseudo-element artifacts on mobile */
  .card-image-wrapper::before,
  .card-image-wrapper::after {
    display: none !important;
  }
  /* Hide hover image layer on mobile (causes blur/shadow artifacts) */
  .card-img-hover {
    display: none !important;
  }
  /* Kill any card-img filter/transform leaking */
  .card-img {
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }

  /* Arrows: hidden on mobile */
  .carousel-arrow { display: none !important; }

  /* Side dots: GONE on mobile regardless of body class */
  .side-dots,
  body.on-home .side-dots,
  body.on-nosotros .side-dots {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  /* WhatsApp float: hidden (tab bar replaces it) */
  .whatsapp-float { display: none !important; }

  /* App tab bar: guaranteed visible at bottom */
  .app-tab-bar {
    display: flex !important;
    position: fixed !important;
    top: auto !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9000 !important;
    background: rgba(10,10,10,0.95) !important;
    padding: 6px 0 !important;
    padding-bottom: calc(6px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Body padding for tab bar */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px)) !important;
  }

  /* Old elements: hidden */
  .page-nav-tabs { display: none !important; }
  .mobile-sticky-cta { display: none !important; }

  /* Process: accordion (matches earlier @900px block) */
  .process-desktop-only { display: none !important; }
  .process-accordion { display: block !important; }
  .cta-banner-v2.reveal-stagger {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .process-section-v2::after { display: none !important; }

  /* Mobile dots container */
  .carousel-dots-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 12px 0 4px;
  }
  .carousel-dots-mobile button {
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(0,0,0,0.1);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    transition: all 0.3s;
  }
  .carousel-dots-mobile button.active {
    background: var(--gold);
    width: 18px;
    border-radius: 3px;
  }
  /* Pill touch targets */
  .carousel-dots-mobile button::before {
    content: '';
    position: absolute;
    inset: -10px;
  }
  .carousel-dots-mobile button { position: relative; }

  /* Dots: pill shape override */
  .carousel-dot.active,
  .diferencia-dot.active {
    width: 18px !important;
    height: 6px !important;
    border-radius: 3px !important;
    transform: none !important;
    background: var(--gold) !important;
  }
  .carousel-dot,
  .diferencia-dot {
    width: 6px !important;
    height: 6px !important;
  }

  /* Card image: 4/3 for single-card view */
  .carousel-card .card-img-container {
    aspect-ratio: 4/3;
  }
  /* Industry cards: match product card compact style (3 visible) */
  .industry-bg .card-image-wrapper {
    aspect-ratio: 1/1 !important;
  }

  .industry-img-overlay {
    position: absolute !important;
    inset: 0 !important;
    padding: 8px !important;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%) !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px;
    pointer-events: none;
  }

  .industry-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 3px;
    font-size: 0 !important;
  }

  .industry-icon svg {
    width: 11px;
    height: 11px;
  }

  .industry-name {
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    line-height: 1.2 !important;
    color: #fff !important;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5) !important;
  }

  .industry-count {
    display: none !important;
  }

  /* Show base illustrations, hide hover layer on mobile */
  .industry-bg .card-img.card-img-base { display: flex !important; }
  .industry-bg .card-img-hover { display: none !important; }
  .industry-bg .card-image-wrapper { overflow: hidden !important; }

  /* Industry card body: match product card compact info */
  .industry-bg .card-info {
    padding: 6px 6px 8px !important;
  }

  .industry-bg .card-desc {
    display: none !important;
  }

  /* Industry CTA: compact, matching product card size */
  .industry-bg .card-cta-primary {
    background: transparent !important;
    border: 1px solid #1a1a1a !important;
    color: #1a1a1a !important;
    border-radius: 6px !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 6px 4px !important;
    min-height: 28px !important;
    letter-spacing: 0.5px !important;
  }

  .industry-bg .card-cta-primary:active {
    background: #1a1a1a !important;
    color: #fff !important;
  }

  /* WPP secondary CTA for industry */
  .industry-bg .card-cta-secondary.card-cta-wpp {
    display: inline-flex !important;
    font-size: 7px !important;
    padding: 5px 4px !important;
    min-height: 28px !important;
    border-radius: 6px !important;
    gap: 3px !important;
    color: #25D366 !important;
    border-color: rgba(37,211,102,0.3) !important;
    letter-spacing: 0.3px !important;
  }
  .industry-bg .card-cta-wpp svg {
    width: 10px !important;
    height: 10px !important;
  }
  /* Hide non-WPP secondary CTA */
  .industry-bg .card-cta-secondary:not(.card-cta-wpp) {
    display: none !important;
  }

  /* Hide industry tags on mobile for compact look */
  .industry-bg .card-tags {
    display: none !important;
  }
}

/* ── TABLETS: max-width 768px ── */
@media (max-width: 768px) {
  .page-nav-tabs {
    bottom: 80px; /* Above mobile sticky CTA */
    padding: 4px;
    gap: 2px;
  }
  .page-nav-tabs a {
    padding: 8px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }
}

/* ── SMALL TABLETS / LARGE PHONES: max-width 600px ── */
@media (max-width: 600px) {
    .compare-carousel { padding: 0 12px 24px; }
    .compare-viewer { aspect-ratio: 1/1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px 0; }
    .stat-item { min-width: auto; }
    /* carousel-card width: handled by safety net */
    .carousel-track { gap: 10px; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom-v2 { flex-direction: column; text-align: center; }
    .payment-icons { justify-content: center; }
    .footer-socials { justify-content: center; }
    .diferencia-section { padding: 40px 14px; }
    .diferencia-sub { font-size: 0.75rem; }
    .diferencia-sub::before, .diferencia-sub::after { width: 20px; }
    .diferencia-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
    .diferencia-grid .diferencia-card { padding: 18px 14px !important; }
    .diferencia-card h4 { font-size: 0.8rem !important; }
    .diferencia-card p { font-size: 0.7rem !important; }
    .que-hacemos { padding: 40px 20px; }
    .que-hacemos-question { font-size: clamp(28px, 8vw, 42px); }
    .pilares-section { padding: 24px 0 20px; }
    .pilar { flex: 0 0 85% !important; padding: 28px 24px 24px !important; }
    .pilar h5 { font-size: 12px !important; letter-spacing: 2px !important; }
    .pilar p { font-size: 12px !important; }
    .proceso-section { padding: 32px 0; }
    .proceso-tab { padding: 10px 4px 8px; }
    .proceso-tab-num { font-size: 14px; }
    .proceso-tab-label { font-size: 9px; }
    .proceso-card { padding: 16px; }
    .proceso-card .proceso-icon { width: 48px; height: 48px; border-radius: 12px; }
    .proceso-icon svg { width: 24px !important; height: 24px !important; }
    .proceso-card .proceso-card-title { font-size: 19px; }
    .proceso-card p { font-size: 13px; }
    .servicios-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; }
    .footer-bottom-v2 { flex-direction: column; text-align: center; gap: 12px; }
    .payment-icons { justify-content: center; }
  .hero {
    min-height: 100svh;
    height: auto;
  }

  .hero-content {
    padding: 0 16px 70px;
  }

  .hero-title {
    font-size: clamp(28px, 9vw, 42px);
    letter-spacing: 3px;
  }

  .hero-search {
    flex-direction: column;
  }

  .hero-search-label {
    text-align: center;
    padding: 10px 14px;
  }
  .copy-banner {
    padding: 24px 14px !important;
  }

  .copy-banner p {
    letter-spacing: 3px !important;
    font-size: clamp(10px, 2.8vw, 14px) !important;
  }
  .proceso-step {
    display: none !important;
  }
  .proceso-step.active {
    display: block !important;
  }
  .nosotros-hero-title {
    letter-spacing: 2px !important;
    font-size: clamp(24px, 8vw, 38px) !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .compare-intro-title {
    font-size: clamp(18px, 5vw, 28px) !important;
  }
  .footer-v2 {
    padding: 28px 16px 0 !important;
  }

  .footer-main {
    gap: 16px !important;
  }

  /* Contact details: 3-col still works at 600px — just reduce padding */
  .contact-detail-item,
  .contact-detail-item.full-width {
    padding: 10px 6px !important;
  }
  .contact-detail-item .cd-icon svg {
    width: 18px !important;
    height: 18px !important;
  }
  .marquee-track {
    gap: 28px;
  }
  .marquee-wrapper::before,
  .marquee-wrapper::after {
    width: 24px;
  }
}

/* ── SMALL PHONES: max-width 480px ── */
@media (max-width: 480px) {
  /* Nav even tighter */
  nav#mainNav { padding: 10px 16px; }
  .nav-logo-img { height: 28px !important; }

  /* Hero: compact */
  .hero-title {
    font-size: clamp(24px, 8vw, 36px) !important;
    letter-spacing: 2px !important;
  }
  .hero-subtitle {
    font-size: 10px !important;
    letter-spacing: 3px !important;
  }
  .hero-content { padding: 0 14px 60px !important; }
  .hero-cta {
    padding: 14px 28px !important;
    font-size: 12px !important;
  }

  /* Copy banner */
  .copy-banner { padding: 20px 12px !important; }
  .copy-banner p {
    letter-spacing: 2px !important;
    font-size: clamp(9px, 2.5vw, 12px) !important;
  }

  /* Stats */
  .stats-section { padding: 28px 16px !important; }
  .stat-number { font-size: clamp(24px, 7vw, 32px) !important; }
  .stat-label { font-size: 11px !important; }

  /* Carousel @480px: HANDLED BY SAFETY NET (82vw) — don't set width here */
  .carousel-wrapper { padding: 0 8px !important; }
  .carousel-track { gap: 10px !important; }
  .card-info { padding: 10px 10px 12px !important; }
  .card-label { font-size: 13px !important; line-height: 1.3 !important; }
  .card-desc { font-size: 11px !important; -webkit-line-clamp: 2 !important; }
  .card-cta-primary { font-size: 11px !important; padding: 10px 12px !important; }
  .card-cta-secondary.card-cta-wpp { font-size: 9px !important; padding: 8px 10px !important; gap: 4px !important; }
  .card-cta-wpp svg { width: 12px !important; height: 12px !important; }

  /* Process accordion @480: tighter spacing */
  .process-accordion { padding: 24px 14px !important; }
  .process-acc-name { font-size: 13px !important; }
  .process-acc-body p { font-size: 12px !important; }

  /* Compare */
  .compare-intro-sub { letter-spacing: 2px !important; font-size: 10px !important; }
  .compare-intro-title { font-size: clamp(16px, 4.5vw, 24px) !important; }
  .compare-viewer { aspect-ratio: 4/5 !important; }
  .ctag { font-size: 9px !important; padding: 4px 8px !important; }
  .compare-copy { display: none !important; }

  /* CTA Banner */
  .cta-banner-v2 { padding: 36px 14px !important; }
  .cta-banner-v2 .cta-question { font-size: 11px !important; letter-spacing: 2px !important; }
  .cta-banner-v2 .cta-line1 { font-size: clamp(16px, 4.5vw, 24px) !important; }
  .cta-banner-v2 .cta-line2 { font-size: clamp(14px, 4vw, 20px) !important; }
  .cotizar-btn { font-size: 13px !important; padding: 14px 24px !important; }

  /* Contact @480px: keep compact but READABLE tagline */
  .contact-form-panel { padding: 28px 14px !important; }
  .contact-info-panel { padding: 20px 14px !important; }
  .contact-form-header p { letter-spacing: 1px !important; font-size: 12px !important; }
  .contact-tagline { letter-spacing: 0 !important; font-size: 12px !important; word-spacing: normal !important; line-height: 1.6 !important; }
  /* Contact details: single column on very small phones */
  .contact-details-row,
  .contact-details-row.two-col,
  .contact-all-details {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px !important;
  }
  .contact-detail-item h5 { font-size: 10px !important; }
  .contact-detail-item p, .contact-detail-item p a { font-size: 9px !important; }
  .contact-tab { font-size: 11px !important; padding: 8px 0 !important; }

  /* Nosotros */
  .nosotros-hero { height: 40vh !important; min-height: 240px !important; }
  .nosotros-hero-title {
    font-size: clamp(22px, 7vw, 32px) !important;
    letter-spacing: 1px !important;
  }
  .que-hacemos-question { font-size: clamp(24px, 6vw, 36px) !important; }

  /* Pilares */
  .pilar { padding: 24px 20px 20px !important; }

  /* Footer */
  .footer-v2 { padding: 20px 14px 0 !important; }
  .footer-newsletter h4 { font-size: 12px !important; }
  .footer-newsletter p { font-size: 11px !important; }
  .footer-col-v2 h5 { font-size: 10px !important; }
  .footer-col-v2 a { font-size: 11px !important; }
  .footer-bottom-v2 { font-size: 9px !important; }
  .footer-email-input {
    flex-direction: row !important;
    max-width: 100% !important;
    border-radius: 4px !important;
    overflow: hidden !important;
  }
  .footer-email-input input {
    flex: 1 !important;
    min-width: 0 !important;
    padding: 10px 12px !important;
    font-size: 12px !important;
  }
  .footer-email-input button {
    width: auto !important;
    height: auto !important;
    padding: 10px 16px !important;
    border-radius: 0 !important;
    flex-shrink: 0 !important;
    font-size: 16px !important;
  }

  /* Global section override */
  section { padding: 40px 16px !important; }
  .process-section-v2,
  .industrias-section { padding-left: 0 !important; padding-right: 0 !important; }
  .carousel-card {
    min-width: calc(33.333% - 6px) !important;
    max-width: calc(33.333% - 6px) !important;
  }
}

/* ── VERY SMALL PHONES: max-width 400px ── */
@media (max-width: 400px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px 0 !important;
  }

  .stat-number {
    font-size: clamp(28px, 8vw, 36px);
  }
}

