﻿/* =========================================
   UyControl - Premium Dark Theme Styles
========================================= */

:root {
    /* Colors */
    --bg-dark: #07070a;
    --bg-panel: #14141d;
    --text-main: #f0f0f5;
    --text-muted: #9ba1a6;

    /* Brand Accents */
    --accent-cyan: #00f3ff;
    --accent-violet: #b800ff;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    --gradient-hover: linear-gradient(135deg, #2ae7f0, #9600d1);

    /* Spacing & Sizes */
    --nav-height: 80px;
    --border-radius: 12px;
    --border-radius-lg: 24px;

    /* Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* =========================================
   Reset & Base Styles
========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 100px 0;
}

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

/* Typography Enhancements */
h1,
h2,
h3,
h4 {
    font-weight: 800;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-cyan {
    color: var(--accent-cyan);
}

/* =========================================
   Buttons & UI Elements
========================================= */
.btn-primary,
.btn-secondary,
.btn-primary-outline {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.btn-primary {
    background: var(--gradient-brand);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 243, 255, 0.2);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 0, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.btn-primary-outline {
    background: transparent;
    color: var(--accent-cyan);
    border: 2px solid var(--accent-cyan);
    padding: 10px 24px;
}

.btn-primary-outline:hover {
    background: rgba(0, 243, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.3);
}

.badge {
    display: inline-block;
    background: rgba(184, 0, 255, 0.15);
    color: var(--accent-violet);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(184, 0, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   Navigation
========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(7, 7, 10, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-accent {
    color: var(--accent-cyan);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not(.btn-primary-outline) {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary-outline):hover {
    color: var(--accent-cyan);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    cursor: pointer;
}

/* =========================================
   Hero Section
========================================= */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--nav-height);
    background: url('../assets/hero_bg.png') center/cover no-repeat;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 7, 10, 0.6) 0%, rgba(7, 7, 10, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 24px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================================
   Services Section
========================================= */
.services {
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 243, 255, 0.05) 0%, transparent 70%);
    z-index: -1;
}

.section-title {
    margin-bottom: 60px;
}

.section-title p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card-content {
    padding: 30px 30px 40px;
}

.card-image-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition-fast);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 243, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent-cyan);
    transition: var(--transition-smooth);
}

.service-card:hover .icon-wrapper {
    background: var(--gradient-brand);
    color: #fff;
    box-shadow: 0 10px 20px rgba(184, 0, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

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

.service-card-large {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    align-items: stretch;
}

.service-card-large .card-image-top {
    width: 40%;
    height: auto;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card-large .service-card-content {
    width: 60%;
}

@media (max-width: 992px) {
    .service-card-large {
        flex-direction: column;
    }

    .service-card-large .card-image-top {
        width: 100%;
        height: 250px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .service-card-large .service-card-content {
        width: 100%;
    }
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item .material-symbols-outlined {
    color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    font-size: 20px;
}

.feature-item span.feature-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* =========================================
   About Section
========================================= */
.about {
    position: relative;
}

.glossy-bg {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0d0d14 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.about-features {
    list-style: none;
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    max-width: 400px;
    text-align: center;
}

.glow-orb {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-violet);
    filter: blur(80px);
    top: -50px;
    right: -50px;
    opacity: 0.5;
    z-index: -1;
}

/* =========================================
   CTA Section
========================================= */
.cta {
    position: relative;
}

.cta h2 {
    font-size: 3rem;
}

.cta p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 576px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 243, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 243, 255, 0);
    }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-text {
    margin-bottom: 50px;
}

.contact-form-wrapper {
    background: var(--bg-panel);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

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

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 243, 255, 0.03);
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

.form-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
    animation: fadeInUp 0.5s ease;
}

.form-success.visible {
    display: block;
}

.success-icon {
    font-size: 72px;
    color: var(--accent-cyan);
    display: block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* =========================================
   Footer
========================================= */
.footer {
    background: #040406;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 300px;
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-links a,
.footer-contact p {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Productos Section
========================================= */
.prd-section {
    position: relative;
    overflow: hidden;
}

.prd-section::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(184, 0, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.prd-section .container {
    position: relative;
    z-index: 1;
}

/* Flujo */
.prd-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.prd-flow-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 7px 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.prd-flow-arrow {
    color: #334155;
    font-size: 1.1rem;
}

/* Grilla 2x2 */
.prd-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

/* Card */
.prd-card {
    background: var(--bg-panel);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.prd-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 2;
}

.prd-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.1);
}

.prd-card:hover::before { opacity: 1; }

/* ── Marcos de dispositivo ── */
.prd-frame {
    width: 100%;
    overflow: hidden;
}

.prd-frame-tablet {
    background: #111827;
    padding: 10px 10px 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.prd-notch {
    width: 52px;
    height: 5px;
    background: #374151;
    border-radius: 3px;
    margin: 0 auto 8px;
}

.prd-frame-tv {
    background: #0f172a;
    padding: 8px 8px 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.prd-tv-stand {
    width: 120px;
    height: 14px;
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

.prd-tv-base {
    width: 180px;
    height: 5px;
    background: #1e293b;
    border-radius: 3px;
    margin: 0 auto 6px;
}

.prd-frame-laptop {
    background: #111827;
    overflow: hidden;
}

.prd-winbar {
    background: #1f2937;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.prd-wdot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.prd-urlbar {
    flex: 1;
    background: #374151;
    border-radius: 4px;
    padding: 2px 8px;
    font-size: 0.53rem;
    color: #9ca3af;
    margin: 0 4px;
}

/* ── Pantallas ── */
.prd-screen {
    overflow: hidden;
    border-radius: 3px 3px 0 0;
}

.prd-dark  { background: #030712; }
.prd-light { background: #f3f4f6; }

/* ── Totem / index.php ── */
.prd-t-header {
    text-align: center;
    padding: 16px 16px 10px;
}

.prd-t-header h3 {
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.prd-t-header p {
    font-size: 0.58rem;
    color: #9ca3af;
    margin-top: 3px;
}

.prd-t-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 0 12px 14px;
}

.prd-t-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 8px;
    border-radius: 16px;
    border: none;
    cursor: default;
    font-family: inherit;
    box-shadow: 0 6px 16px rgba(0,0,0,.35);
}

.prd-t-btn > span { font-size: 1.8rem; line-height: 1; }
.prd-t-btn > b   { font-size: 0.75rem; font-weight: 800; color: #fff; }
.prd-t-btn > small { font-size: 0.52rem; color: rgba(255,255,255,.75); text-align: center; line-height: 1.3; }

/* ── Display TV / display.php ── */
.prd-d-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid #1e293b;
}

.prd-d-header > span:first-child {
    font-size: 0.72rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.8px;
}

.prd-d-clock {
    font-size: 0.62rem;
    color: #4b5563;
    font-variant-numeric: tabular-nums;
    font-weight: 600;
}

.prd-d-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 10px 8px;
}

.prd-d-dept {
    border-radius: 16px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
    border: 1.5px solid;
}

.prd-d-blue   { background: rgba(30,58,138,.35);  border-color: #3b82f6; }
.prd-d-green  { background: rgba(6,78,59,.35);    border-color: #10b981; }
.prd-d-amber  { background: rgba(120,53,15,.35);  border-color: #f59e0b; }
.prd-d-violet { background: rgba(76,29,149,.35);  border-color: #8b5cf6; }

.prd-d-dept > span  { font-size: 1.3rem; line-height: 1; }

.prd-d-dept > b {
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    margin-top: 2px;
}

.prd-d-dept > small {
    font-size: 0.42rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.prd-d-dept > strong {
    font-size: 1.9rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: 0.5px;
}

.prd-d-wait {
    display: flex;
    align-items: center;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 5px;
    margin-top: 3px;
    width: 100%;
    justify-content: center;
}

.prd-d-wait span:first-child { font-size: 0.44rem; color: #6b7280; }

.prd-d-wait span:last-child { font-size: 0.85rem; font-weight: 900; }

.prd-d-blue   b, .prd-d-blue   .prd-d-wait span:last-child { color: #60a5fa; }
.prd-d-green  b, .prd-d-green  .prd-d-wait span:last-child { color: #34d399; }
.prd-d-amber  b, .prd-d-amber  .prd-d-wait span:last-child { color: #fbbf24; }
.prd-d-violet b, .prd-d-violet .prd-d-wait span:last-child { color: #a78bfa; }

/* ── Operador / operator.php ── */
.prd-o-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.prd-o-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: #111827;
}

.prd-o-sub {
    font-size: 0.56rem;
    color: #7c3aed;
    font-weight: 600;
    margin-top: 1px;
}

.prd-o-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.prd-o-card {
    background: #fff;
    margin: 10px 12px 6px;
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.08);
}

.prd-o-label {
    font-size: 0.5rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.prd-o-bignum {
    font-size: 3rem;
    font-weight: 900;
    color: #3b82f6;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.prd-o-call {
    display: block;
    margin: 0 12px 6px;
    width: calc(100% - 24px);
    padding: 10px;
    border-radius: 14px;
    border: none;
    background: #3b82f6;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    font-family: inherit;
    cursor: default;
    box-shadow: 0 4px 12px rgba(59,130,246,.35);
}

.prd-o-actions {
    display: flex;
    gap: 6px;
    padding: 0 12px 12px;
}

.prd-o-ok, .prd-o-skip {
    flex: 1;
    padding: 7px;
    border-radius: 10px;
    border: none;
    font-size: 0.56rem;
    font-weight: 700;
    font-family: inherit;
    cursor: default;
}

.prd-o-ok   { background: #d1fae5; color: #065f46; }
.prd-o-skip { background: #f3f4f6; color: #6b7280; }

/* ── Admin / admin.php ── */
.prd-a-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 14px;
    border-bottom: 1px solid #e5e7eb;
}

.prd-a-header > span {
    font-size: 0.72rem;
    font-weight: 800;
    color: #111827;
}

.prd-a-reset {
    font-size: 0.5rem;
    font-weight: 700;
    background: #ef4444;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 8px;
    cursor: default;
    font-family: inherit;
}

.prd-a-kpis {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    padding: 8px 10px 6px;
}

.prd-a-kpi {
    border-radius: 10px;
    border: 1px solid;
    padding: 7px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.prd-a-kpi b     { font-size: 1.2rem; font-weight: 900; line-height: 1; }
.prd-a-kpi small { font-size: 0.42rem; font-weight: 600; text-align: center; line-height: 1.3; }

.prd-a-table {
    margin: 0 10px 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.prd-a-thead {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-size: 0.44rem;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    padding: 4px 8px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    gap: 4px;
}

.prd-a-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    font-size: 0.52rem;
    color: #374151;
    font-weight: 600;
    padding: 4px 8px;
    border-bottom: 1px solid #f9fafb;
    gap: 4px;
    align-items: center;
}

.prd-a-row:last-child { border-bottom: none; }

.prd-a-badge {
    font-style: normal;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 6px;
    border-radius: 999px;
    color: #fff;
    font-size: 0.46rem;
    font-weight: 700;
}

/* ── Info text ── */
.prd-info {
    padding: 20px 22px 24px;
}

.prd-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 14px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid;
    margin-bottom: 12px;
}

.prd-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.prd-info p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* CTA */
.prd-cta {
    text-align: center;
    margin-top: 56px;
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
    .prd-grid { grid-template-columns: 1fr; }
    .prd-flow { display: none; }
}



/* =========================================
   Animations & Utils
========================================= */
.hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

/* =========================================
   Responsive Design
========================================= */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: var(--nav-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: rgba(7, 7, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-smooth);
    }

    .nav-links.active {
        left: 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 15px auto;
    }
}