/* ═══════════════════════════════════════════════════════════
   ÎMBUNĂTĂȚIRI V3 - Cookie Banner, Link Preview, Clean CSS
   ═══════════════════════════════════════════════════════════ */

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-banner-inner p {
  font-size: 0.85rem;
  color: var(--text-sub);
  margin: 0;
}

@media (max-width: 600px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .cookie-banner-inner p {
    font-size: 0.8rem;
  }
}

/* ── LINK PREVIEW ────────────────────────────────────────── */
.link-preview {
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius-sm);
  animation: fadeUp 0.3s ease;
}

.link-preview-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.link-preview-platform {
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.7rem;
}

.link-preview-username {
  color: var(--text);
  font-weight: 500;
}

/* ── CLEANUP: Eliminare CSS nefolosit ────────────────────── */
/* .modal-overlay, .modal, .modal-icon-wrap, .modal-title, 
   .modal-msg, .modal-order - eliminate dacă nu sunt folosite */

/* ── PRECONNECT HINTS (adăugate în HTML) ────────────────── */
/* Nu necesită CSS */

/* ── TESTIMONIAL DATE ─────────────────────────────────────── */
.testimonial-date {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  opacity: 0.75;
}

/* ── STICKY PLATFORM TABS (MOBILE) ───────────────────────── */
@media (max-width: 700px) {
  .platform-tabs {
    position: sticky;
    top: 58px;
    z-index: 90;
    background: var(--bg);
    padding: 0.6rem 0;
    margin-left: -1rem;
    margin-right: -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  }
}
/* ── SEO CONTENT SECTION ──────────────────────────────────── */
.seo-content-section {
  padding: 3rem 0;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.seo-content-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.seo-content-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.seo-content-block p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-sub);
}

@media (max-width: 900px) {
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
}
/* ═══════════════════════════════════════════════════════════
   SERVICE PAGES - Extensii CSS
   Adaugă aceste reguli în style-additions.css
═══════════════════════════════════════════════════════════ */

/* ── Pachete grid - asigură vizibilitate ───────────────── */
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.pkg-grid.active {
    display: grid !important;
}

/* ── Pachet card - îmbunătățiri ────────────────────────── */
.pkg-card {
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.pkg-card .btn-select {
    cursor: pointer;
    transition: all 0.2s ease;
}

.pkg-card.selected .btn-select {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

/* ── FAQ Accordion ───────────────────────────────────────── */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface);
    font-size: 1rem;
    font-weight: 400;
    color: var(--accent);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-answer-inner {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.7;
}

/* ── Responsive pentru pachete ──────────────────────────── */
@media (max-width: 768px) {
    .pkg-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .pkg-card {
        padding: 0.85rem;
    }
    
    .pkg-qty {
        font-size: 1.3rem;
    }
    
    .pkg-price-main {
        font-size: 1rem;
    }
    
    .pkg-features .feat {
        font-size: 0.65rem;
    }
    
    .pkg-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.5rem;
    }
    
    .pkg-discount-badge {
        font-size: 0.55rem;
        padding: 0.15rem 0.4rem;
    }
}

@media (max-width: 480px) {
    .pkg-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .pkg-card {
        padding: 0.7rem;
    }
    
    .pkg-qty {
        font-size: 1.1rem;
    }
    
    .pkg-type {
        font-size: 0.7rem;
    }
    
    .pkg-price-main {
        font-size: 0.9rem;
    }
    
    .pkg-price-per {
        font-size: 0.6rem;
    }
    
    .btn-select {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
    
    .faq-question {
        font-size: 0.85rem;
        padding: 0.85rem 1rem;
    }
    
    .faq-answer-inner {
        font-size: 0.8rem;
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 380px) {
    .pkg-grid {
        gap: 0.5rem;
    }
    
    .pkg-card {
        padding: 0.6rem;
    }
    
    .pkg-qty {
        font-size: 1rem;
    }
    
    .pkg-price-main {
        font-size: 0.85rem;
    }
}

/* ── Service badge variante ────────────────────────────── */
.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 600;
    width: fit-content;
}

/* ── Breadcrumbs ─────────────────────────────────────────── */
.breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--text-sub);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs [aria-current="page"] {
    color: var(--text);
    font-weight: 500;
}

/* ── Requirements grid ───────────────────────────────────── */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.requirement-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.2s ease;
}

.requirement-card:hover {
    border-color: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

.req-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.requirement-card p {
    font-size: 0.85rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.requirement-card code {
    background: var(--surface);
    padding: 0.1rem 0.4rem;
    border-radius: 3px;
    font-size: 0.8rem;
    color: var(--accent-2);
    word-break: break-all;
}

/* ── Requirements note ──────────────────────────────────── */
.requirements-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.15);
    border-radius: var(--radius-sm);
    max-width: 700px;
    margin: 0 auto;
}

.requirements-note p {
    font-size: 0.9rem;
    color: var(--text-sub);
    line-height: 1.6;
}

.requirements-note p strong {
    color: var(--text);
}

/* ── Benefits grid ──────────────────────────────────────── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease;
}

.benefit-card:hover {
    border-color: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    background: rgba(108, 99, 255, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.benefit-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.benefit-card p {
    font-size: 0.8rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* ── Pricing note ───────────────────────────────────────── */
.pricing-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(108, 99, 255, 0.04);
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: var(--radius-sm);
}

.pricing-note p {
    font-size: 0.95rem;
    color: var(--text-sub);
}

.pricing-note p strong {
    color: var(--text);
}

/* ── Responsive requirements & benefits ────────────────── */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .requirements-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .requirement-card {
        padding: 1.25rem;
    }
    
    .req-icon {
        width: 48px;
        height: 48px;
    }
    
    .req-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .breadcrumbs {
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .requirements-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .requirement-card {
        padding: 1rem;
    }
    
    .requirement-card h3 {
        font-size: 0.9rem;
    }
    
    .requirement-card p {
        font-size: 0.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }
    
    .benefit-card {
        padding: 0.85rem;
    }
    
    .benefit-card h3 {
        font-size: 0.85rem;
    }
    
    .benefit-card p {
        font-size: 0.75rem;
    }
    
    .requirements-note {
        padding: 0.75rem 1rem;
    }
    
    .requirements-note p {
        font-size: 0.8rem;
    }
    
    .pricing-note p {
        font-size: 0.85rem;
    }
}

/* ── Service hero - responsive ──────────────────────────── */
.service-hero {
    padding: 2rem 0 4rem;
    position: relative;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.service-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-hero-text h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.service-hero-desc {
    font-size: 1.05rem;
    color: var(--text-sub);
    line-height: 1.7;
    max-width: 580px;
}

.service-hero-desc strong {
    color: var(--text);
}

.service-key-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
}

.key-point {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-sub);
}

.key-point svg {
    flex-shrink: 0;
}

.service-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.service-cta-row .btn {
    padding: 0.75rem 1.75rem;
}

.service-hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ── Service hero responsive ────────────────────────────── */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 1rem 0 2rem;
    }
    
    .service-key-points {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .service-hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .stat-card {
        padding: 0.75rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .service-hero-text h1 {
        font-size: 1.8rem;
    }
    
    .service-hero-desc {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-hero-stats {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.4rem;
    }
    
    .stat-card {
        padding: 0.6rem;
    }
    
    .stat-number {
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    .service-cta-row {
        flex-direction: column;
        width: 100%;
    }
    
    .service-cta-row .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Utility - visibil hidden ───────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── Smooth scroll behavior for sections ────────────────── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* ── Section spacing pentru paginile service ───────────── */
.service-requirements,
.service-packages,
.service-how,
.service-benefits,
.service-faq {
    padding: 4rem 0;
    border-top: 1px solid var(--border);
}

.service-packages {
    background: linear-gradient(180deg, transparent, rgba(108, 99, 255, 0.02), transparent);
}

@media (max-width: 768px) {
    .service-requirements,
    .service-packages,
    .service-how,
    .service-benefits,
    .service-faq {
        padding: 2.5rem 0;
    }
}

@media (max-width: 480px) {
    .service-requirements,
    .service-packages,
    .service-how,
    .service-benefits,
    .service-faq {
        padding: 2rem 0;
    }
}