/* style.css - CSS Extras din index.html */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --primary: #1e1e2d;
    --primary-light: #2d2d44;
    --accent: #ef4444;
    --accent-hover: #dc2626;
    --accent-light: #fef2f2;
    --blue: #3b82f6;
    --blue-light: #eff6ff;
    --green: #10b981;
    --green-light: #ecfdf5;
    --orange: #f59e0b;
    --orange-light: #fffbeb;
    --purple: #8b5cf6;
    --purple-light: #f5f3ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

html { scroll-behavior: smooth; }

body {
    /* Setăm fonturile implicit de sistem pentru viteză & confidențialitate (GDPR) */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(30, 30, 45, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.nav-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 2rem; height: 72px;
}
.nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none; color: #fff;
}
.nav-logo-icon {
    width: 40px; height: 40px; border-radius: 10px;
    background: linear-gradient(135deg, var(--accent), #f97316);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: #fff;
}
.nav-logo-text { font-size: 22px; font-weight: 800; letter-spacing: -0.5px; }
.nav-logo-text span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
    color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
    font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
    background: var(--accent); color: #fff !important; padding: 10px 24px;
    border-radius: 8px; font-weight: 600 !important; transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; }

/* ─── HERO ─── */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d50 50%, #1a1a3e 100%);
    position: relative; overflow: hidden; padding-top: 72px;
}
.hero::before {
    content: ''; position: absolute; top: -50%; right: -30%;
    width: 900px; height: 900px; border-radius: 50%;
    background: radial-gradient(circle, rgba(239,68,68,0.08) 0%, transparent 70%);
}
.hero::after {
    content: ''; position: absolute; bottom: -30%; left: -20%;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.06) 0%, transparent 70%);
}
.hero-inner {
    max-width: 1280px; margin: 0 auto; padding: 4rem 2rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
    position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(239,68,68,0.12); border: 1px solid rgba(239,68,68,0.2);
    border-radius: 50px; padding: 6px 16px; font-size: 13px;
    color: #fca5a5; font-weight: 600; margin-bottom: 24px;
}
.hero-badge i { font-size: 10px; }
.hero h1 {
    font-size: 52px; font-weight: 900; color: #fff;
    line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 20px;
}
.hero h1 span {
    background: linear-gradient(135deg, var(--accent), #f97316);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-desc {
    font-size: 18px; color: rgba(255,255,255,0.6); line-height: 1.7;
    margin-bottom: 36px; max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: linear-gradient(135deg, var(--accent), #dc2626);
    color: #fff; padding: 14px 32px; border-radius: 10px; border: none;
    font-size: 16px; font-weight: 700; cursor: pointer;
    text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
    transition: all 0.3s; box-shadow: 0 4px 20px rgba(239,68,68,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(239,68,68,0.4); }
.btn-secondary {
    background: rgba(255,255,255,0.08); color: #fff; padding: 14px 32px;
    border-radius: 10px; border: 1px solid rgba(255,255,255,0.15);
    font-size: 16px; font-weight: 600; cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px; transition: all 0.3s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); }
.hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-mockup {
    width: 100%; max-width: 560px; border-radius: 16px;
    background: var(--primary-light); border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 25px 80px rgba(0,0,0,0.5); overflow: hidden;
}
.mockup-bar {
    background: rgba(0,0,0,0.3); padding: 12px 16px;
    display: flex; align-items: center; gap: 8px;
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ef4444; }
.mockup-dot.y { background: #f59e0b; }
.mockup-dot.g { background: #10b981; }
.mockup-url {
    flex: 1; background: rgba(255,255,255,0.06); border-radius: 6px;
    padding: 4px 12px; font-size: 11px; color: rgba(255,255,255,0.4); margin-left: 8px;
}
.mockup-body { padding: 20px; }
.mockup-sidebar {
    display: grid; grid-template-columns: 50px 1fr; gap: 0;
}
.mockup-nav {
    background: rgba(0,0,0,0.2); padding: 12px 8px;
    display: flex; flex-direction: column; gap: 12px; align-items: center; border-radius: 8px 0 0 8px;
}
.mockup-nav-item {
    width: 32px; height: 32px; border-radius: 6px;
    background: rgba(255,255,255,0.05); display: flex; align-items: center;
    justify-content: center; font-size: 12px; color: rgba(255,255,255,0.3);
}
.mockup-nav-item.active { background: rgba(239,68,68,0.2); color: var(--accent); }
.mockup-content { padding: 12px; }
.mockup-card {
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px; padding: 12px; margin-bottom: 8px;
}
.mockup-card-title { font-size: 10px; color: rgba(255,255,255,0.3); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 1px; }
.mockup-card-value { font-size: 22px; font-weight: 800; color: #fff; }
.mockup-card-value.green { color: var(--green); }
.mockup-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hero-stats {
    display: flex; gap: 40px; margin-top: 48px;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-value { font-size: 28px; font-weight: 800; color: #fff; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* ─── SECTIONS ─── */
.section { padding: 100px 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-label {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 2px; margin-bottom: 16px;
}
.section-label.red { color: var(--accent); }
.section-label.blue { color: var(--blue); }
.section-label.green { color: var(--green); }
.section-title {
    font-size: 40px; font-weight: 800; color: var(--gray-900);
    line-height: 1.15; letter-spacing: -1px; margin-bottom: 16px;
}
.section-desc { font-size: 17px; color: var(--gray-500); line-height: 1.7; }

/* ─── FEATURES GRID ─── */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.feature-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 16px; padding: 32px; transition: all 0.3s;
    position: relative; overflow: hidden;
}
.feature-card:hover {
    border-color: transparent; transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.feature-icon {
    width: 52px; height: 52px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 20px;
}
.feature-icon.red { background: var(--accent-light); color: var(--accent); }
.feature-icon.blue { background: var(--blue-light); color: var(--blue); }
.feature-icon.green { background: var(--green-light); color: var(--green); }
.feature-icon.orange { background: var(--orange-light); color: var(--orange); }
.feature-icon.purple { background: var(--purple-light); color: var(--purple); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--gray-900); }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }
.feature-card .feature-list { list-style: none; margin-top: 14px; }
.feature-card .feature-list li {
    font-size: 13px; color: var(--gray-600); padding: 4px 0;
    display: flex; align-items: center; gap: 8px;
}
.feature-card .feature-list li i { color: var(--green); font-size: 11px; }

/* ─── HOW IT WORKS ─── */
.bg-gray { background: var(--gray-50); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.steps::before {
    content: ''; position: absolute; top: 40px; left: 60px; right: 60px;
    height: 2px; background: linear-gradient(90deg, var(--accent), var(--blue), var(--green), var(--purple));
    border-radius: 2px;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-num {
    width: 80px; height: 80px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; margin: 0 auto 20px;
    background: #fff; border: 3px solid var(--gray-200);
    color: var(--gray-700); transition: all 0.3s;
}
.step:hover .step-num { border-color: var(--accent); color: var(--accent); transform: scale(1.1); }
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--gray-900); }
.step p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 16px; padding: 36px; text-align: center; transition: all 0.3s;
}
.pricing-card.popular {
    border-color: var(--accent); position: relative;
    box-shadow: 0 20px 60px rgba(239,68,68,0.12);
    transform: scale(1.05);
}
.pricing-card.popular::before {
    content: 'Cel mai popular'; position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; padding: 4px 20px; border-radius: 50px;
    font-size: 12px; font-weight: 700;
}
.pricing-name { font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.pricing-desc { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; }
.pricing-value { font-size: 48px; font-weight: 900; color: var(--gray-900); line-height: 1; }
.pricing-value span { font-size: 16px; font-weight: 500; color: var(--gray-400); }
.pricing-period { font-size: 13px; color: var(--gray-400); margin-bottom: 28px; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 32px; }
.pricing-features li {
    padding: 8px 0; font-size: 14px; color: var(--gray-600);
    display: flex; align-items: center; gap: 10px;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-features li i.check { color: var(--green); }
.pricing-features li i.x { color: var(--gray-300); }
.pricing-btn {
    width: 100%; padding: 14px; border-radius: 10px; font-size: 15px;
    font-weight: 700; cursor: pointer; border: none; transition: all 0.3s;
    text-decoration: none; display: block; text-align: center;
}
.pricing-btn.primary { background: var(--accent); color: #fff; }
.pricing-btn.primary:hover { background: var(--accent-hover); }
.pricing-btn.outline { background: #fff; color: var(--gray-700); border: 2px solid var(--gray-200); }
.pricing-btn.outline:hover { border-color: var(--accent); color: var(--accent); }

/* ─── TESTIMONIALS ─── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 16px; padding: 28px;
}
.testimonial-stars { color: var(--orange); font-size: 14px; margin-bottom: 14px; }
.testimonial-text { font-size: 14px; color: var(--gray-600); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--blue));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-weight: 700; font-size: 16px;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.testimonial-role { font-size: 12px; color: var(--gray-400); }

/* ─── CTA ─── */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #2d2d50 100%);
    padding: 80px 2rem; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; top: -50%; right: -20%;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(239,68,68,0.1) 0%, transparent 70%);
}
.cta-section h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 17px; color: rgba(255,255,255,0.6); margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }

/* ─── FOOTER ─── */
.footer {
    background: var(--primary); color: rgba(255,255,255,0.5);
    padding: 60px 2rem 30px; border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer ul a:hover { color: #fff; }
.footer-bottom {
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.06);
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-bottom-links a:hover { color: #fff; }

/* ─── COOKIE BANNER ─── */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--primary); border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 2rem; display: none;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}
.cookie-banner.show { display: block; }
.cookie-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    flex-wrap: wrap;
}
.cookie-text { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.5; flex: 1; min-width: 300px; }
.cookie-text a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
    padding: 10px 24px; border-radius: 8px; font-size: 14px;
    font-weight: 600; cursor: pointer; border: none; transition: all 0.2s;
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-hover); }
.cookie-decline { background: rgba(255,255,255,0.1); color: #fff; }
.cookie-decline:hover { background: rgba(255,255,255,0.2); }

/* ─── GDPR MODAL ─── */
.modal-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
    display: none; justify-content: center; align-items: center; padding: 2rem;
}
.modal-overlay.show { display: flex; }
.modal {
    background: #fff; border-radius: 16px; max-width: 700px; width: 100%;
    max-height: 85vh; overflow-y: auto; padding: 36px;
}
.modal h2 { font-size: 24px; font-weight: 800; margin-bottom: 16px; color: var(--gray-900); }
.modal h3 { font-size: 18px; font-weight: 700; margin: 24px 0 12px; color: var(--gray-800); }
.modal p, .modal li { font-size: 14px; color: var(--gray-600); line-height: 1.7; }
.modal ul { margin: 8px 0 8px 20px; }
.modal-close {
    float: right; background: none; border: none; font-size: 24px;
    color: var(--gray-400); cursor: pointer;
}
.modal-close:hover { color: var(--gray-800); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .hero-stats { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); }
    .steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing-card.popular { transform: none; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: block; }
    .nav-links.open {
        display: flex; flex-direction: column; position: absolute;
        top: 72px; left: 0; right: 0; background: var(--primary);
        padding: 24px; gap: 16px; border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .hero h1 { font-size: 36px; }
    .section-title { font-size: 30px; }
    .features-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }