/* /public/assets/css/style.css */
:root {
    --gradient: linear-gradient(to right, #00796B, #009688);
    --icon-menu: #d3d3d3;
    --icon-regular: #009EAD;
    --btn-base: #00ACC1;
    --btn-success: #4CAF50;
    --btn-danger: #f44336;
    --text: #212121;
    --text-light: #555;
    --bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --radius: 12px;
}
html {
    scroll-behavior: smooth;
  }
* { margin:0; padding:0; box-sizing:border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
}

.emoji { font-size: 2rem; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.grid { display: grid; gap: 2rem; }
.grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* HERO */
.hero {
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
}
.hero h1 { font-size: 3rem; margin-bottom: .5rem; }
.hero p { font-size: 1.3rem; max-width: 700px; margin: 0 auto 2rem; }
.hero-buttons { margin-top: 1.5rem; }

/* BTN */
.btn {
    display: inline-block;
    padding: .9rem 2rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    margin: 0 .5rem;
    font-size: 1.1rem;
}
.btn-base { background: var(--btn-base); color: white; }
.btn-base:hover { background: #00838f; transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-outline { border: 2px solid white; color: white; }
.btn-outline:hover { background: rgba(255,255,255,.1); }
.btn-success { background: var(--btn-success); color: white; }
.btn-success:hover { background: #388e3c; }

/* CARDURI */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform .3s;

    display: flex;
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
}
.card:hover { transform: translateY(-8px); }
.icon-home {
    width: 50px; height: 50px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    color: white;
}

/* SECȚIUNI */
section { padding: 4rem 0; }
h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 3rem;
    position: relative;
}
h2::after {
    content: '';
    width: 80px; height: 5px;
    background: var(--gradient);
    display: block;
    margin: 1rem auto 0;
    border-radius: 3px;
}

.cta {
    background: white;
    text-align: center;
    padding: 4rem 0;
    margin: 3rem 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.3rem; }
    .hero-buttons { display: flex; flex-direction: column; align-items: center; }
    .btn { margin: .5rem 0; width: 80%; }
}
/* ADAUGĂ ACEST COD LA style.css EXISTENT */

/* DETALII PROGRAM */
.about-program {
    background: white;
    padding: 4rem 0;
    text-align: center;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    border-radius: var(--radius);
}
.subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.details-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    font-size: 1.1rem;
}
.details-list li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
}
.details-list li::before {
    content: '✓';
    color: var(--btn-success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CARDURI FUNCȚIONALITĂȚI – DETALII EXTRA */
.card .details {
    font-size: .95rem;
    color: var(--text-light);
    margin-top: .5rem;
    font-style: italic;
}

/* PREȚURI */
.pricing {
    background: var(--bg);
    padding: 5rem 0;
    text-align: center;
}
.price-card {
    background: white;
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-header {
    background: var(--gradient);
    color: white;
    padding: 2rem;
}
.price-header h3 { margin: 0; font-size: 1.5rem; }
.price { font-size: 3.5rem; font-weight: 700; margin: .5rem 0; }
.price span { font-size: 1.5rem; }
.price-note { font-size: 1rem; opacity: .9; }
.price-features {
    list-style: none;
    padding: 2rem;
    text-align: left;
}
.price-features li {
    margin: .8rem 0;
    color: var(--text-light);
}
.full-width {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .details-list { text-align: center; padding: 0 1rem; }
    .details-list li { padding-left: 0; }
    .details-list li::before { position: static; margin-right: .5rem; }
}
/* ==========================================================================
   SECȚIUNE "DESPRE" – VERSIUNI SUMAR
   ========================================================================== */
   .versions-summary {
    margin-top: 3rem;
    padding: 2rem;
    background: #f0f8f5;
    border-radius: var(--radius);
    text-align: center;
}
.versions-summary h3 {
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}
.versions-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.version-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}
.version-card h4 {
    margin: 0 0 .5rem;
    font-size: 1.3rem;
}
.version-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--btn-success);
    margin: .5rem 0;
}
.version-card ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
    font-size: .95rem;
}
.version-card ul li {
    margin: .4rem 0;
    color: var(--text-light);
}
.btn.small {
    padding: .6rem 1.2rem;
    font-size: .9rem;
}

/* ==========================================================================
   PREȚURI – 3 CARDURI + RIBBON
   ========================================================================== */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.price-card.recommended {
    transform: scale(1.05);
    border: 3px solid var(--btn-success);
    position: relative;
    z-index: 10;
}
.ribbon {
    position: absolute;
    top: 25px;
    right: -65px;
    background: var(--btn-success);
    color: white;
    padding: 6px 55px;
    font-size: .85rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 11;
}

/* Responsive */
@media (max-width: 992px) {
    .price-card.recommended { transform: none; }
    .versions-grid { grid-template-columns: 1fr; }
}
/* ==========================================================================
   ICONIȚE SVG – STILIZARE
   ========================================================================== */
   .icon-home {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}
.icon-home svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

/* ==========================================================================
   PREȚURI – PĂSTRAT
   ========================================================================== */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.price-card.recommended {
    transform: scale(1.05);
    border: 3px solid var(--btn-success);
    position: relative;
    z-index: 10;
}
.ribbon {
    position: absolute;
    top: 25px;
    right: -65px;
    background: var(--btn-success);
    color: white;
    padding: 6px 55px;
    font-size: .85rem;
    font-weight: 600;
    transform: rotate(45deg);
    z-index: 11;
}
@media (max-width: 992px) {
    .price-card.recommended { transform: none; }
}

.purchase-button{
    box-sizing: border-box;
    display: block;
    margin: 10px auto;
    width: 95%;    
}


/* ==========================================================================
   TEXT CONCINGĂTOR – HERO, BENEFICII, PASI
   ========================================================================== */
.hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 1.5rem auto 2rem;
    color: rgba(255,255,255,.95);
}

.why-choose {
    padding: 4rem 0;
    background: white;
    text-align: center;
}
.why-choose h2 {
    margin-bottom: 2rem;
    color: var(--text);
}
.benefits-list {
    list-style: none;
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    text-align: left;
}
.benefits-list li {
    font-size: 1.1rem;
    padding: .8rem 0;
    border-bottom: 1px solid #eee;
}
.benefits-list li:last-child { border: none; }

.how-it-works {
    background: var(--bg);
    padding: 4rem 0;
    text-align: center;
}
.how-it-works h2 {
    margin-bottom: 2.5rem;
}
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}
.step {
    background: white;
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    font-size: 1.1rem;
    line-height: 1.6;
}
.demo-cta {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    max-width: 700px;
    margin: 0 auto;
}
.demo-cta p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.btn.large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-subtitle { font-size: 1.1rem; }
    .benefits-list, .steps { grid-template-columns: 1fr; }
}









/* ==========================================================================
   DE CE VETMANAGER – CARDURI CU ICONIȚĂ
   ========================================================================== */
   .why-choose {
    padding: 5rem 0;
    background: #f8fffd;
}
.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}
.benefit-card {
    background: white;
    padding: 1.8rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.6;
    transition: transform .3s;
}
.benefit-card:hover {
    transform: translateY(-5px);
}

/* ==========================================================================
   CUM FUNCȚIONEAZĂ – LISTĂ NUMEROTATĂ, CURATĂ
   ========================================================================== */
.how-it-works {
    background: white;
    padding: 5rem 0;
}
.steps-list {
    counter-reset: step;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 0;
    list-style: none;
}
.steps-list li {
    counter-increment: step;
    font-size: 1.2rem;
    margin: 1.5rem 0;
    padding-left: 3rem;
    position: relative;
    line-height: 1.6;
}
.steps-list li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    background: var(--btn-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
.demo-cta {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background: #f0f8f5;
    border-radius: var(--radius);
}
.demo-cta .strong {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--text);
}
/* ==========================================================================
   DESCRIERE DETALIATĂ – PARAGRAFE
   ========================================================================== */
   .description {
    padding: 4rem 0;
    background: white;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-light);
}
.description p {
    max-width: 900px;
    margin: 1.5rem auto;
    text-align: justify;
}
.description p:first-child { margin-top: 0; }

/* ==========================================================================
   DEMO SECTION – CTA + PARAGRAFE EXTRA
   ========================================================================== */
.demo-section {
    background: #f0f8f5;
    padding: 5rem 0;
    text-align: center;
}
.demo-section h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}
.demo-call {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-weight: 500;
    color: var(--text);
}
.demo-detail {
    max-width: 800px;
    margin: 1.2rem auto;
    font-size: 1.05rem;
    color: var(--text-light);
    text-align: justify;
}
.demo-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ==========================================================================
   ALTE AJUSTĂRI (h2 în pricing/features)
   ========================================================================== */
.pricing h2, .features h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .description p, .demo-detail { text-align: left; padding: 0 1rem; }
    .demo-buttons { flex-direction: column; align-items: center; }
    .btn.large { width: 80%; }
}








/* ==========================================================================
   FUNCȚIONALITĂȚI COMPLETE – ICON STÂNGA + TEXT WRAP LA MARGINEA CARDULUI (FĂRĂ DIV EXTRA)
   ========================================================================== */

/* Grid */
.features .grid {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* Card – padding doar dreapta/jos/sus, iconita în stânga fără padding */
.features .card {
    position: relative;
    display: block; /* Nu flex – permite textului să curgă natural */
    background: white;
    padding: 1.5rem 1.5rem 1.5rem 120px; /* 120px = 80px icon + 40px gap */
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: all .3s ease;
    min-height: 160px;
    overflow: hidden;
}
.features .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(0,0,0,.12);
}

/* Iconița – absolut poziționată la marginea stângă a cardului */
.features .icon-home {
    position: absolute;
    left: 1.5rem;
    top: 1.5rem;
    width: 80px;
    height: 80px;
    background: linear-gradient(to right, #00796B, #009688);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,118,107,.3);
    z-index: 2;
}
.features .icon-home svg {
    width: 44px !important;
    height: 44px !important;
    stroke: white !important;
    stroke-width: 2 !important;
    fill: none !important;
}

/* Textul – începe imediat după padding (la 120px), wrap la marginea cardului */
.features .card h3,
.features .card p {
    margin: 0 0 .75rem;
    position: relative;
    z-index: 1;
}
.features .card h3 {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.features .card p strong {
    font-weight: 600;
}
.features .card .details {
    margin-top: .5rem;
    font-size: .95rem;
    color: var(--text-light);
    font-style: italic;
    line-height: 1.5;
}

/* Responsive – mobile: icon deasupra, text centrat */
@media (max-width: 768px) {
    .features .card {
        padding: 100px 1.5rem 1.5rem; /* Icon deasupra */
        text-align: center;
    }
    .features .icon-home {
        left: 50%;
        top: 1.5rem;
        transform: translateX(-50%);
    }
    .features .card h3,
    .features .card p {
        text-align: center;
    }
    .features .card .details {
        text-align: center;
    }
}





/* ==========================================================================
   NAVBAR – FIXATĂ SUS, MINIMALISTĂ, RESPONSIVE
   ========================================================================== */
   .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,.08);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}
.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #00796B;
    text-decoration: none;
    letter-spacing: -0.5px;
    width: 175px; 
}

.navbar-brand img {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 8%;
}
.navbar-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}
.navbar-item {
    margin: 0;
}
.navbar-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: .5rem 0;
    position: relative;
    transition: color .3s ease;
}
.navbar-link:hover {
    color: #009688;
}
.navbar-link.active {
    color: #009688;
}
.navbar-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #009688;
    border-radius: 2px;
}

/* Mobile – hamburger menu */
.navbar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
}
@media (max-width: 768px) {
    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.5rem;
        box-shadow: 0 4px 12px rgba(0,0,0,.1);
        display: none;
        opacity: 0;
        transition: all .3s ease;
    }
    .navbar-menu.open {
        display: flex;
        opacity: 1;
    }
    .navbar-item {
        margin: 1rem 0;
        text-align: center;
    }
    .navbar-toggle {
        display: block;
    }
    /* Spațiu pentru nav fix */
    body { padding-top: 70px; }
}



.auth-body {
    background: linear-gradient(135deg, #f0f8f5 0%, #e0f2f1 100%);
    min-height: 100vh;
    padding-top: 90px; /* Spațiu pentru navbar fix */
}
.auth-section {
    padding: 3rem 0;
}
.auth-container {
    max-width: 1000px;
}
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}
.auth-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}
.auth-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0,0,0,.12);
}
.auth-card h2 {
    margin: 0 0 .5rem;
    font-size: 1.8rem;
    color: #00796B;
    text-align: center;
}
.auth-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}
.auth-form .form-group {
    margin-bottom: 1.2rem;
}
.auth-form label {
    display: block;
    margin-bottom: .4rem;
    font-weight: 600;
    color: #333;
    font-size: .95rem;
}
.auth-form input {
    width: 100%;
    padding: .9rem 1rem;
    border: 1.5px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border .3s ease, box-shadow .3s ease;
}
.auth-form input:focus {
    outline: none;
    border-color: #009688;
    box-shadow: 0 0 0 3px rgba(0,150,136,.15);
}
.auth-form button {
    margin-top: 1rem;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}
.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: .9rem;
    color: var(--text-light);
}
.auth-footer .link {
    color: #009688;
    text-decoration: none;
    font-weight: 600;
}
.auth-footer .link:hover {
    text-decoration: underline;
}

/* Alert messages */
.alert {
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    text-align: center;
}
.alert.error {
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}
.alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Responsive – pe mobil: forme una sub alta */
@media (max-width: 768px) {
    .auth-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .auth-card {
        padding: 2rem;
    }
    .auth-body { padding-top: 80px; }
}

.body-container{
    margin-top: 5rem;
}

.dashboard-submenu-container{
    margin-top: 4rem;
}

DASHBOARD – CARDURI STATISTICI (în "Privire de ansamblu")
========================================================================== */
.dashboard-wrapper {
 display: flex;
 min-height: calc(100vh - 70px);
 background: #f5f5f5;
}
.dashboard-sidebar {
 width: 260px;
 background: white;
 box-shadow: 4px 0 12px rgba(0,0,0,.08);
 padding: 2rem 0;
 overflow-y: auto;
 flex-shrink: 0;
}
.dashboard-sidebar h3 {
 margin: 0 1.5rem 1.5rem;
 font-size: 1.1rem;
 color: #00796B;
 font-weight: 700;
 text-transform: uppercase;
 letter-spacing: 0.5px;
}
.sidebar-menu { list-style: none; margin: 0; padding: 0; }
.sidebar-item { margin: 0; }
.sidebar-link {
 display: block;
 padding: 1rem 1.5rem;
 color: #444;
 text-decoration: none;
 font-weight: 500;
 transition: all .25s ease;
 border-left: 4px solid transparent;
 font-weight: normal;
}
.sidebar-link:hover {
 background: #f0f8f5;
 color: #00796B;
 border-left-color: #009688;
}
.sidebar-link.active {
 background: #e0f2f1;
 color: #00796B;
 font-weight: 600;
 border-left-color: #009688;
}

.dashboard-main {
 flex: 1;
 padding: 2.5rem 1.5rem;
 background: linear-gradient(135deg, #f0f8f5 0%, #e0f2f1 100%);
}

.dashboard-content {
 background: white;
 padding: 2.5rem 2rem;
 border-radius: var(--radius);
 box-shadow: 0 6px 16px rgba(0,0,0,.06);
 min-height: 500px;
}
.content-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 2rem;
 padding-bottom: 1rem;
 border-bottom: 2px solid #e0f2f1;
}
.content-header h1 {
 margin: 0;
 font-size: 1.9rem;
 color: #00796B;
 font-weight: 700;
}
.btn-logout {
 background: transparent;
 color: #c62828;
 border: 1px solid #ffcdd2;
 padding: .6rem 1.2rem;
 font-size: .9rem;
 border-radius: var(--radius);
 text-decoration: none;
 transition: all .3s ease;
 display: flex;
 align-items: center;
 gap: .5rem;
}
.btn-logout:hover {
 background: #ffebee;
 border-color: #e57373;
 color: #d32f2f;
}

/* CARDURI STATISTICI */
.stats-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
 gap: 1.5rem;
 margin: 2rem 0;
}
.stat-card {
 background: #f8fdfc;
 border: 1px solid #b2dfdb;
 border-radius: var(--radius);
 padding: 1.5rem;
 text-align: center;
 transition: all .3s ease;
 position: relative;
 overflow: hidden;
}
.stat-card:hover {
 transform: translateY(-4px);
 box-shadow: 0 8px 20px rgba(0,150,136,.12);
 border-color: #009688;
}
.stat-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 4px;
 background: linear-gradient(90deg, #009688, #4db6ac);
}
.stat-icon {
 font-size: 2.2rem;
 margin-bottom: .75rem;
 display: block;
}
.stat-value {
 font-size: 2.1rem;
 font-weight: 700;
 color: #00796B;
 margin: 0;
}
.stat-label {
 font-size: .95rem;
 color: #00695c;
 margin: 0.4rem 0 0;
 font-weight: 500;
}

.user-welcome {
 background: #e0f2f1;
 padding: 1.2rem 1.5rem;
 border-radius: var(--radius);
 margin-bottom: 2rem;
 font-size: 1.05rem;
 color: #00695c;
}
.user-welcome strong {
 color: #00796B;
}

.section-title {
 font-size: 1.5rem;
 color: #00796B;
 margin: 1.5rem 0 1rem;
 padding-bottom: .5rem;
 border-bottom: 1px dashed #b2dfdb;
}
