/* assets/site.css — CLEAN BLUE CORPORATE */

:root {
    --tm-navy: #0b1f3a;
    --tm-navy-light: #163257;
    --tm-accent-bg: #f0f4f8;  /* Gri-albastru foarte pal pentru fundaluri secundare */
    --tm-text: #334155;       /* Slate Grey */
    --tm-border: #e2e8f0;
}

/* Base */
* { box-sizing: border-box; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: #ffffff;
    color: var(--tm-text);
    margin: 0;
    line-height: 1.6;
}

/* Container */
.tm-clean-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* HEADER */
.tm-clean-header {
    margin-bottom: 50px;
    /* Linie groasă Navy în stânga */
    border-left: 6px solid var(--tm-navy);
    padding-left: 24px;
}

.tm-clean-title {
    font-size: 36px;
    color: var(--tm-navy);
    font-weight: 800;
    margin: 0 0 5px 0;
    letter-spacing: -0.02em;
}

.tm-clean-subtitle {
    font-size: 16px;
    color: #64748b;
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* TECH STRIP (Banda de specificații) */
/* Fără carduri, doar o bandă curată cu fundal pal */
.tm-tech-strip {
    display: flex;
    background: var(--tm-accent-bg);
    padding: 20px 30px;
    border-radius: 4px; /* Puțin rotunjit */
    margin-bottom: 40px;
    border: 1px solid #dbeafe; /* Linie foarte fină albastră */
    gap: 40px;
    flex-wrap: wrap;
}

.tm-tech-item {
    display: flex;
    flex-direction: column;
}

.tm-tech-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.tm-tech-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--tm-navy);
}

/* FORMULA BLOCK */
.tm-formula-block {
    margin-bottom: 50px;
}

.tm-formula-label {
    font-size: 14px;
    color: var(--tm-navy);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0 0 10px 0;
}

.tm-formula-content {
    font-size: 18px;
    color: var(--tm-text);
    padding: 15px 0;
    border-top: 2px solid var(--tm-border);
    border-bottom: 2px solid var(--tm-border);
}

/* TABELUL (Piesa de rezistență) */
.tm-section-title {
    font-size: 22px;
    color: var(--tm-navy);
    margin-bottom: 20px;
    font-weight: 800;
}

.tm-table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--tm-border);
    border-radius: 6px;
}

.tm-blue-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    white-space: nowrap;
}

/* Cap Tabel - NAVY BLUE */
.tm-blue-table thead th {
    background-color: var(--tm-navy);
    color: #ffffff;
    padding: 16px 12px;
    text-align: center;
    font-weight: 600;
}

/* Prima coloană (Lipicioasă pe mobil) */
.tm-blue-table .tm-col-main {
    text-align: left;
    padding-left: 20px;
    font-weight: 700;
    color: var(--tm-navy);
    position: sticky;
    left: 0;
    background: #fff; /* Pe scroll să nu se vadă textul dedesubt */
    border-right: 2px solid var(--tm-border);
}

/* Fix pentru sticky header */
.tm-blue-table thead .tm-col-main {
    background: var(--tm-navy); /* Rămâne navy în header */
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}

/* Corp Tabel */
.tm-blue-table tbody td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--tm-border);
    color: var(--tm-text);
    text-align: center;
}

/* Zebra Striping (Rânduri gri alternative) */
.tm-blue-table tbody tr:nth-child(even) td {
    background-color: #f8fafc;
}
.tm-blue-table tbody tr:nth-child(even) .tm-col-main {
    background-color: #f8fafc; /* Asigurăm continuitatea la sticky */
}

/* Hover Effect (Culoare la mouseover) */
.tm-blue-table tbody tr:hover td {
    background-color: #e0f2fe; /* Albastru foarte deschis */
}
.tm-blue-table tbody tr:hover .tm-col-main {
    background-color: #e0f2fe;
}

.tm-footer-note {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .tm-clean-header { border-left-width: 4px; padding-left: 15px; }
    .tm-clean-title { font-size: 28px; }
    .tm-tech-strip { flex-direction: column; gap: 20px; }
}