/**
 * G-CERTI Homepage — ULTRA PRO EDITION
 * Version: 2026.6.5 EXPERT DESIGN
 * 
 * PALETA INMUTABLE:
 * ═══════════════════════════════════
 *   ROJO:   #E63935 (único color)
 *   NEGRO:  #0D0D0D → #1A1A1A
 *   BLANCO: #FFFFFF
 *   GRISES: Escala monocromática
 * ═══════════════════════════════════
 */

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 1: HERO — ULTRA PRO
   Técnicas: Negative space, Visual hierarchy, Micro-interactions
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-quantum {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--gradient-hero-dark);
    color: var(--gc-white);
    overflow: hidden;
    isolation: isolate;
}

/* Subtle Background System */
.hero-bg-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* radial glows removed — quantum nodes canvas handles all visual depth */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    will-change: transform;
}

.orb-primary {
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.05) 35%, transparent 65%);
    top: -500px;
    right: -400px;
    animation: orbDrift 30s ease-in-out infinite;
}

.orb-secondary {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 40%, transparent 65%);
    bottom: -400px;
    left: -300px;
    animation: orbDrift 35s ease-in-out infinite reverse;
}

.orb-tertiary {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 45%, transparent 65%);
    top: 40%;
    left: 50%;
    animation: orbPulse 20s ease-in-out infinite;
}

@keyframes orbDrift {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-30px, 20px) rotate(2deg);
    }

    50% {
        transform: translate(-50px, 40px) rotate(0deg);
    }

    75% {
        transform: translate(-20px, 30px) rotate(-2deg);
    }
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

@keyframes heroGridDrift {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 100px 100px, 100px 100px;
    }
}

@keyframes heroSheen {

    0%,
    100% {
        transform: translateX(-60%);
    }

    50% {
        transform: translateX(60%);
    }
}

/* Premium Grid Pattern */
.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.16;
    animation: heroGridDrift 36s linear infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 40%, transparent 100%);
}

.hero-quantum::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    transform: translateX(-60%);
    opacity: 0.2;
    animation: heroSheen 24s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Film Grain Texture */
.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.035;
    mix-blend-mode: overlay;
}

/* Hero Layout */
.hero-quantum>.container {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    align-items: center;
    padding-top: calc(var(--q-header-h) + 60px);
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content — Left */
.hero-content {
    max-width: 680px;
}

/* Accreditation Badge — Premium */
.hero-accreditation {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    row-gap: 8px;
    margin-bottom: 40px;
}

.accred-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.accred-live {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.55);
    animation: livePulse 2.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.45);
    }

    50% {
        transform: scale(1.2);
        box-shadow: 0 0 18px rgba(255, 255, 255, 0.65), 0 0 36px rgba(255, 255, 255, 0.3);
    }
}

.accred-code {
    font-size: 14px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--gc-font-display);
    letter-spacing: 0.08em;
}

.accred-separator {
    color: rgba(255, 255, 255, 0.35);
    font-size: 20px;
    font-weight: 300;
}

.accred-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Headline — Typographic Hierarchy */
.hero-headline {
    margin-bottom: 32px;
}

.headline-pre {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.headline-main {
    display: block;
    font-size: clamp(64px, 10vw, 108px);
    font-weight: 800;
    font-family: var(--gc-font-display);
    letter-spacing: -0.045em;
    line-height: 0.92;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subheadline */
.hero-subheadline {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    margin-bottom: 48px;
    max-width: 520px;
}

.hero-subheadline strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

/* CTA Buttons — Premium */
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: #E63935;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    letter-spacing: 0.01em;
    min-height: 56px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 80, 80, 0.4);
    box-shadow:
        0 12px 30px rgba(230, 57, 53, 0.35),
        0 18px 48px rgba(0, 0, 0, 0.25);
}

.btn-hero-primary svg {
    color: #ffffff;
    stroke: #ffffff;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    background: #c62828;
    box-shadow:
        0 18px 40px rgba(230, 57, 53, 0.5),
        0 26px 60px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.btn-hero-primary:hover::before {
    opacity: 1;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 36px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    min-height: 56px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.btn-hero-secondary svg {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover svg {
    transform: translateX(4px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item svg {
    color: var(--gc-primary);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.74);
    font-weight: 500;
}

.trust-item span strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
}

.trust-divider {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.18);
}

/* ISO Quick More */
.iso-quick-more {
    background: rgba(230, 57, 53, 0.06);
    border-top: 1px solid rgba(230, 57, 53, 0.12);
    padding: 16px 26px;
}

.iso-quick-more:hover {
    background: rgba(230, 57, 53, 0.12);
}

/* Right Sidebar — Cards */
.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Sectors Card — Premium Glass */
.hero-sectors-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 18px 60px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.06);
}

.sectors-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.sectors-title svg {
    color: rgba(255, 255, 255, 0.8);
}

.sectors-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sector-mini {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-mini:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-3px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.sector-mini-name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.92);
}

.sector-mini-tag {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 500;
}

.sector-more {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    align-items: center;
    justify-content: center;
}

.sector-more:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.35);
}

.sector-mini-count {
    font-size: 28px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1;
}

/* ISO Quick Card */
.hero-iso-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.iso-quick {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 26px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.iso-quick:hover {
    background: rgba(255, 255, 255, 0.06);
}

.iso-quick-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--gc-font-display);
}

.iso-quick-name {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
}

.iso-quick svg {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.iso-quick:hover svg {
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(6px);
}

/* Bottom Stats Bar */
.hero-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding: 32px 0;
    background: rgba(2, 6, 23, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.bottom-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    flex-wrap: wrap;
}

.bottom-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.bottom-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: -0.02em;
    line-height: 1;
}

.bottom-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bottom-stat-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.18) 50%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 2: PROOF BAR — Dark Contrast
   ═══════════════════════════════════════════════════════════════════════════ */
.proof-bar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #0B0B0B 0%, #121212 100%);
    padding: 28px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 56px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.proof-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    transform: translateX(-60%);
    opacity: 0.25;
    animation: proofSweep 18s ease-in-out infinite;
    pointer-events: none;
}

.proof-label {
    color: var(--gc-gray-500);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 700;
}

.proof-logos {
    display: flex;
    align-items: center;
    gap: 40px;
}

.proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.proof-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.proof-item img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.proof-item span {
    font-size: 11px;
    color: var(--gc-gray-400);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.proof-divider {
    width: 1px;
    height: 36px;
    background: var(--gc-gray-700);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO — Accreditation Logos Card (Sidebar)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-accred-logos {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px 32px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero-accred-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
    text-align: center;
}

.hero-accred-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.hero-accred-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-accred-item img {
    height: 38px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: all 0.3s ease;
}

.hero-accred-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.hero-accred-item span {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Proof Bar — Verify Link */
.proof-verify {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.proof-verify:hover {
    color: var(--gc-primary-light, #EF5350);
    transform: translateX(2px);
}

.proof-verify svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECCIONES — Premium Spacing & Hierarchy
   ═══════════════════════════════════════════════════════════════════════════ */
.section {
    padding: clamp(96px, 10vw, 140px) 0;
    background: transparent;
}

.section.iso-selector {
    background: var(--gc-surface-muted);
}

.section.process {
    background: var(--gc-surface-muted);
}

.section.sectors {
    background: var(--gc-surface-muted);
}

.section.faq {
    background: var(--gc-surface-muted);
}

.section-header {
    text-align: center;
    margin-bottom: clamp(32px, 5vw, 64px);
}

/* Premium Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.08) 0%, rgba(230, 57, 53, 0.04) 100%);
    color: var(--gc-primary);
    border: 1px solid rgba(230, 57, 53, 0.15);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gc-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(230, 57, 53, 0.5);
}

.section-header h2 {
    font-size: clamp(32px, 4.6vw, 50px);
    font-weight: 800;
    font-family: var(--gc-font-display);
    color: var(--gc-text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-subtitle {
    font-size: clamp(16px, 1.8vw, 19px);
    color: var(--gc-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 3: ISO CARDS — Premium
   ═══════════════════════════════════════════════════════════════════════════ */
.iso-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 20px;
}

.iso-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 32px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--gc-shadow-card);
}

.iso-card:hover {
    border-color: var(--gc-primary);
    transform: translateY(-6px);
    box-shadow: var(--gc-shadow-float);
}

.iso-code {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.1) 0%, rgba(230, 57, 53, 0.05) 100%);
    border-radius: 18px;
    flex-shrink: 0;
    font-family: var(--gc-font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--gc-primary);
    letter-spacing: -0.02em;
}

.iso-info {
    flex: 1;
    min-width: 0;
}

.iso-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gc-gray-900);
    margin-bottom: 6px;
}

.iso-info p {
    font-size: 14px;
    color: var(--gc-gray-500);
    line-height: 1.5;
}

.iso-arrow {
    color: var(--gc-gray-400);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.iso-card:hover .iso-arrow {
    color: var(--gc-primary);
    transform: translateX(8px);
}

/* ISO Help CTA — Confused visitor capture */
.iso-help-cta {
    text-align: center;
    margin-top: 48px;
    padding: 28px;
    background: var(--gc-surface-elevated);
    border: 1px dashed var(--gc-border);
    border-radius: 16px;
}

.iso-help-cta p {
    font-size: 16px;
    color: var(--gc-gray-600);
    margin-bottom: 12px;
}

.iso-help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.iso-help-link:hover {
    transform: translateX(4px);
}

.iso-help-link svg {
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 4: BENEFICIOS — Premium Grid
   ═══════════════════════════════════════════════════════════════════════════ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 40px 32px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--gc-shadow-card);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gc-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--gc-primary);
    transform: translateY(-8px);
    box-shadow: var(--gc-shadow-float);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.1) 0%, rgba(230, 57, 53, 0.05) 100%);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.05);
    background: rgba(230, 57, 53, 0.12);
}

.benefit-icon svg {
    width: 36px;
    height: 36px;
    color: var(--gc-primary);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-gray-900);
    margin-bottom: 14px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--gc-gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.benefit-tag {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.1) 0%, rgba(230, 57, 53, 0.06) 100%);
    color: var(--gc-primary);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 5: PROCESO — Timeline Premium
   ═══════════════════════════════════════════════════════════════════════════ */
.process-timeline {
    display: flex;
    gap: 20px;
    justify-content: center;
    position: relative;
    padding-top: 20px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--gc-border) 10%,
            var(--gc-border) 90%,
            transparent 100%);
    border-radius: 2px;
}

.process-step {
    flex: 1;
    max-width: 200px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--gc-primary);
    color: var(--gc-white);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    box-shadow:
        0 8px 24px rgba(230, 57, 53, 0.35),
        0 0 0 8px var(--gc-surface);
}

.process-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gc-gray-900);
    margin-bottom: 10px;
}

.process-content p {
    font-size: 14px;
    color: var(--gc-gray-600);
    line-height: 1.6;
    margin-bottom: 14px;
}

.process-time {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    color: var(--gc-gray-600);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
}

/* Process CTA — After timeline */
.process-cta {
    text-align: center;
    margin-top: 56px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.process-total-time {
    font-size: 17px;
    color: var(--gc-gray-600);
}

.process-total-time strong {
    color: var(--gc-primary);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 6: STATS — Premium Data Visualization
   ═══════════════════════════════════════════════════════════════════════════ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card-lg {
    padding: 40px 32px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: var(--gc-shadow-card);
}

.stat-card-lg:hover {
    border-color: var(--gc-primary);
    transform: translateY(-6px);
    box-shadow: var(--gc-shadow-float);
}

.stat-card-featured {
    border-color: var(--gc-primary);
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.03) 0%, rgba(230, 57, 53, 0.08) 100%);
}

.stat-card-lg .stat-value {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: var(--gc-primary);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: -0.03em;
}

.stat-card-lg .stat-label {
    font-size: 15px;
    color: var(--gc-gray-600);
    display: block;
    font-weight: 500;
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--gc-gray-400);
    margin-top: 12px;
    font-weight: 600;
}

.stat-highlight {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: rgba(230, 57, 53, 0.12);
    color: var(--gc-primary);
    font-size: 11px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Market CTA — Urgency */
.market-cta {
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.market-cta p {
    font-size: 18px;
    font-weight: 700;
    color: var(--gc-gray-700);
}

.market-cta-link {
    font-size: 18px;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.market-cta-link:hover {
    transform: translateX(4px);
    display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 7: SECTORES — Premium Cards
   ═══════════════════════════════════════════════════════════════════════════ */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.sector-card {
    padding: 32px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--gc-shadow-card);
}

.sector-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gc-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.sector-card:hover {
    border-color: var(--gc-primary);
    transform: translateY(-6px);
    box-shadow: var(--gc-shadow-float);
}

.sector-card:hover::after {
    transform: scaleX(1);
}

.sector-header {
    margin-bottom: 16px;
}

.sector-hook {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.12) 0%, rgba(230, 57, 53, 0.06) 100%);
    color: var(--gc-primary);
    font-size: 13px;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.01em;
}

.sector-share {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.1) 0%, rgba(230, 57, 53, 0.05) 100%);
    color: var(--gc-primary);
    font-size: 14px;
    font-weight: 800;
    border-radius: 100px;
}

/* Sectors More Link */
.sectors-more {
    text-align: center;
    margin-top: 40px;
}

.sectors-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 700;
    color: var(--gc-primary);
    text-decoration: none;
    padding: 14px 32px;
    border: 2px solid var(--gc-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.sectors-more-link:hover {
    background: var(--gc-primary);
    color: var(--gc-white);
    transform: translateY(-2px);
}

.sector-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gc-gray-900);
    margin-bottom: 14px;
}

.sector-isos {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.sector-iso {
    padding: 6px 14px;
    background: var(--gc-surface-muted);
    color: var(--gc-gray-700);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.sector-card:hover .sector-iso {
    background: var(--gc-gray-200);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 8: CTA FORMULARIO — Premium Dark
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--gc-slate-950) 0%, var(--gc-slate-900) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    animation: ctaGlow 24s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 140px 140px;
    opacity: 0.12;
    animation: ctaGrid 28s linear infinite;
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 56px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.cta-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    padding: 52px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.cta-form-wrapper h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--gc-white);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.cta-form-wrapper>p {
    font-size: 17px;
    color: var(--gc-gray-400);
    margin-bottom: 36px;
}

.form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gc-gray-300);
    letter-spacing: 0.02em;
}

.form-input,
.form-select {
    padding: 18px 22px;
    min-height: 52px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    color: var(--gc-white);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: var(--gc-gray-500);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='%23757575' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 52px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gc-slate-900);
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
    background: var(--gc-white);
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--gc-gray-900);
}

.btn-secondary:hover {
    background: var(--gc-white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
}

.cta-info {
    position: sticky;
    top: 120px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

@keyframes proofSweep {

    0%,
    100% {
        transform: translateX(-60%);
    }

    50% {
        transform: translateX(60%);
    }
}

@keyframes ctaGlow {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-24px);
        opacity: 0.9;
    }
}

@keyframes ctaGrid {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 140px 140px, 140px 140px;
    }
}

.cta-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gc-white);
    margin-bottom: 8px;
}

.cta-card>p {
    color: var(--gc-gray-400);
    margin-bottom: 28px;
}

.cta-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-email {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.cta-email a {
    color: var(--gc-gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.cta-email a:hover {
    color: var(--gc-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 9: TESTIMONIOS — Social Proof Premium
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    padding: 36px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 24px;
    transition: all 0.4s ease;
    box-shadow: var(--gc-shadow-card);
}

.testimonial-card:hover {
    border-color: var(--gc-primary);
    transform: translateY(-6px);
    box-shadow: var(--gc-shadow-float);
}

.testimonial-stars {
    font-size: 18px;
    color: #FBBF24;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-featured {
    border-color: var(--gc-primary);
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.02) 0%, rgba(230, 57, 53, 0.06) 100%);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote svg {
    color: var(--gc-primary);
    opacity: 0.25;
}

.testimonial-text {
    font-size: 17px;
    color: var(--gc-gray-700);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.15) 0%, rgba(230, 57, 53, 0.08) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar span {
    font-size: 17px;
    font-weight: 800;
    color: var(--gc-primary);
}

.testimonial-info strong {
    display: block;
    font-size: 16px;
    color: var(--gc-gray-900);
}

.testimonial-info span {
    font-size: 14px;
    color: var(--gc-gray-500);
}

.testimonial-certs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.badge-sm {
    padding: 6px 14px;
    font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 10: FAQ — Accordion Premium
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--gc-shadow-card);
}

.faq-item:hover {
    border-color: rgba(var(--gc-primary-rgb), 0.18);
    box-shadow: var(--gc-shadow-card);
}

.faq-item.active {
    border-color: var(--gc-primary);
    box-shadow: var(--gc-shadow-float);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 26px 30px;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--gc-gray-900);
    transition: color 0.2s ease;
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    color: var(--gc-gray-400);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    color: var(--gc-primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--gc-primary);
}

.faq-answer {
    padding: 0 30px 26px;
    display: none;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gc-gray-600);
    line-height: 1.75;
}

.faq-answer a {
    color: var(--gc-primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 11: RECURSOS — Final CTA Cards
   ═══════════════════════════════════════════════════════════════════════════ */
.resources-cta {
    background: var(--gc-surface-muted);
}

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

.resource-card {
    padding: 44px 36px;
    background: var(--gc-surface-elevated);
    border: 1px solid var(--gc-border);
    border-radius: 24px;
    text-decoration: none;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--gc-shadow-card);
}

.resource-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 12px;
    background: var(--gc-primary);
    color: var(--gc-white);
    font-size: 11px;
    font-weight: 800;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.resource-badge-alt {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gc-gray-300);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gc-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.resource-card:hover {
    border-color: var(--gc-primary);
    transform: translateY(-8px);
    box-shadow: var(--gc-shadow-float);
}

.resource-card:hover::before {
    transform: scaleX(1);
}

.resource-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(230, 57, 53, 0.1) 0%, rgba(230, 57, 53, 0.05) 100%);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.resource-card:hover .resource-icon {
    transform: scale(1.05);
}

.resource-icon svg {
    color: var(--gc-primary);
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gc-gray-900);
    margin-bottom: 12px;
}

.resource-card p {
    font-size: 15px;
    color: var(--gc-gray-600);
    margin-bottom: 24px;
    line-height: 1.65;
}

.resource-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--gc-primary);
    letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANIMATIONS — Premium Motion
   ═══════════════════════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile First
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sidebar {
        max-width: 560px;
        margin: 0 auto;
    }

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

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

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

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

@media (max-width: 1024px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .hero-quantum>.container {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .hero-accreditation {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .accred-separator {
        display: none;
    }

    .headline-pre {
        font-size: 15px;
    }

    .headline-main {
        font-size: clamp(48px, 14vw, 80px);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .hero-trust .trust-divider {
        display: none;
    }

    .sectors-grid-mini {
        grid-template-columns: 1fr;
    }

    .bottom-stats {
        flex-wrap: wrap;
        gap: 32px;
    }

    .bottom-stat-divider {
        display: none;
    }

    .section {
        padding: 80px 0;
    }

    .proof-content {
        gap: 24px;
    }

    .proof-divider {
        display: none;
    }

    .benefits-grid,
    .stats-grid,
    .testimonials-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-form-wrapper {
        padding: 32px;
    }

    .iso-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: clamp(28px, 7vw, 40px);
    }
}

@media (max-width: 480px) {
    .headline-main {
        font-size: clamp(40px, 16vw, 64px);
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 18px 28px;
        font-size: 15px;
    }

    .hero-sectors-card {
        padding: 24px;
    }

    .sector-mini {
        padding: 14px 16px;
    }

    .benefit-card {
        padding: 32px 24px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .resource-card {
        padding: 32px 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION DARK — Visual Alternation
   ═══════════════════════════════════════════════════════════════════════════ */
.q-section-dark {
    background: var(--gc-slate-950) !important;
    color: var(--gc-white);
}

.q-section-dark .section-header h2 {
    color: var(--gc-white);
}

.q-section-dark .section-header .section-subtitle {
    color: var(--gc-gray-400);
}

.q-section-dark .benefit-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.q-section-dark .benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.q-section-dark .benefit-card h3 {
    color: var(--gc-white);
}

.q-section-dark .benefit-card p {
    color: var(--gc-gray-400);
}

.q-section-dark .testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
}

.q-section-dark .testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.28);
}

.q-section-dark .testimonial-text {
    color: rgba(255, 255, 255, 0.85);
}

.q-section-dark .testimonial-info strong {
    color: var(--gc-white);
}

.q-section-dark .testimonial-info span {
    color: var(--gc-gray-400);
}

.q-section-dark .testimonial-featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM TRUST NOTE
   ═══════════════════════════════════════════════════════════════════════════ */
.form-trust-note {
    text-align: center;
    font-size: 13px;
    color: var(--gc-gray-500);
    margin-top: 12px;
    letter-spacing: 0.01em;
}

/* Form Trust Badges */
.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gc-gray-400);
    letter-spacing: 0.01em;
}

.form-trust-item svg {
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
}

.form-optional {
    font-weight: 400;
    color: var(--gc-gray-500);
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MÓDULO 12: CTA FINAL — Closing Section
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-final {
    padding: 100px 0;
    background: linear-gradient(135deg, #020617 0%, var(--gc-slate-900) 50%, #020617 100%) !important;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 65%);
    pointer-events: none;
}

.q-cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.q-cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--gc-white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.q-cta-content>p {
    font-size: 18px;
    color: var(--gc-gray-400);
    margin-bottom: 40px;
    line-height: 1.6;
}

.q-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .q-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}
