* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0f1e;
    color: #e2e8f0;
}

/* Header Eseptec */
.eseptec-header {
    background: rgba(10, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #f39c12;
}

.eseptec-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eseptec-header .logo i {
    font-size: 2rem;
    color: #f39c12;
}

.eseptec-header .logo h1 {
    font-size: 1.5rem;
    color: white;
}

.eseptec-header .tagline {
    font-size: 0.8rem;
    color: #f39c12;
    background: rgba(243, 156, 18, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.eseptec-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.eseptec-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.eseptec-nav a:hover, .eseptec-nav a.active {
    color: #f39c12;
}

/* Hero Eseptec */
.hero-eseptec {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0f1e 0%, #1a1f2e 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(243, 156, 18, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(243, 156, 18, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.hero-eseptec h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-eseptec .highlight {
    color: #f39c12;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f39c12;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: #0a0f1e;
    padding: 1rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
}

/* Secciones generales */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: #94a3b8;
}

/* Grids */
.services-grid, .seguridad-grid, .equipamiento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card, .seguridad-item, .equipamiento-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s;
    border: 1px solid rgba(243, 156, 18, 0.2);
}

.service-card:hover, .seguridad-item:hover, .equipamiento-card:hover {
    transform: translateY(-5px);
    border-color: #f39c12;
    background: rgba(243, 156, 18, 0.05);
}

.service-card i, .seguridad-item i, .equipamiento-card i {
    font-size: 2.5rem;
    color: #f39c12;
    margin-bottom: 1rem;
}

.service-card h3, .seguridad-item h3, .equipamiento-card h3 {
    margin-bottom: 0.5rem;
}

.service-card p, .seguridad-item p, .equipamiento-card p {
    color: #94a3b8;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card li {
    padding: 0.3rem 0;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tech-tags span {
    background: rgba(243, 156, 18, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Contacto */
.contacto-eseptec {
    background: linear-gradient(135deg, #0f1424, #0a0f1e);
}

.contacto-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contacto-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-details div {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contacto-form input, .contacto-form select, .contacto-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(243, 156, 18, 0.3);
    border-radius: 12px;
    color: white;
}

.btn-submit {
    background: #f39c12;
    color: #0a0f1e;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
}

/* Footer */
.eseptec-footer {
    background: #080c18;
    padding: 2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
}

.back-home {
    color: #f39c12;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .eseptec-nav ul {
        display: none;
    }
    .contacto-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-eseptec h1 {
        font-size: 2rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
}