/* ── RESET & BASE STYLES ── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-main: #0a0d14;
    --bg-darker: #06080c;
    --bg-card: rgba(16, 23, 34, 0.85);
    --bg-card-hover: rgba(22, 33, 50, 0.95);
    --border-color: rgba(200, 155, 60, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --gold: #d4af37;
    --gold-bright: #f3c344;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --green-tactical: #10b981;
    --green-glow: rgba(16, 185, 129, 0.35);
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'Share Tech Mono', monospace;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body.tactical-body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(20, 45, 30, 0.35), transparent 60%),
        radial-gradient(circle at 100% 60%, rgba(30, 20, 10, 0.25), transparent 50%),
        linear-gradient(to bottom, #0a0d14 0%, #07090f 100%);
    background-attachment: fixed;
}

body.tactical-body::after {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── TELEMETRY TOP BAR ── */
.telemetry-bar {
    background: #040609;
    border-bottom: 1px solid rgba(212, 175, 55, 0.18);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    padding: 0.45rem 0;
    letter-spacing: 0.5px;
}

.telemetry-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.telemetry-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-tactical);
    box-shadow: 0 0 8px var(--green-tactical);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.text-green { color: var(--green-tactical); font-weight: 600; }
.text-gold { color: var(--gold-bright); font-weight: 600; }

.badge-code {
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-bright);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 0.75rem;
}

/* ── HEADER / NAVIGATION ── */
.tactical-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(8, 12, 18, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.tactical-header.scrolled {
    background: rgba(6, 9, 14, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.logo-crest {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    object-fit: cover;
    box-shadow: 0 0 14px var(--gold-glow);
    transition: var(--transition-smooth);
}

.brand-logo:hover .logo-crest {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 0 0 20px rgba(243, 195, 68, 0.6);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    line-height: 1.1;
}

.brand-sub {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold-bright);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold-bright);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--gold);
    padding: 0.45rem 0.7rem;
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    cursor: pointer;
}

/* ── BUTTONS ── */
.btn-tactical {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary-gold {
    background: linear-gradient(135deg, #c89b3c 0%, #d4af37 50%, #9e731b 100%);
    color: #06090f;
    box-shadow: 0 4px 18px var(--gold-glow);
}

.btn-primary-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(243, 195, 68, 0.6);
    filter: brightness(1.1);
}

.btn-glow {
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    color: var(--gold-bright);
}

.btn-glow:hover {
    background: var(--gold);
    color: #06090f;
    box-shadow: 0 0 20px var(--gold-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    color: var(--gold-bright);
    transform: translateY(-2px);
}

/* ── HERO SECTION ── */
.hero-section {
    position: relative;
    padding: 3.5rem 0 3.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-grid-pattern {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    pointer-events: none;
}

.radar-scan {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(16, 185, 129, 0.08) 0deg, transparent 60deg, transparent 360deg);
    pointer-events: none;
    animation: radarSweep 14s linear infinite;
    z-index: 1;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-color);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--gold-bright);
    letter-spacing: 1px;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.highlight-gold {
    color: var(--gold-bright);
    text-shadow: 0 0 25px rgba(243, 195, 68, 0.4);
}

.highlight-green {
    color: var(--green-tactical);
    text-shadow: 0 0 25px var(--green-glow);
}

.hero-lead {
    font-size: 1.08rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
    max-width: 580px;
    line-height: 1.7;
}

.hero-lead strong {
    color: #ffffff;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-subtle);
}

.stat-card {
    text-align: left;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.stat-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
    line-height: 1.3;
}

/* Hero Visual & HUD Frame */
.hero-visual {
    position: relative;
}

.frame-tactical {
    position: relative;
    border-radius: var(--radius-md);
    padding: 6px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(255, 255, 255, 0.05), rgba(16, 185, 129, 0.3));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: calc(var(--radius-md) - 4px);
    object-fit: cover;
    filter: contrast(1.05) brightness(0.95);
}

.hud-corner {
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid var(--gold);
    pointer-events: none;
}

.hud-corner.top-left { top: -4px; left: -4px; border-right: 0; border-bottom: 0; }
.hud-corner.top-right { top: -4px; right: -4px; border-left: 0; border-bottom: 0; }
.hud-corner.bottom-left { bottom: -4px; left: -4px; border-right: 0; border-top: 0; }
.hud-corner.bottom-right { bottom: -4px; right: -4px; border-left: 0; border-top: 0; }

.hud-badge-float {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(6, 9, 14, 0.9);
    border: 1px solid var(--border-color);
    padding: 0.55rem 0.9rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--green-tactical);
    backdrop-filter: blur(8px);
}

/* ── SECTIONS SHARED ── */
.section-padded {
    padding: 4.5rem 0;
    position: relative;
}

.bg-darker {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.section-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.sub-heading {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--gold-bright);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.5rem;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
}

.heading-desc {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.6;
}

/* ── VALORES GRID ── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tactical-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2.2rem 1.8rem;
    position: relative;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.tactical-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 3px; height: 100%;
    background: var(--gold);
    opacity: 0.4;
    transition: var(--transition-fast);
}

.tactical-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
}

.tactical-card:hover::before {
    opacity: 1;
    box-shadow: 0 0 10px var(--gold-glow);
}

.card-icon-wrap {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--gold-bright);
    margin-bottom: 1.4rem;
    transition: var(--transition-fast);
}

.tactical-card:hover .card-icon-wrap {
    background: var(--gold);
    color: #06090f;
    transform: scale(1.08);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ── DIVISIONES TABS ── */
.division-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.div-tab-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 0.65rem 1.35rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.div-tab-btn:hover {
    color: #ffffff;
    border-color: rgba(212, 175, 55, 0.4);
}

.div-tab-btn.active {
    background: var(--gold);
    color: #06090f;
    border-color: var(--gold);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.division-panel {
    display: none;
}

.division-panel.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

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

.div-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 2.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
}

.div-code {
    font-family: var(--font-mono);
    font-size: 0.78rem;
    color: var(--gold-bright);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.5rem;
}

.div-text h3 {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.div-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.tactical-list {
    list-style: none;
    margin-bottom: 1.8rem;
}

.tactical-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #cbd5e1;
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.tactical-list li i {
    color: var(--green-tactical);
    font-size: 0.9rem;
}

.div-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: #cbd5e1;
    padding: 0.3rem 0.75rem;
    border-radius: 2px;
}

.div-card-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    background: rgba(6, 9, 14, 0.75);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 2rem;
}

.box-stat {
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

.box-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.box-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-bright);
    line-height: 1;
}

.box-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── BENEFICIOS GRID ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    background: var(--bg-card-hover);
}

.b-icon {
    font-size: 1.6rem;
    color: var(--gold-bright);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ── RECLUTAMIENTO / FORMULARIO ── */
.recruitment-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 2.5rem;
    align-items: start;
}

.req-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 2rem;
    margin-bottom: 2rem;
}

.req-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 0.75rem;
}

.req-title i {
    color: var(--gold);
}

.req-list {
    list-style: none;
}

.req-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: #cbd5e1;
    margin-bottom: 0.85rem;
}

.req-list li i {
    color: var(--gold-bright);
    margin-top: 3px;
    font-size: 0.8rem;
}

.quote-tactical {
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid var(--green-tactical);
    padding: 1.5rem;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-icon {
    color: var(--green-tactical);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-style: italic;
    color: #e2e8f0;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.quote-author strong {
    display: block;
    color: var(--gold-bright);
    font-size: 0.9rem;
}

.quote-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Form Styling */
.form-card-tactical {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    position: relative;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--green-tactical);
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.dot-live {
    width: 6px;
    height: 6px;
    background: var(--green-tactical);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.tactical-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #cbd5e1;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.form-group label i {
    color: var(--gold-bright);
    font-size: 0.85rem;
}

.tactical-form input,
.tactical-form select,
.tactical-form textarea {
    background: rgba(6, 9, 14, 0.9);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    transition: var(--transition-fast);
    outline: none;
}

.tactical-form input:focus,
.tactical-form select:focus,
.tactical-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
    background: #090e16;
}

.tactical-form select {
    cursor: pointer;
}

.form-terms {
    margin: 1.25rem 0 1.5rem;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-container input {
    margin-top: 3px;
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #c89b3c, #e5b842);
    color: #06090f;
    font-size: 1.05rem;
    padding: 1rem;
    border-radius: var(--radius-sm);
}

.btn-submit:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 25px var(--gold-glow);
}

.form-feedback {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-feedback.success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--green-tactical);
    color: #6ee7b7;
}

.form-feedback.hidden {
    display: none;
}

/* ── FAQ ACCORDION ── */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 1.3rem 1.6rem;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question i {
    color: var(--gold-bright);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 1.6rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding: 0 1.6rem 1.4rem;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ── CONTACT CARD ── */
.contact-card-tactical {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-points {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cp-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.cp-item i {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold-bright);
    flex-shrink: 0;
}

.cp-item div {
    display: flex;
    flex-direction: column;
}

.cp-item strong {
    color: #ffffff;
    font-size: 0.95rem;
}

.cp-item span {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.contact-badge-seal {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.seal-img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    box-shadow: 0 0 35px var(--gold-glow);
    margin-bottom: 1rem;
}

.seal-text span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #ffffff;
    display: block;
}

.seal-text small {
    font-family: var(--font-mono);
    color: var(--gold-bright);
    font-size: 0.8rem;
}

/* ── FOOTER ── */
.tactical-footer {
    background: #030508;
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 400px;
}

.footer-desc code {
    color: var(--gold-bright);
    background: rgba(212, 175, 55, 0.1);
    padding: 2px 5px;
    border-radius: 2px;
}

.footer-links h5,
.footer-status-box h5 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-bright);
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.65rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-fast);
}

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

.footer-status-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    padding: 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-mono);
    font-size: 0.8rem;
}

.status-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.status-row .label {
    color: var(--text-muted);
}

.crypto-hash {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.72rem;
    color: var(--text-muted);
}

.crypto-hash code {
    color: #38bdf8;
}

.footer-bottom {
    background: #010204;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.fb-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fb-extras {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.secure-tag {
    color: var(--green-tactical);
    font-family: var(--font-mono);
}

.subdomain-tag {
    color: var(--gold-bright);
    font-family: var(--font-mono);
}

/* ── FLOATING BUTTON ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: rgba(16, 23, 34, 0.9);
    border: 1px solid var(--border-color);
    color: var(--gold-bright);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: #06090f;
    transform: translateY(-3px);
}

/* ── RESPONSIVE DESIGN ── */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-lead {
        margin: 0 auto 2rem;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        text-align: center;
    }

    .stat-card {
        text-align: center;
    }

    .div-grid {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .recruitment-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-card-tactical {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2.5rem 1.5rem;
    }

    .cp-item {
        justify-content: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }

    .telemetry-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 0.5rem;
        font-size: 0.72rem;
    }

    .nav-container {
        height: 62px;
    }

    .logo-crest {
        width: 36px;
        height: 36px;
    }

    .brand-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .brand-sub {
        font-size: 0.65rem;
    }

    .mobile-toggle {
        display: block;
    }

    #btnHeaderAlistamiento {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 62px;
        left: 0;
        width: 100%;
        background: #06090f;
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        gap: 1.25rem;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.open {
        transform: translateY(0);
    }

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

    .hero-headline {
        font-size: 2.2rem;
    }

    .form-card-tactical {
        padding: 1.5rem;
    }
}
