/* HERO - AJUSTAT PENTRU CLEARANCE HEADER + PNRR */
#hero {
    position: relative;
    height: 95vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-top: 180px;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 90%;
    max-width: 1300px;
    margin: 2rem auto 0;
    padding: 0 20px;
}

#hero .section-desc {
    margin-left: 0;
    margin-right: auto;
}

.hero-top-tag {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeInLeft 0.8s ease-out 0.1s backwards;
    border-left: 4px solid var(--accent-gold);
    padding-left: 1rem;
}

.hero-title span {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    display: block;
}

.hero-title strong {
    color: var(--accent-gold);
    -webkit-text-stroke: 0;
    display: block;
    margin-top: 0.5rem;
    text-shadow: 0 0 40px rgba(255, 107, 0, 0.3);
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    animation: fadeInLeft 0.8s ease-out 0.3s backwards;
    margin-top: 1rem;
}

/* CTA final — centrat */
.section-contact .btn-group {
    justify-content: center;
    animation: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    opacity: 0.6;
}

/* Mobile Logic */
@media (max-width: 768px) {
    #hero,
    .home-section {
        padding-top: 120px;
        padding-bottom: 50px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* TEASER CARDS */
.teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.teaser-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 24px;
    transition: all 0.4s ease;
    text-align: left;
}

.teaser-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.teaser-icon {
    color: var(--accent-gold);
    width: 44px;
    height: 44px;
    margin-bottom: 1.5rem;
}

.teaser-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.teaser-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    #hero {
        padding-top: 140px;
        height: auto;
        padding-bottom: 80px;
    }

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

/* ================================================
   FRONT-PAGE EXTENDED SECTIONS
   ================================================ */

/* --- CIFRE CHEIE --- */
.section-stats {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.section-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,107,0,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border: 1px solid rgba(255,107,0,0.15);
    border-radius: 20px;
    background: rgba(255,107,0,0.03);
    transition: border-color 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}
.stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.stat-card:hover { border-color: var(--accent-gold); transform: translateY(-4px); }
.stat-card:hover::after { opacity: 1; }
.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-display);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* --- CUM FUNCTIONEAZA --- */
.section-process {
    padding: 6rem 0;
    position: relative;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), var(--accent-gold), transparent);
    opacity: 0.3;
}
.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}
.step-number-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: background 0.3s, transform 0.3s;
}
.process-step:hover .step-number-wrap {
    background: rgba(255,107,0,0.15);
    transform: scale(1.1);
}
.step-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent-gold);
    font-family: var(--font-display);
}
.process-step h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}
.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}
.step-icon {
    width: 32px;
    height: 32px;
    color: var(--accent-gold);
    margin: 0 auto 0.5rem;
}

/* --- DE CE NOI --- */
.section-why {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.section-why::before {
    content: '';
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,107,0,0.06), transparent 70%);
    pointer-events: none;
}
.why-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 1rem;
}
.why-text-col .section-header {
    text-align: left;
    margin-bottom: 2rem;
}
.why-text-col .section-header::after { display: none; }
.why-desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.why-list li .check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    color: var(--accent-gold);
    margin-top: 1px;
}
.why-list li strong { color: #fff; }
.why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.why-feat-card {
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, transform 0.3s;
    text-align: center;
}
.why-feat-card:hover {
    border-color: rgba(255,107,0,0.4);
    transform: translateY(-3px);
}
.why-feat-card:nth-child(2) { margin-top: 2rem; }
.why-feat-card:nth-child(4) { margin-top: -2rem; }
.why-feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,107,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--accent-gold);
}
.why-feat-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.why-feat-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* --- TESTIMONIALE --- */
.section-testimoniale {
    padding: 6rem 0;
    position: relative;
}
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.testi-card {
    padding: 2.5rem;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    background: rgba(255,255,255,0.02);
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
}
.testi-card:hover {
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-4px);
}
.testi-quote-icon {
    color: var(--accent-gold);
    opacity: 0.4;
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}
.testi-text {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testi-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,107,0,0.15);
    border: 2px solid rgba(255,107,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.testi-name {
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
}
.testi-role {
    color: var(--text-secondary);
    font-size: 0.82rem;
    margin-top: 2px;
}
.testi-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

/* --- NOUTATI TEASER --- */
.section-noutati {
    padding: 6rem 0;
    position: relative;
}
.noutati-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.noutati-card {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.02);
    transition: border-color 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
}
.noutati-card:hover {
    border-color: rgba(255,107,0,0.3);
    transform: translateY(-4px);
}
.noutati-card-thumb {
    height: 180px;
    background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(5,10,20,0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.noutati-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}
.noutati-card-thumb .thumb-icon {
    position: absolute;
    color: var(--accent-gold);
    opacity: 0.3;
    width: 80px;
    height: 80px;
}
.noutati-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.noutati-cat-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
}
.noutati-card-title {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
}
.noutati-card-title:hover { color: var(--accent-gold); }
.noutati-card-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1.5rem;
}
.noutati-card-meta {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1rem;
}
.noutati-no-posts {
    text-align: center;
    color: var(--text-secondary);
    padding: 3rem;
    grid-column: 1 / -1;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .why-split { grid-template-columns: 1fr; gap: 3rem; }
    .why-visual { max-width: 500px; margin: 0 auto; }
}
@media (max-width: 768px) {
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .process-steps::before { display: none; }
    .testi-grid { grid-template-columns: 1fr; }
    .noutati-grid { grid-template-columns: 1fr; }
    .why-visual { grid-template-columns: 1fr 1fr; }
    .why-feat-card:nth-child(2),
    .why-feat-card:nth-child(4) { margin-top: 0; }
}
@media (max-width: 480px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stat-number { font-size: 2.5rem; }
    .why-visual { grid-template-columns: 1fr; }
}
