/* 1. SETĂRI GENERALE HTML & BODY */
html, body {
    height: 100%;
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    background: #F6F4F0; /* Fundal crem */
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

/* --- CONTAINERUL PRINCIPAL --- */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #F6F4F0;
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
    width: 100%;
    box-shadow: none;
}

/* --- ZONA DE CONȚINUT PRINCIPAL (HERO - INDEX) --- */
.main-content-area {
    background-color: transparent;
    overflow: visible;
    position: relative;
    z-index: 5;
    
    /* FLEXBOX PENTRU CENTRARE */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    /* STICKY FOOTER */
    flex-grow: 1 !important; /* CRITIC: Se extinde */
    
    text-align: center;
    padding: 80px 40px;
    margin-bottom: 150px;
    box-sizing: border-box;
    width: 100%;
    min-height: 70vh; 
}

/* --- Stiluri Fade-in la Scroll --- */
.hidden-on-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* --- Stiluri header principal --- */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background-color: #F6F4F0;
    border-bottom: none;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.site-name-link {
    text-decoration: none;
    color: inherit;
}

.site-name {
    font-size: 2.2rem;
    font-weight: normal;
    font-family: 'Great Vibes', cursive;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.name-stefan,
.name-mucileanu {
    text-transform: none;
    color: #000000;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    display: inline-block;
    text-decoration: none;
    color: #333333;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s, transform 0.2s ease-out, outline 0.2s ease-in-out;
    position: relative;
    font-family: Arial, sans-serif;
}

.main-nav a:not(.cta-button):hover {
    background-color: transparent;
    color: #000000;
    outline: none;
}

.main-nav a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #000000;
    bottom: 5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-out;
}

.main-nav a:not(.cta-button):hover::after {
    transform: scaleX(1);
}

.main-nav a.cta-button {
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 20px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 30px;
    box-shadow: none;
    transition: background-color 0.3s, transform 0.3s;
}

.main-nav a.cta-button:hover {
    background-color: #333333;
    color: #ffffff;
    transform: translateY(-3px) scale(1.03);
}

.main-nav a.cta-button:active {
    transform: translateY(-1px) scale(1.01);
    transition-duration: 0.1s;
}

/* --- Stiluri Main Content (Hero) --- */
.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.main-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #000000;
    margin: 0;
    line-height: 1.2;
    text-shadow: none;
    font-family: Arial, sans-serif;
}

.main-title .title-line {
    display: block;
    margin-bottom: 5px;
}

.subtitle {
    font-size: 1.8rem;
    color: #333333;
    margin: 10px 0 20px 0;
}

/* Butonul mare (Hero și CTA) */
.cta-button-large,
.blinking-contact-button {
    display: inline-block;
    padding: 18px 35px;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #000000;
    border-radius: 10px;
    border: 3px solid #000000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
}

.cta-button-large:hover,
.blinking-contact-button:hover {
    background-color: #333333;
    border-color: #333333;
    transform: scale(1.03);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 0, 0, 0.2);
}

.blinking-contact-button {
    animation: blinkSimpleBlack 1.5s infinite alternate;
}

@keyframes blinkSimpleBlack {
     0% { opacity: 1; box-shadow: 0 0 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 0, 0, 0.1); }
    100% { opacity: 0.85; box-shadow: 0 0 15px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 0, 0, 0.2); }
}

/* --- Secțiune Comparație --- */
.comparison-section {
    background-color: #F6F4F0;
    padding: 100px 40px;
    position: relative;
    z-index: 5;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
}

.comparison-title {
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
    margin: 0 auto 50px auto;
    max-width: 800px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.comparison-column {
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
}

/* Stil "Phantom" pentru Agenții */
.comparison-column.agency {
    background-color: transparent;
    border: 2px dashed #cccccc;
    box-shadow: none;
    opacity: 0.7; 
}

.comparison-column.agency .column-title {
    color: #777777;
}

.comparison-column.agency li {
    color: #555555;
    font-weight: 500;
}

/* Stil "Promovat" pentru Freelancer */
.comparison-column.freelancer {
    background-color: #ffffff;
    border: 1px solid #ddd;
    transform: scale(1.02);
}

.column-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #000000;
    margin: 0 0 25px 0;
    font-family: Arial, sans-serif;
}

.comparison-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-column li {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.5;
}

.icon-x, .icon-check {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.icon-x {
    background-color: #fde8e8;
    color: #d9534f;
    opacity: 0.6;
}
.icon-x::before {
    content: '×';
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1;
}

.icon-check {
    background-color: #e6f7ee;
    color: #28a745;
}
.icon-check::before {
    content: '✓';
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
}

/* --- Secțiune SERVICII --- */
.services-section {
    min-height: auto;
    padding: 100px 50px 80px 50px;
    position: relative;
    z-index: 5;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.grow-title {
    font-size: 4.5rem;
    font-weight: bold;
    color: #000000;
    margin-bottom: 30px;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.2), 0 0 25px rgba(0, 0, 0, 0.1);
}

.section-title {
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 60px;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
    border-bottom: 3px solid #000000;
    padding-bottom: 8px;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
}

.service-card {
    background-color: #ffffff;
    border: 3px solid #000000;
    border-radius: 15px;
    padding: 35px;
    font-family: 'Courier New', Courier, monospace;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.25), 0 0 35px rgba(0, 0, 0, 0.15);
    border-color: #333333;
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-icon .icon-svg {
    width: 40px;
    height: 40px;
    fill: #000000;
    stroke: none;
    transition: fill 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.service-card:hover .service-icon .icon-svg {
    fill: #333333;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.service-title {
    color: #000000;
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.service-description {
    color: #333333;
    font-size: 1.15rem;
    line-height: 1.5;
    text-align: left;
    font-weight: 700;
}

/* --- Secțiune FAQ --- */
.faq-section {
    background-color: #F6F4F0;
    color: #333333;
    padding: 80px 50px;
    text-align: center;
    position: relative;
    z-index: 5;
    font-family: Arial, sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.faq-main-title {
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.3),
                 0 0 20px rgba(0, 0, 0, 0.2);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
    padding: 40px;
    box-sizing: border-box;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item {
    background-color: #F9F9F9;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-icon {
    width: 22px;
    height: 22px;
    border: 2px solid #000000;
    border-radius: 50%;
    position: relative;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: #000000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
    width: 10px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    width: 2px;
    height: 10px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

details[open] > summary .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-answer {
    padding: 0 25px 25px 25px;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
}

.faq-answer p {
    margin: 0;
}

/* --- SECȚIUNE CTA --- */
.cta-section {
    background-color: #F6F4F0;
    padding: 80px 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.cta-container {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: bold;
    color: #000000;
    margin-top: 0;
    margin-bottom: 25px;
    line-height: 1.3;
    font-family: Arial, sans-serif;
}

.cta-subtitle {
    font-size: 1.5rem;
    color: #777777;
    font-weight: 500;
    margin-top: -15px;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.cta-arrow {
    margin-bottom: 20px;
    animation: bounceArrow 2s infinite;
    color: #000000;
}

.cta-arrow svg {
    width: 40px;
    height: 40px;
}

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

/* --- STILURI PAGINA DE CONTACT --- */
.contact-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
    background-color: #ffffff;
    border-bottom: 1px solid #cccccc;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    box-sizing: border-box;
}

.contact-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}
.contact-nav-button {
    display: inline-block;
    text-decoration: none;
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 2px solid #000000;
    border-radius: 5px;
    transition: background-color 0.3s, border-color 0.3s, transform 0.2s ease-out, color 0.3s;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
}
.contact-nav-button:hover {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
}
.contact-nav-button.active {
    background-color: #000000;
    border-color: #000000;
    color: #ffffff;
}

.contact-page-main {
    align-items: flex-start;
    padding: 80px 50px;
    min-height: calc(100vh - 83px);
    z-index: 5;
    width: 100%;
    box-sizing: border-box;
}

.form-container {
    width: 90%;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
    z-index: 10;
    color: #000000;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.form-title {
    font-size: 2rem;
    color: #000000;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    line-height: 1.3;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #333333;
    margin: 8px 0;
    text-align: center;
    line-height: 1.5;
}

.contact-form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 450px;
}

.form-label {
    font-size: 1rem;
    color: #000000;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
}

.form-input,
.form-textarea,
.form-select {
    background-color: #f9f9f9;
    border: 2px solid #000000;
    color: #000000;
    padding: 12px;
    font-size: 0.9rem;
    border-radius: 5px;
    font-family: 'Courier New', Courier, monospace;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: #333333;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23000000%22%20d%3D%22M287%2C197.3L146.2%2C56.6L5.4%2C197.3c-4.8%2C4.8-12.5%2C4.8-17.3%2C0c-4.8-4.8-4.8-12.5%2C0-17.3l149-149c4.8-4.8%2C12.5-4.8%2C17.3%2C0l149%2C149c4.8%2C4.8%2C4.8%2C12.5%2C0%2C17.3C299.5%2C202.1%2C291.8%2C202.1%2C287%2C197.3z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
}

.form-button {
    padding: 18px 35px;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff;
    background-color: #000000;
    border-radius: 10px;
    border: 3px solid #000000;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    font-family: 'Courier New', Courier, monospace;
    cursor: pointer;
    width: 100%;
    max-width: 450px;
    animation: none;
}

.form-button:hover {
    background-color: #333333;
    border-color: #333333;
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.form-required-note {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 15px;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    text-transform: uppercase;
}

/* --- STILURI PAGINA LEGALA (Termeni / Confidențialitate) --- */
.legal-content-container {
    background-color: #ffffff; 
    padding: 50px;
    max-width: 1000px;
    margin: 40px auto; 
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
    width: 100%;
    box-sizing: border-box;
    text-align: left; 
}

/* --- FOOTER STYLES (Noul design) --- */
.site-footer {
    background-color: #F6F4F0;
    border-top: none;
    padding: 60px 40px 40px 40px;
    color: #000000;
    font-family: Arial, sans-serif;
    margin-top: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-top-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

.footer-branding-new {
    text-align: left;
}

.footer-name-new {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: #000000;
    font-weight: normal;
}

.footer-socials-new {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.social-button-new {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}
.social-button-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.social-button-new svg {
    width: 26px;
    height: 26px;
    fill: #000000;
}

/* Culorile brandurilor */
.social-button-new.whatsapp { background-color: #25D366; }
.social-button-new.whatsapp svg { fill: #ffffff; }

.social-button-new.instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-button-new.instagram svg { fill: none; }

.social-button-new.linkedin { background-color: #0A66C2; }
.social-button-new.linkedin svg { fill: #ffffff; }

.social-button-new.facebook { background-color: #1877F2; }
.social-button-new.facebook svg { fill: #ffffff; }

.social-button-new.x-twitter { background-color: #000000; }
.social-button-new.x-twitter svg { fill: #ffffff; }


/* Noul Footer - Divizor */
.footer-divider-new {
    border-top: 1px solid #cccccc;
    max-width: 1200px;
    margin: 0 auto 30px auto;
}

/* Noul Footer - Rândul de jos */
.footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    font-size: 0.9rem;
    color: #333333;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright-new {
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.footer-legal-links-new {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.footer-link-new {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-link-new:hover {
    color: #000000;
}

.legal-separator {
    color: #cccccc;
}


/* --- STILURI MEDIA QUERIES (Global) --- */
@media (max-width: 1420px) {
    .page-container {
        max-width: 100%;
        margin: 0;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    
    .site-header,
    .contact-header,
    .main-content-area,
    .comparison-section,
    .services-section,
    .faq-section,
    .legal-page-main,
    .site-footer {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .site-header,
    .contact-header {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 10px;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav a {
        font-size: 1rem;
        padding: 8px 10px;
    }
    
    .main-nav a.cta-button {
        font-size: 1rem;
        padding: 10px 15px;
    }
    
    .contact-nav ul {
        justify-content: center;
    }
    
    .site-name,
    .contact-header .site-name {
        font-size: 2.5rem;
    }

    .name-stefan,
    .contact-header .name-stefan,
    .name-mucileanu,
    .contact-header .name-mucileanu {
        text-transform: none;
        color: #000000;
    }
    
    .footer-name-new {
        font-size: 2.5rem;
    }

    .main-content-area {
        padding: 60px 20px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .column-title {
        font-size: 1.6rem;
    }
    .comparison-column li {
        font-size: 1rem;
    }

    .services-section {
        padding: 80px 20px;
    }
    
    .grow-title {
        font-size: 3.5rem;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 40px;
    }
    
    .service-card {
        padding: 30px;
    }
    
    .service-title {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }

    .faq-section {
        padding: 80px 20px;
    }
    
    .faq-main-title {
        font-size: 2.8rem;
    }
    
    .faq-container {
        max-width: 100%;
        padding: 20px;
    }
    
    .faq-question {
        font-size: 1.2rem;
        padding: 20px;
    }
    
    .faq-answer {
        font-size: 1rem;
        padding: 0 20px 20px 20px;
    }

    .cta-container {
        padding: 40px 20px;
    }
    .cta-title {
        font-size: 2.2rem;
    }

    .legal-content-container {
        padding: 20px;
    }
    .legal-content-container h1 {
        font-size: 2.5rem;
    }
    .legal-content-container h2 {
        font-size: 1.8rem;
    }
    .legal-content-container p, .legal-content-container li {
        font-size: 1rem;
    }

    .form-container {
        padding: 20px;
    }
    .form-title {
        font-size: 2rem;
    }

    .site-footer {
        padding: 40px 20px;
    }
    
    .footer-top-new {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .footer-branding-new {
        text-align: center;
    }
    
    .footer-socials-new {
        justify-content: center;
    }

    .social-button-new {
        width: 45px;
        height: 45px;
    }
    .social-button-new svg {
        width: 24px;
        height: 24px;
    }
    
    .footer-bottom-new {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    .footer-legal-links-new {
        flex-direction: column;
        gap: 5px;
    }
    .legal-separator {
        display: none;
    }
}

/* --- FIX NEWSLETTER (Stil Casetă Albă) --- */

/* Fundalul general al secțiunii */
.newsletter-final-fix {
    background-color: #F6F4F0; /* Crem */
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

/* Cutia Albă (Cardul) */
.newsletter-box {
    background-color: #ffffff;
    width: 100%;
    max-width: 700px; /* Cât de lată să fie cutia */
    padding: 50px 40px;
    border-radius: 15px;
    border: 1px solid #e0e0e0; /* Contur fin */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08); /* Umbră fină */
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Titlul */
.newsletter-title-fix {
    font-size: 2.5rem;
    font-weight: 900;
    color: #000;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Descrierea */
.newsletter-desc-fix {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Formularul */
.newsletter-form-fix {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px; /* Formularul să nu fie prea lat */
    margin: 0 auto; /* Centrare formular */
}

/* Inputurile (Câmpurile de text) */
.input-group-fix {
    text-align: left;
}

.input-group-fix label {
    display: block;
    font-size: 0.9rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #000;
    text-transform: uppercase;
}

.input-group-fix input {
    width: 100%;
    padding: 15px;
    background-color: #f9f9f9;
    border: 2px solid #000; /* Chenar negru gros */
    border-radius: 8px;
    font-size: 1rem;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.input-group-fix input:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.1);
}

/* Butonul */
.btn-submit-fix {
    background-color: #000;
    color: #fff;
    padding: 18px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.2s;
    margin-top: 10px;
    width: 100%;
}

.btn-submit-fix:hover {
    background-color: #333;
    transform: translateY(-2px);
}

/* --- Adaptare pentru telefon --- */
@media (max-width: 600px) {
    .newsletter-box {
        padding: 30px 20px;
    }
    .newsletter-title-fix {
        font-size: 1.8rem;
    }
}
/* --- FLASH CARDS SECTION (BLOG) --- */

.flash-cards-section {
    padding: 80px 20px;
    width: 100%;
    box-sizing: border-box;
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

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

/* --- TOATĂ ZONA DE TITLU CENTRATĂ --- */
.blog-header-minimal {
    text-align: center; /* Asta centrează tot ce e înăuntru */
    width: 100%;
    margin-bottom: 50px; /* Spațiu până la carduri */
}

/* Titlul Code/Terminal */
.code-title {
    font-family: 'Courier New', Courier, monospace;
    font-size: 3rem;
    font-weight: 900;
    color: #000;
    margin: 0 auto 15px auto; /* Margini automate stânga/dreapta */
    text-transform: uppercase;
    text-align: center; /* Asigurare dublă */
    display: block;
}

.code-subtitle {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    color: #555;
    text-align: center; /* Asigurare dublă */
    margin: 0 auto;
    display: block;
    max-width: 600px; /* Să nu fie prea lat textul */
}

/* --- THE GRID (GRILA DE CARDURI) --- */
.flash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Se aranjează automat */
    gap: 30px; /* Spațiu între carduri */
    margin-top: 50px;
}

/* --- FLASH CARD STYLE --- */
.flash-card {
    background-color: #ffffff;
    border: 3px solid #000000; /* Chenar gros */
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 5px 5px 0px rgba(0,0,0,1); /* Umbră solidă "Hard" */
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flash-card:hover {
    transform: translate(-3px, -3px); /* Se ridică la hover */
    box-shadow: 8px 8px 0px rgba(0,0,0,1);
}

/* Numărul cardului (#01, #02...) */
.card-number {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 15px;
    display: block;
}

/* Titlul Cardului */
.flash-title {
    font-family: Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Textul Cardului */
.flash-text {
    font-family: Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    margin: 0;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .code-title {
        font-size: 2rem;
    }
    .flash-grid {
        grid-template-columns: 1fr; /* O coloană pe mobil */
    }
}
