/* === VARIABILE CSS === */
:root {
    --primary: #004c99;
    --secondary: #ff6600;
    --accent: #dc2626;
    --accent-hover: #b91c1c;
    --dark: #121212;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #f5f5f5;
    --glass: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --white: #ffffff;
    --off-white: #fef2f2;
    --bg-color: #ffffff;
    --card-bg: rgba(255, 255, 255, 0.95);
    --header-bg: rgba(255, 255, 255, 0.98);
    --nav-border: #e0e0e0;
    --footer-bg: #121212;
    --section-spacing: 80px;
}

[data-theme="dark"] {
    --primary: #4dabf7;
    --secondary: #ff922b;
    --accent: #f56565;
    --accent-hover: #e53e3e;
    --dark: #1a1a1a;
    --light: #2d3748;
    --text: #e2e8f0;
    --text-light: #f7fafc;
    --glass: rgba(0, 0, 0, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --white: #1a202c;
    --off-white: #2d3748;
    --bg-color: #1a202c;
    --card-bg: rgba(45, 55, 72, 0.95);
    --header-bg: rgba(26, 32, 44, 0.98);
    --nav-border: #4a5568;
    --footer-bg: #0f1419;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg-color);
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

ul, ol {
    list-style-position: inside;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === FUNDAL DINAMIC (ELEMENTE DIN VERSIUNEA VECHE) === */
.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(220, 38, 38, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(0, 76, 153, 0.05) 0%, transparent 40%);
    z-index: -3;
}

[data-theme="dark"] .background-overlay {
    background: 
        radial-gradient(circle at 20% 30%, rgba(245, 101, 101, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(77, 171, 247, 0.05) 0%, transparent 40%);
}

/* Particule animate (din versiunea veche) */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: var(--accent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0;
    filter: blur(2px);
    animation: particleFloat 15s linear infinite;
}

.particle:nth-child(1) {
    width: 8px;
    height: 9px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    opacity: 0.4;
}

.particle:nth-child(2) {
    width: 6px;
    height: 7px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    opacity: 0.3;
}

.particle:nth-child(3) {
    width: 10px;
    height: 11px;
    top: 40%;
    left: 30%;
    animation-delay: 4s;
    opacity: 0.35;
}

.particle:nth-child(4) {
    width: 7px;
    height: 8px;
    top: 70%;
    left: 60%;
    animation-delay: 6s;
    opacity: 0.25;
}

.particle:nth-child(5) {
    width: 9px;
    height: 10px;
    top: 30%;
    left: 85%;
    animation-delay: 8s;
    opacity: 0.3;
}

/* Linii dinamice (din versiunea veche) */
.dynamic-lines {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.15), transparent);
    height: 1px;
    animation: lineSweep 20s linear infinite;
}

[data-theme="dark"] .line {
    background: linear-gradient(90deg, transparent, rgba(245, 101, 101, 0.15), transparent);
}

.line:nth-child(1) {
    top: 25%;
    width: 100%;
    animation-delay: 0s;
}

.line:nth-child(2) {
    top: 50%;
    width: 100%;
    animation-delay: 5s;
}

.line:nth-child(3) {
    top: 75%;
    width: 100%;
    animation-delay: 10s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.1;
    }
    100% {
        transform: translateY(100vh) translateX(50px);
        opacity: 0;
    }
}

@keyframes lineSweep {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* === HEADER === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

[data-theme="dark"] .header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 10px 5%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* LOGO VIZIBIL PE TOATE DISPOZITIVELE */
.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-mask {
    width: auto;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: var(--transition);
}

[data-theme="dark"] .logo-mask {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-mask:hover {
    transform: rotate(360deg);
}

.logo-image {
    height: 150px;
    width: auto;
    max-width: 80px;
    object-fit: contain;
}

/* CONTROALE HEADER */
.controls-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.theme-toggle-simple {
    background: transparent;
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
}

.theme-toggle-simple:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

[data-theme="dark"] .theme-toggle-simple:hover {
    background: rgba(255, 255, 255, 0.1);
}

.theme-icon-simple {
    font-size: 16px;
    transition: var(--transition);
}

/* MENIU MOBIL MODERN (BUTON ROTUND) */
.nav-mobile {
    display: none;
    position: relative;
}

.mobile-menu-btn {
    background: var(--accent);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 18px;
}

.mobile-menu-btn:hover {
    background: var(--accent-hover);
    transform: scale(1.05);
}

.mobile-menu {
    position: fixed;
    top: 85px;
    right: 5%;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--nav-border);
    display: none;
    flex-direction: column;
    gap: 10px;
    min-width: 220px;
    z-index: 999;
    animation: slideDown 0.3s ease forwards;
}

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

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    padding: 12px 16px;
    color: var(--text);
    border-radius: 12px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.mobile-menu a:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent);
    transform: translateX(5px);
}

.mobile-menu .cta-nav {
    background: var(--accent);
    color: white !important;
    margin-top: 10px;
    justify-content: center;
}

.mobile-menu .cta-nav:hover {
    background: var(--accent-hover);
    color: white !important;
    transform: translateX(0) scale(1.02);
}

/* NAV DESKTOP */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
}

.nav-desktop a {
    color: var(--text);
    padding: 8px 16px;
    border-radius: 20px;
    transition: var(--transition);
    font-size: 14px;
    font-weight: 500;
}

.nav-desktop a:hover {
    background: rgba(220, 38, 38, 0.1);
    color: var(--accent);
}

.nav-desktop .cta-nav {
    background: var(--accent);
    color: white !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.nav-desktop .cta-nav:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.4);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 5% 60px;
    position: relative;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    max-width: 900px;
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.3rem);
    max-width: 800px;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA MINIMALIST */
.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    margin-top: 10px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent);
    transition: var(--transition);
    z-index: -1;
}

.cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}

.cta-button:hover:before {
    left: 0;
}

/* === CONTAINER === */
.container {
    width: 95%;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--section-spacing) 0;
}

/* === SECȚIUNI === */
.content-section {
    margin-bottom: var(--section-spacing);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.content-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 15px;
    color: var(--text);
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.8;
    max-width: 600px;
    margin: 20px auto 0;
    line-height: 1.6;
}

/* === CARDURI === */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--nav-border);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.card h3 {
    font-size: 1.4rem;
    margin: 15px 0 10px;
    color: var(--primary);
    line-height: 1.3;
}

.card p {
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.9;
    flex-grow: 1;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px;
}

.card-features li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding-left: 22px;
    color: var(--text);
    opacity: 0.9;
    font-size: 0.9rem;
}

[data-theme="dark"] .card-features li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.card-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.card-cta {
    display: inline-block;
    margin-top: auto;
    padding: 12px 24px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: var(--transition);
    text-align: center;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.card-cta:hover {
    background: #e55c00;
    transform: translateY(-2px);
}

/* === LISTĂ MODERNĂ === */
.modern-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.modern-list li {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
}

.modern-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.modern-list li strong {
    color: var(--primary);
    margin-right: 8px;
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

/* === CITAT === */
.quote {
    text-align: center;
    font-style: italic;
    margin: 50px auto;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    padding: 30px;
    border-radius: 16px;
    background: rgba(220, 38, 38, 0.05);
    max-width: 800px;
    position: relative;
    line-height: 1.6;
}

[data-theme="dark"] .quote {
    background: rgba(245, 101, 101, 0.1);
}

.quote:before, .quote:after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary);
    position: absolute;
    opacity: 0.3;
}

.quote:before {
    top: 5px;
    left: 15px;
}

.quote:after {
    bottom: 5px;
    right: 15px;
}

/* === SECȚIUNEA CONTACT MINIMALISTĂ === */
.contact-section {
    text-align: center;
    padding: 60px 5%;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 20px;
    margin: 60px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .contact-section {
    background: rgba(245, 101, 101, 0.1);
}

.contact-section h2 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    margin-bottom: 15px;
    color: var(--text);
}

.contact-section p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 12px 24px;
    font-size: 15px;
    min-width: 160px;
}

/* === TEXT CONTENT === */
.content-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text);
    text-align: justify;
}

.content-subtitle {
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--text);
}

/* === FOOTER MODIFICAT (TOATĂ INFORMAȚIA ÎNTR-UN SINGUR CONTAINER) === */
.footer-main {
    background: var(--footer-bg);
    color: #ccc;
    padding: 60px 5% 40px;
    margin-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: left;
}

.footer-column h4 {
    color: white;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #444;
    position: relative;
    font-size: 1.1rem;
}

.footer-column h4:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item strong {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.contact-item a, .contact-item span {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-item a:hover {
    color: var(--secondary);
}

.program {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li {
    margin-bottom: 0;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    padding: 2px 0;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition);
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.social-icons a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* FOOTER BOTTOM - INTEGRAT ÎN FOOTER-MAIN */
.footer-bottom {
    background: #111;
    color: #fff;
    padding: 25px 5%;
    text-align: center;
    font-size: 0.85rem;
    border-top: 1px solid #333;
    line-height: 1.6;
    max-width: 1200px;
    margin: 40px auto 0;
    border-radius: 8px;
}

.footer-bottom .container {
    padding: 0;
    max-width: 100%;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .modern-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .hero h1 {
        font-size: clamp(1.8rem, 4vw, 3rem);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 12px 4%;
    }
    
    .header.scrolled {
        padding: 8px 4%;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile {
        display: block;
    }
    
    .hero {
        padding: 100px 4% 50px;
        min-height: 90vh;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .container {
        padding: 60px 0;
        width: 98%;
    }
    
    .content-section {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 25px;
    }
    
    .modern-list {
        grid-template-columns: 1fr;
    }
    
    .modern-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .modern-list li strong {
        min-width: auto;
        margin-right: 0;
    }
    
    .quote {
        margin: 40px 0;
        padding: 25px;
    }
    
    .contact-section {
        margin: 50px auto;
        padding: 40px 4%;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 280px;
    }
    
    .footer-main {
        padding: 40px 4% 30px;
        margin-top: 40px;
    }
    
    .footer-grid {
        gap: 30px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-column h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom {
        padding: 20px 4%;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 10px 3%;
    }
    
    .logo-mask {
        width: auto;
        height: 60px;
    }
    
    .logo-image {
        height: 50px;
        max-width: 60px;
    }
    
    .theme-toggle-simple {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .theme-icon-simple {
        font-size: 14px;
    }
    
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero {
        padding: 90px 3% 40px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 15px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .quote {
        padding: 20px;
        font-size: 1rem;
    }
    
    .quote:before, .quote:after {
        font-size: 2.5rem;
    }
    
    .contact-section h2 {
        font-size: 1.4rem;
    }
    
    .footer-main {
        padding: 30px 3% 20px;
    }
    
    .footer-grid {
        gap: 25px;
    }
    
    .footer-bottom {
        padding: 15px 3%;
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .logo-mask {
        height: 50px;
    }
    
    .logo-image {
        height: 40px;
        max-width: 50px;
    }
    
    .theme-toggle-simple span {
        display: none;
    }
    
    .theme-toggle-simple {
        padding: 8px;
        width: 40px;
        height: 40px;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .cta-button {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .card {
        padding: 18px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === ANIMAȚII === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particle, .line {
        display: none;
    }
}

/* === TOUCH OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    .card:hover {
        transform: none;
    }
    
    .modern-list li:hover {
        transform: none;
    }
    
    .nav-desktop a:hover {
        background: transparent;
    }
    
    .cta-button:hover {
        transform: none;
    }
    
    .card-cta:hover {
        transform: none;
    }
    
    /* Mărește zonele de atingere pentru touch */
    .nav-desktop a,
    .cta-button,
    .card-cta,
    .theme-toggle-simple,
    .mobile-menu-btn {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}