:root {
    --bg-main: #050505;
    --bg-secundar: #0a0b0d;
    --card-bg: #121418;

    --neon-blue: #00f0ff;
    --neon-purple: #7000ff;

    --text-alb: #ffffff;
    --text-gri: #9ca3af;

    --font-titlu: 'Outfit', sans-serif;
    --font-text: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    html, body { 
    max-width: 100%; /* Fortam sa nu depaseasca latimea telefonului niciodata */
    overflow-x: hidden; /* Ascundem orice iese in exteriorul ecranului (stanga-dreapta) */
    scroll-behavior: smooth; 
    background-color: var(--bg-main); 
    color: var(--text-alb); 
    font-family: var(--font-text); 
    line-height: 1.6; 
}
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-main);
    color: var(--text-alb);
    font-family: var(--font-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
.logo {
    font-family: var(--font-titlu);
}

.sec-padding {
    padding: 120px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 30px;
}

.bg-darker {
    background-color: var(--bg-secundar);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: 0.3s;
}

.navbar.scrolled {
    padding: 15px 5%;
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: white;
    cursor: pointer;
    z-index: 2000;
    position: relative;
}

.logo span {
    color: var(--neon-blue);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-gri);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--text-alb);
}

.btn-nav {
    border: 1px solid var(--neon-blue);
    padding: 10px 25px;
    border-radius: 5px;
    color: var(--neon-blue) !important;
}

.btn-nav:hover {
    background: var(--neon-blue);
    color: var(--bg-main) !important;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 2000;
    position: relative;
}

.burger div {
    width: 30px;
    height: 3px;
    background: white;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.15) 0%, rgba(0, 240, 255, 0.05) 50%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    padding: 20px;
}

.badge-tech {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gri);
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 900;
}

.text-gradient {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gri);
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-butoane {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primar {
    background: var(--text-alb);
    color: var(--bg-main);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.btn-primar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.btn-secundar {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secundar:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

/* --- Bara de Incredere (Design Nou) --- */
.trust-bar {
    background: #08090a;
    /* Putin mai inchis decat fundalul normal */
    padding: 50px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    width: 100%;
    display: block;
    /* Garanteaza ca sta pe propriul ei rand, fara sa fie strivita */
}

.trust-title {
    color: var(--text-gri);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.trust-title strong {
    color: var(--neon-blue);
    font-weight: 700;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.t-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 25px;
    border-radius: 50px;
    /* Margini complet rotunde */
    color: var(--text-alb);
    font-family: var(--font-text);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    cursor: default;
}

.t-badge:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
    color: var(--neon-blue);
}


/* --- Servicii --- */
.titlu-sectiune {
    font-size: 3rem;
    margin-bottom: 15px;
}

.descriere-sub {
    color: var(--text-gri);
    font-size: 1.15rem;
    margin-bottom: 60px;
}

.grid-servicii {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    align-items: stretch;
}

.card-serviciu {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* O dunga subtila sus pe card */
.card-serviciu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    opacity: 0;
    transition: 0.4s;
}

.card-serviciu:hover::before {
    opacity: 1;
}

.card-serviciu:hover {
    transform: translateY(-10px);
    background: #16191d;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.iconita-gradient {
    font-size: 3rem;
    margin-bottom: 25px;
}

.card-serviciu h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.card-serviciu p {
    color: var(--text-gri);
    font-size: 1.05rem;
    flex-grow: 1;
}

/* --- Portofoliu --- */
.header-stanga {
    margin-bottom: 50px;
}

.header-stanga h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header-stanga p {
    color: var(--text-gri);
    font-size: 1.15rem;
}

.grid-portofoliu {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
}

.card-portofoliu {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.card-portofoliu:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.poza-proiect {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.poza-proiect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.card-portofoliu:hover .poza-proiect img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

.overlay-proiect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.card-portofoliu:hover .overlay-proiect {
    opacity: 1;
}

.btn-vezi {
    background: var(--neon-blue);
    color: var(--bg-main);
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-proiect {
    padding: 25px;
}

.info-proiect h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.info-proiect span {
    color: var(--neon-purple);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Contact Box Premium (Nou) --- */
.contact-box-premium {
    position: relative;
    background: linear-gradient(145deg, #0f1219 0%, #050608 100%);
    border: 1px solid rgba(0, 240, 255, 0.2);
    /* Contur albastru neon fin */
    border-radius: 20px;
    padding: 60px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Efect de lumina din spate */
.glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.c-text {
    flex: 1.5;
    text-align: left;
}

.c-text h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
}

.c-text h2 span {
    color: var(--neon-blue);
    /* Cuvantul "scalezi" se face albastru neon */
}

.c-text p {
    font-size: 1.15rem;
    color: var(--text-gri);
    margin-bottom: 40px;
    max-width: 600px;
}

.contact-metode {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* Buton de WhatsApp adevarat, nu alb anemic */
.btn-wa-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #000 !important;
    padding: 16px 35px;
    border-radius: 50px;
    font-family: var(--font-text);
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.btn-wa-premium:hover {
    background: #1ebe57;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.raspuns-rapid {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
    margin-left: 15px;
}

.c-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Racheta care pulseaza - atrage privirea */
.circle-pulse {
    width: 150px;
    height: 150px;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid var(--neon-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 4rem;
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
    animation: pulse-neon 2s infinite;
}

@keyframes pulse-neon {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 30px rgba(0, 240, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 240, 255, 0);
    }
}


/* --- Footer --- */
footer {
    padding: 60px 20px;
    background: #020202;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

footer .logo {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

footer p {
    color: #555;
    font-size: 0.95rem;
}

/* --- Animatii --- */
.fade-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-element.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* --- PROCESUL DE LUCRU --- */
.grid-proces {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 40px;
    margin-top: 50px;
}

.card-proces {
    background: var(--bg-secundar);
    padding: 40px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    transition: 0.3s;
    text-align: left;
}

.card-proces:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.05);
}

.numar-neon {
    font-family: var(--font-titlu);
    font-size: 4rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px var(--neon-blue);
    margin-bottom: 20px;
    line-height: 1;
    opacity: 0.5;
}

.card-proces h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-alb);
}

.card-proces p {
    color: var(--text-gri);
    font-size: 1rem;
}

/* --- PRETURI & PACHETE --- */
.grid-preturi {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 30px;
    align-items: center;
    margin-top: 50px;
}

.card-pret {
    background: var(--bg-main);
    padding: 50px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-pret:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.card-pret h3 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: var(--text-gri);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.pret {
    font-family: var(--font-titlu);
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
    line-height: 1;
}

.pret span {
    font-size: 1.2rem;
    color: var(--text-gri);
    font-weight: 500;
}

.descriere-pret {
    color: var(--text-gri);
    font-size: 0.95rem;
    margin-bottom: 30px;
    min-height: 65px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.lista-beneficii {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.lista-beneficii li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ddd;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Pachetul Evidentiat (Mijloc) */
.card-evidentiat {
    background: linear-gradient(180deg, #0e1218 0%, var(--bg-main) 100%);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.1);
    transform: scale(1.05);
    position: relative;
    padding: 60px 30px;
    z-index: 10;
}

.card-evidentiat:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--neon-purple);
}

.card-evidentiat h3 {
    color: var(--neon-blue);
}

.badge-recomandat {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: var(--bg-main);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

/* --- Notificari Vanzari (FOMO) --- */
.fomo-popup {
    position: fixed;
    bottom: 20px;
    left: -400px;
    /* Ascunsa in stanga afara din ecran */
    background: rgba(15, 17, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 3px solid #25D366;
    /* Linia verde de validare */
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    transition: left 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Efect de arc cand sare pe ecran */
    max-width: 350px;
}

.fomo-popup.arata-popup {
    left: 20px !important;
    /* Apare pe ecran in stanga-jos */
}

.fomo-img {
    font-size: 1.5rem;
}

.fomo-text {
    display: flex;
    flex-direction: column;
}

.fomo-text span {
    color: var(--text-alb);
    font-size: 0.9rem;
    font-weight: 500;
}

.fomo-text strong {
    color: var(--neon-blue);
    font-size: 0.95rem;
    font-weight: 700;
}

.fomo-text small {
    color: var(--text-gri);
    font-size: 0.75rem;
    margin-top: 3px;
}

/* Modificari pentru telefon la Notificari */
@media (max-width: 768px) {
    .fomo-popup {
        bottom: -200px !important;
        left: 20px !important;
        right: 20px !important;
        max-width: none !important;
        transition: bottom 0.5s ease-in-out !important;
    }

    .fomo-popup.arata-popup {
        bottom: 20px !important
            /* Urca din partea de jos pe telefon */

    }
}

/* --- BARA GDPR (COOKIES) --- */
.gdpr-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--neon-blue);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999 !important;
    /* Peste orice altceva de pe ecran */
    box-shadow: 0 -10px 30px rgba(0, 240, 255, 0.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* O ascundem initial sub ecran */
.gdpr-container.hidden {
    transform: translateY(150%);
}

.gdpr-container p {
    color: var(--text-gri);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.gdpr-btn {
    background-color: var(--neon-blue);
    color: var(--bg-main);
    border: none;
    padding: 10px 25px;
    font-family: var(--font-titlu);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s;
    flex-shrink: 0;
    text-transform: uppercase;
}

.gdpr-btn:hover {
    background-color: white;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

@media (max-width: 768px) {
    .gdpr-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
}

/* ========================================= */
/* --- DESPRE FONDATOR (REPARAT COMPLET) --- */
/* ========================================= */

.flex-fondator { 
    display: flex; 
    align-items: center; 
    gap: 60px; 
    max-width: 1000px; 
    margin: 0 auto; 
}

/* ==================================================== */
/* FIX NUCLEAR PENTRU POZA TUDOR & ETICHETA NEON        */
/* ==================================================== */

.poza-fondator { 
    position: relative !important; 
    width: 250px !important; /* Fortam cutia sa aiba fix marimea pozei */
    height: 250px !important; 
    flex-shrink: 0 !important; 
    margin: 0 auto 35px auto !important; /* O centreaza perfect pe ecran si lasa loc jos pt eticheta */
    display: block !important;
}

.poza-fondator img { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; 
    border-radius: 50% !important; 
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.15) !important; 
    border: 3px solid rgba(255,255,255,0.05) !important; 
    display: block !important;
}

.badge-experienta { 
    position: absolute !important; 
    bottom: -15px !important; 
    left: 50% !important; 
    transform: translateX(-50%) !important; /* Trage eticheta fix pe mijlocul cercului de 250px */
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple)) !important; 
    color: var(--bg-main) !important; 
    padding: 10px 25px !important; 
    font-weight: 800 !important; 
    border-radius: 30px !important; 
    font-family: var(--font-titlu) !important; 
    font-size: 0.8rem !important; 
    text-transform: uppercase !important; 
    letter-spacing: 1px !important; 
    z-index: 100 !important;
    white-space: nowrap !important; 
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3) !important; 
    margin: 0 !important;
}


.poza-fondator img:hover { 
    filter: grayscale(0%); 
    transform: scale(1.05); 
    border-color: var(--neon-blue);
}

/* Textul din dreapta pe PC */
.text-fondator { 
    flex: 1; 
    text-align: left; 
}

.text-fondator h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; line-height: 1.2; }
.text-fondator p { color: var(--text-gri); font-size: 1.1rem; margin-bottom: 20px; line-height: 1.8; }

/* ========================================= */
/* --- ADAPTARE PENTRU TELEFOANE MOBILE  --- */
/* ========================================= */
@media (max-width: 900px) {
    /* Le pune una sub alta pe telefon */
    .flex-fondator { 
        flex-direction: column !important; 
        text-align: center !important; 
        gap: 40px !important; 
    }
    
    /* Micsoram putin poza pe telefon */
    .poza-fondator { 
        width: 220px !important; 
        height: 220px !important; 
        margin-bottom: 10px !important; 
    }
    
    /* Textul se centreaza pe telefon */
    .text-fondator { 
        text-align: center !important; 
    }
    
    .text-fondator h2 { font-size: 2rem !important; }
}


/* --- WhatsApp Plutitor Agentie --- */
.whatsapp-float-agency {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    /* E ridicat putin ca sa nu se suprapuna pe bara de Cookies! */
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.wa-icon {
    width: 35px;
    height: 35px;
}

.whatsapp-float-agency:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #1ebe57;
    box-shadow: 0px 15px 25px rgba(37, 211, 102, 0.5);
}

/* Modificari pe Telefon */
@media (max-width: 900px) {
    .flex-fondator {
        flex-direction: column;
        text-align: center;
    }

    .text-fondator {
        text-align: center;
        margin-top: 40px;
    }

    .badge-experienta {
        right: 50%;
        transform: translateX(50%);
        bottom: -20px;
        width: max-content;
    }

    .whatsapp-float-agency {
        width: 55px;
        height: 55px;
        bottom: 85px;
        right: 20px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
    }
}

/* Ajustari Mobil pt Noile Sectiuni */
@media (max-width: 1000px) {

    .grid-proces,
    .grid-preturi {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .card-evidentiat {
        transform: scale(1);
        padding: 50px 30px;
    }

    .card-evidentiat:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {

    .grid-proces,
    .grid-preturi {
        grid-template-columns: 1fr !important;
    }
}


/* --- RESPONSIVE MOBIL --- */
@media (max-width: 1000px) {

    .grid-servicii,
    .grid-portofoliu {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .burger {
        display: block;
        z-index: 2000;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: 0.4s ease-in-out;
        z-index: 1000;
        border: none;
    }

    .nav-links.nav-activ {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .burger.toggle .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.toggle .line2 {
        opacity: 0;
    }

    .burger.toggle .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-butoane {
        flex-direction: column;
    }

    .hero-butoane a {
        width: 100%;
        text-align: center;
    }

    .grid-servicii,
    .grid-portofoliu {
        grid-template-columns: 1fr !important;
    }

    .contact-box {
        padding: 40px 20px;
    }

    .contact-text h2 {
        font-size: 2.5rem;
    }
}

/* Adaptare Contact Premium pe mobil */
.contact-content {
    flex-direction: column;
    text-align: center;
}

.c-text {
    text-align: center;
}

.c-text h2 {
    font-size: 2.5rem;
}

.contact-metode {
    align-items: center;
}

.raspuns-rapid {
    margin-left: 0;
}

.circle-pulse {
    width: 120px;
    height: 120px;
    font-size: 3rem;
    margin-top: 30px;
}

.contact-box-premium {
    padding: 40px 20px;
}

/* ========================================= */
/* --- SERVICII OPTIONALE (UPSELL) --- */
/* ========================================= */

.upsell {
    background: var(--bg-main);
    border-top: 1px dashed rgba(255, 255, 255, 0.05);
}

.grid-upsell {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px;
    align-items: stretch;
}

.card-upsell {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.card-upsell:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-3px);
}

.iconita-upsell {
    font-size: 2rem;
    margin-bottom: 15px;
}

.card-upsell h3 {
    font-size: 1.2rem;
    color: var(--text-alb);
    margin-bottom: 10px;
}

.card-upsell p {
    color: var(--text-gri);
    font-size: 0.9rem;
    flex-grow: 1;
    /* Impinge pretul in jos ca sa fie toate aliniate */
    margin-bottom: 20px;
}

.pret-upsell {
    font-family: var(--font-titlu);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--neon-blue);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

/* Modificari pentru telefoane la sectiunea Upsell */
@media (max-width: 900px) {
    .grid-upsell {
        grid-template-columns: 1fr !important;
        /* Pe telefon le pune una sub alta */
        gap: 15px;
    }
}