/* ================================================
   WILGUARD - SERVICII SEO STYLES 2025
   Modern, Clean, Conversion-Optimized | WiLGUARD Brand Colors
   ================================================ */

/* ================================================
   ROOT VARIABLES - WILGUARD HOMEPAGE COLORS
   ================================================ */
:root {
    /* PRIMARY COLORS (din homepage) */
    --primary-blue: #667eea;
    --primary-purple: #764ba2;
    --warning-yellow: #FFC107;
    --success-green: #28a745;
    --danger-red: #dc3545;
    --info-cyan: #17a2b8;
    
    /* HERO GRADIENT (exact din homepage) */
    --hero-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    
    /* BACKGROUNDS */
    --bg-light: #f8f9fa;
    --bg-lighter: #f8fbff;
    --bg-gradient-light: linear-gradient(180deg, #f8fbff 0%, #f0f7ff 100%);
    --bg-dark: #343a40;
    
    /* TEXT */
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-white-50: rgba(255,255,255,0.5);
    
    /* ACCENTS */
    --highlight-seo: #ffc107;
    --threats-count: #ff6b35;
    
    /* CARDS & BORDERS */
    --card-border: #e9ecef;
    --card-shadow: rgba(0,0,0,0.08);
    --hover-shadow: rgba(102,126,234,0.15);
    
    /* SIZES & TRANSITIONS */
    --border-radius: 12px;
    --border-radius-lg: 24px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s ease;
    --shadow: 0 25px 50px rgba(0,0,0,0.1);
    --shadow-hover: 0 35px 70px rgba(0,0,0,0.15);
}

 

/* ================================================
   HERO SECTION (WILGUARD COLORS)
   ================================================ */
.servicii-hero {
    background: var(--hero-gradient);
    padding: 120px 0 100px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.servicii-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 0;
}

.servicii-hero .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.servicii-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.servicii-hero-title .highlight {
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.servicii-hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
    position: relative;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.9);
}


.hero-trust {
    font-size: 15px;
    opacity: 0.9;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-trust i {
    color: #ffc107;
    font-size: 16px;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
    max-width: 100%;
    height: auto;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}


.trust-grid{
  margin-top: 28px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
  max-width: 860px;
}

.trust-item{
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  padding: 18px 18px;

  display:flex;
  align-items:center;
  gap: 14px;

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display:flex;
  align-items:center;
  justify-content:center;

  background: rgba(255,193,7,0.16);
  border: 1px solid rgba(255,193,7,0.28);
  color: #ffc107;

  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

.trust-text{
  color: rgba(255,255,255,0.92);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
}

@media (max-width: 992px){
  .trust-grid{ grid-template-columns: 1fr; max-width: 560px; }
}

/* ================================================
   PENTRU CINE SECTION
   ================================================ */
.pentru-cine {
    padding: 100px 0;
    background: var(--bg-light);
}

.pentru-cine-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pentru-cine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--hero-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pentru-cine-card:hover::before {
    transform: scaleX(1);
}

.pentru-cine-card:hover {
    border-color: #667eea;
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.pentru-cine-card .card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 24px;
    background: var(--hero-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 20px 40px rgba(102,126,234,0.3);
    position: relative;
    z-index: 2;
}

.pentru-cine-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.pentru-cine-card p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* ================================================
   COMPARISON MODERN (înlocuiește table-ul vechi)
   ================================================ */
.comparison-section,
.comparison-modern {
    background: radial-gradient(circle at top, #eef4ff 0, #f8fbff 40%, #ffffff 100%);
    padding: 100px 0;
}

.comparison-grid {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15,23,42,0.12);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    align-items: stretch;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background: linear-gradient(135deg, #f9fafb, #eef2ff);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.comparison-col {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.comparison-col-feature {
    border-right: 1px solid #e5e7eb;
    font-weight: 600;
    color: #111827;
}

.comparison-col-wg {
    border-right: 1px solid #e5e7eb;
    justify-content: flex-start;
}

.comparison-col-others {
    justify-content: flex-start;
}

/* WiLGUARD column header */
.comparison-header .comparison-col-wg {
    color: #1d4ed8;
    font-weight: 800;
}

.comparison-header .comparison-col-wg i {
    color: #4f46e5;
}

/* Others header */
.comparison-header .comparison-col-others {
    color: #111827;
    font-weight: 700;
}

/* States */
.comparison-col-wg.positive {
    background: linear-gradient(90deg, rgba(34,197,94,0.06), transparent);
}

.comparison-col-others.negative {
    background: linear-gradient(90deg, rgba(248,113,113,0.08), transparent);
}

.comparison-col-others.warning {
    background: linear-gradient(90deg, rgba(250,204,21,0.08), transparent);
}

.comparison-col i {
    font-size: 1rem;
}

.comparison-col-wg.positive i {
    color: #16a34a;
}

.comparison-col-others.negative i {
    color: #dc2626;
}

.comparison-col-others.warning i {
    color: #d97706;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-grid {
        box-shadow: 0 12px 35px rgba(15,23,42,0.12);
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-col-feature,
    .comparison-col-wg,
    .comparison-col-others {
        border-right: none;
    }

    .comparison-col-feature {
        background: #f9fafb;
    }

    .comparison-col-wg,
    .comparison-col-others {
        padding-left: 32px;
    }
}

/* ===== TITLURI COMPARISON – trebuie să fie la final ===== */
.comparison-modern .section-title,
.comparison-section .section-title {
    font-size: clamp(2.2rem, 4vw, 2.7rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.comparison-modern .section-title::after,
.comparison-section .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #4f46e5, #6366f1);
}

/* Subtitlu important în comparație */
.comparison-modern .section-subtitle,
.comparison-section .section-subtitle {
    font-size: 1.15rem;
    font-weight: 700;
    max-width: 700px;
    margin: 8px auto 0;
    text-align: center;
    background: linear-gradient(135deg, #111827, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



/* ================================================
   SERVICII SEO 2025 - NEXT-GEN INTERACTIVE - service CARDS
   ================================================ */
.services-2025 {
    background: linear-gradient(135deg, #f8fbff 0%, #f0f7ff 50%, #e8f4fd 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.services-2025::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #667eea, #764ba2, transparent);
    animation: shimmer 4s infinite;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(102,126,234,0.3);
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 28px;
    position: relative;
}

.badge-glow {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 25px rgba(102,126,234,0.6);
    animation: pulse-glow 2s infinite;
}

.services-title {
    font-size: clamp(2.8rem, 7vw, 2.5rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.title-glow {
    color: #ff6b35;
    text-shadow: 0 0 30px rgba(255,107,53,0.4);
}

.services-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 500;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(25px);
    border-radius: 32px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.6s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #667eea, #764ba2, #ff6b35, #ffc107);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 60px 120px rgba(0,0,0,0.15);
    border-color: rgba(102,126,234,0.4);
    background: rgba(255,255,255,0.95);
}

.service-visual {
    position: relative;
    height: 100px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon {
    font-size: 56px;
    z-index: 2;
    position: relative;
    transition: all 0.4s ease;
}

.service-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(102,126,234,0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
    filter: drop-shadow(0 10px 25px rgba(102,126,234,0.4));
}

.service-stats{
  display:flex;
  align-items:flex-start;
  gap:12px;
  margin-bottom:20px;
}

.stat-primary{
  display:flex;
  flex-direction:column;
  gap:2px;

  font-weight:900;
  line-height:1.05;

  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* fiecare rând din badge */
.stat-primary .stat-line{
  display:block;
  font-size: 1.35rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* pe mobile: puțin mai mic */
@media (max-width: 768px){
  .stat-primary .stat-line{
    font-size: 1.15rem;
  }
}

.stat-secondary{
  text-transform:none;
  letter-spacing:0.2px;
  font-weight:700;
  opacity:0.85;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: #1a1a2e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 500;
}

.service-features {
    margin-bottom: 36px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.feature-item:hover {
    padding-left: 20px;
    background: rgba(102,126,234,0.05);
    border-radius: 16px;
    margin: 0 4px;
}

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 16px rgba(40,167,74,0.3);
}

.feature-check::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: 900;
}

/* CTA din carduri – aceeași logică precum ultimul buton (premium orange) */
.service-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:12px;

  padding:14px 22px;
  border-radius:18px;

  background:linear-gradient(135deg,#fbbf24 0%, #f59e0b 100%);
  color:#1f2937;

  font-weight:800;
  font-size:0.95rem;
  text-decoration:none;
  letter-spacing:0.3px;
  text-transform:none; /* <- arată mai premium decât ALL CAPS */

  box-shadow:
    0 12px 28px rgba(245,158,11,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}

/* shimmer discret */
.service-cta::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.45),transparent);
  transition:left 0.6s ease;
}

.service-cta:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 42px rgba(245,158,11,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
  color:#111827;
}

.service-cta:hover::before{
  left:120%;
}

.service-cta i{
  transition:transform 0.3s ease;
}

.service-cta:hover i{
  transform:translateX(3px);
}

.service-cta:focus{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(245,158,11,0.35),
    0 18px 42px rgba(245,158,11,0.45);
}
.service-card{
  display:flex;
  flex-direction:column;
}
.service-features{
  margin-bottom:24px; /* puțin mai strâns */
}
.service-cta{
  margin-top:auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 40px 28px;
    }
}

@media (max-width: 768px) {
    .services-2025 {
        padding: 80px 0;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 36px 24px;
    }
    
    .service-icon {
        font-size: 48px;
    }
    
    .stat-primary {
        font-size: 1.6rem;
    }
}


/* ================================================
   HERO 2025 - CONVERSION KING
   ================================================ */
.hero-compact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    padding: 30px 0 60px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
}

/* Badge Premium */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    color: white;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(20px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-badge i {
    color: #ffc107;
    font-size: 16px;
}

/* Title Power */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.0rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-main {
    display: block;
    color: white;
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #ffd54f, #ffb74d); /* MAI DESCHIS */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 0.65em; /* MAI MIC */
}

/* Subtitle Impact */
.hero-subtitle {
    font-size: clamp(1rem, 2.8vw, 1.2rem); /* MAI MIC */
    margin-bottom: 32px;
    opacity: 0.9; /* MAI DESCHIS (era 0.95) */
    line-height: 1.65;
    max-width: 580px;
    font-weight: 500;
}

/* Social Proof Mini */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
    padding: 16px 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffc107, #ff6b35);
    border: 3px solid white;
    margin-left: -12px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-left: -12px;
}

.proof-text {
    font-size: 14px;
    line-height: 1.4;
}

.proof-text strong {
    display: block;
    font-weight: 800;
    color: #ffc107;
}

/* Stats Compact */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 28px;
    background: rgba(0,0,0,0.15);
    border-radius: 20px;
    backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 900;
    color: #ffc107;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 12px rgba(255,193,7,0.4);
}

.stat-label {
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CTA Dual Power */
.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-cta .btn {
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

 .hero-cta .btn-primary{
  background:#ffc107;
  color:#212529;
  border:none;
  box-shadow:0 12px 30px rgba(255,193,7,0.4);
  flex:1;
}

.hero-cta .btn-primary:hover{
  background:#e0a800;
  transform:translateY(-3px);
  box-shadow:0 16px 40px rgba(255,193,7,0.5);
}

.hero-cta .btn-outline-light{
  background:rgba(255,255,255,0.10);
  color:#fff;
  border:2px solid rgba(255,255,255,0.45);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  flex:1;
}

.hero-cta .btn-outline-light:hover{
  background:rgba(255,255,255,0.18);
  border-color:#fff;
  transform:translateY(-3px);
}


/* Trust Signals */
.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-trust i {
    color: #ffc107;
    font-size: 16px;
}

/* ========== IMAGE DESKTOP (HIDDEN MOBILE) ========== */
.hero-image-container {
    position: relative;
    padding: 32px;
    background: rgba(0,0,0,0.15);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.25);
    animation: float 6s ease-in-out infinite;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

/* Wrapper pentru text + logo */
.hero-logo-wrapper {
    margin-top: 16px;
    text-align: center; /* ADĂUGAT */
}

/* Text "Agenția SEO" - PERFECT VIZIBIL */
.hero-logo-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.7rem); /* MAI MARE */
    font-weight: 900; /* BOLD */
    letter-spacing: 0.05em; /* SPAȚIAT */
    text-transform: uppercase;
    color: #f5f5f5; /* ALB CALD */
    margin-bottom: 12px;
    text-shadow: 
        0 2px 6px rgba(0,0,0,0.5),
        0 0 15px rgba(255,255,255,0.2); /* CONTRAST + GLOW */
    text-align: center;
}

/* Logo WILGUARD */
.hero-logo-text {
    display: block; /* ADĂUGAT pentru siguranță */
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffc107 0%, #ff8c42 50%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 12px rgba(255,193,7,0.6));
    animation: logoGlow 3s ease-in-out infinite;
    text-align: center;
}

/* ANIMAȚII - O SINGURĂ DATĂ! */
@keyframes logoGlow {
    0%, 100% { 
        filter: drop-shadow(0 4px 12px rgba(255,193,7,0.6));
        transform: translateY(0);
    }
    50% { 
        filter: drop-shadow(0 6px 20px rgba(255,193,7,0.9));
        transform: translateY(-3px);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ================================================
   RESPONSIVE - MOBILE PERFECT
   ================================================ */

/* TABLET */
@media (max-width: 991px) {
    .hero-compact {
        text-align: center;
        padding: 60px 0 40px;
    }
    
    .hero-badge {
        margin-bottom: 24px;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-proof {
        justify-content: center;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-trust {
        justify-content: center;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-compact {
        padding: 50px 0 40px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.15rem);
        margin-bottom: 28px;
    }
    
    .hero-proof {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 24px 20px;
    }
    
 
   
   /* HERO CTA – alignment fix */
.hero-cta{
  align-items:stretch;
  flex-wrap:wrap;
}

.hero-cta .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  line-height:1;
  min-height:56px;
  text-transform:none;   /* premium, fără caps lock */
}
    
    .hero-trust {
        gap: 16px;
        font-size: 13px;
        justify-content: center;
    }
}

/* EXTRA SMALL */
@media (max-width: 480px) {
    .hero-badge {
        font-size: 12px;
        padding: 10px 20px;
    }
    
    .avatar,
    .avatar-more {
        width: 36px;
        height: 36px;
    }
    
    .proof-text {
        font-size: 13px;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
}


/* ================================================
   SEO JOURNEY STEPPER – modern & interactiv
   ================================================ */
.seo-journey-stepper {
    background: linear-gradient(180deg, #eef2ff 0%, #ffffff 45%, #f9fafb 100%);
    padding: 80px 0;
}

/* Header */
.journey-stepper-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(79,70,229,0.08);
    color: #4f46e5;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.journey-stepper-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.journey-stepper-subtitle {
    max-width: 620px;
    margin: 0 auto;
    font-size: 0.98rem;
    color: #6b7280;
}

/* Stepper nav */
.journey-stepper-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 28px 0 26px;
    padding: 0 4px;
}

.step-dot {
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    z-index: 1;
}

.step-index {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 2px solid #d1d5db;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7280;
    transition: all 0.2s ease;
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    white-space: nowrap;
}

.step-dot.active .step-index {
    border-color: #4f46e5;
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(79,70,229,0.12);
}

.step-dot.active .step-label {
    color: #111827;
}

/* Progress line */
.stepper-progress {
    position: absolute;
    left: 8%;
    right: 8%;
    top: 16px;
    height: 3px;
    background: #e5e7eb;
    z-index: 0;
}

.stepper-progress-bar {
    height: 100%;
    width: 25%;
    max-width: 100%;
    background: linear-gradient(90deg, #4f46e5, #6366f1);
    border-radius: 999px;
    transition: width 0.3s ease;
}

/* Cards */
.journey-stepper-content {
    position: relative;
    min-height: 210px;
}

.step-card {
    display: none;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    padding: 18px 18px 14px;
    box-shadow: 0 16px 30px rgba(15,23,42,0.06);
    animation: fadeInStep 0.25s ease;
}

.step-card.active {
    display: block;
}

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

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.step-card-header h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
}

.step-card-header p {
    font-size: 0.88rem;
    color: #6b7280;
    margin: 0;
}

.step-card-time {
    font-size: 0.78rem;
    font-weight: 600;
    color: #4f46e5;
    background: rgba(79,70,229,0.06);
    padding: 4px 10px;
    border-radius: 999px;
}

/* List */
.step-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    color: #4b5563;
}

.step-card-list li {
    position: relative;
    padding: 3px 0 3px 14px;
}

.step-card-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 1rem;
    color: #4f46e5;
}



/* ================================================
   SEO JOURNEY – Footer panel (light, coerent)
   ================================================ */

.journey-footer-panel{
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15,23,42,0.06);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: center;
}

/* KPI cards */
.journey-footer-left{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.kpi-card{
  padding: 12px 12px;
  border-radius: 14px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.kpi-value{
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: #111827;
}

.kpi-label{
  margin-top: 6px;
  font-size: 13px;
  color: #374151;
}

.kpi-note{
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

/* CTA side */
.journey-footer-right{
  display: grid;
  gap: 10px;
  justify-items: start;
}

.cta-title{
  font-weight: 900;
  font-size: 14px;
  color: #111827;
}

.cta-subtitle{
  margin-top: 4px;
  font-size: 13px;
  color: #6b7280;
}

/* CTA portocaliu (coerent cu restul) */
.journey-cta-soft{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  color: #111827;
  border: 1px solid rgba(255,140,66,0.55);
  background: linear-gradient(135deg, #ffc107 0%, #ff8c42 100%);
  box-shadow: 0 10px 22px rgba(255,140,66,0.22);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}

.journey-cta-soft:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,140,66,0.28);
  filter: brightness(0.98);
}

.journey-cta-soft i{
  font-size: 1.05rem;
}

/* ================================================
   CONTACT MODERN 2025
   ================================================ */
.contact-modern {
    background: radial-gradient(circle at top, #eef4ff 0, #f8fbff 45%, #ffffff 100%);
    padding: 100px 0;
}

/* Card stânga – GRADIENT LUMINOS */
.contact-intro-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 30px 26px;
    box-shadow: 0 20px 50px rgba(102,126,234,0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Mini‑overlay pentru profunzime */
.contact-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.15), transparent 60%);
    z-index: 0;
    pointer-events: none;
}

.contact-intro-card > * {
    position: relative;
    z-index: 1;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    backdrop-filter: blur(10px);
}

.contact-title {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-subtitle {
    font-size: 0.98rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

.contact-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.95);
}

.contact-benefits i {
    color: #fbbf24;
    font-size: 1.05rem;
}

 

 
 

/* Card formular */
.contact-modern-wrapper {
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(15,23,42,0.08);
    padding: 28px 26px;
    border: 1px solid #e5e7eb;
}

/* Form inputs */
.servicii-contact-form .form-label {
    font-weight: 600;
    color: #111827;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.servicii-contact-form .form-control-lg,
.servicii-contact-form .form-select-lg {
    border-radius: 12px;
    border: 1px solid #d1d5db;
    padding: 10px 14px;
    font-size: 0.98rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.servicii-contact-form .form-control-lg:focus,
.servicii-contact-form .form-select-lg:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 2px rgba(79,70,229,0.18);
}

/* Checkboxes cards – layout mai curat */
.modern-check{
  background:#f9fafb;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid #e5e7eb;
  display:flex;
  gap:10px;
  align-items:flex-start;
  min-height:72px;
}

.modern-check .form-check-input{
  margin:0;
  margin-top:4px;
  flex:0 0 auto;
}

.modern-check .form-check-label{
  margin:0;
  display:flex;
  flex-direction:column;
  gap:4px;
  line-height:1.25;
  width:100%;
}

/* Titluri / subtext */
.modern-check .form-check-label strong{
  display:block;
  color:#111827;
  font-weight:800;
  font-size:0.95rem;
}

.modern-check .form-check-label .check-sub{
  display:block;
  color:#6b7280;
  font-size:0.88rem;
}

/* ===== URGENT variant corect (pill mic, lizibil) ===== */
.modern-check.is-urgent{
  background:#fff;
  border-color:#fecaca;               /* roșu soft */
}

.urgent-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 12px;
  border-radius:999px;
  font-weight:900;
  font-size:0.78rem;
  letter-spacing:0.10em;
  text-transform:uppercase;
  color:#fff;
  background:linear-gradient(135deg,#ef4444 0%, #b91c1c 100%);
  width:fit-content;
}

.urgent-pill i{
  font-size:0.9rem;
  line-height:1;
}

.modern-check.is-urgent .check-sub{
  color:#374151;                       /* mai închis, să fie clar */
}


/* Submit button */
.contact-submit {
    border-radius: 16px;
    padding: 12px 18px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.contact-submit .submit-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1rem;
}

.contact-submit .btn-subtext {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-modern {
        padding: 70px 0;
    }
    
    .contact-intro-card {
        margin-bottom: 20px;
    }
}

/* Blocuri extra în cardul stâng */
.contact-intro-divider{
  margin:18px 0;
  height:1px;
  background:rgba(255,255,255,.18);
}

.contact-mini-title{
  font-size:0.95rem;
  font-weight:800;
  margin:0 0 10px;
  color:#fff;
}

.contact-mini-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.contact-mini-item{
  display:flex;
  gap:10px;
  align-items:flex-start;
  color:rgba(255,255,255,.95);
  font-size:0.95rem;
  line-height:1.35;
}

.contact-mini-item i{
  margin-top:2px;
  color:#fbbf24;
}

/* Mini “chips” SEO */
.contact-chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.contact-chip{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  background:rgba(255,255,255,.18);
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
  backdrop-filter: blur(10px);
}


/* ================================================
   FAQ MODERN (Premium + Conversion)
   ================================================ */

:root{
  --faq-bg1:#eef4ff;
  --faq-bg2:#ffffff;
  --faq-border: rgba(15,23,42,0.10);
  --faq-text: #0f172a;
  --faq-muted:#475569;

  /* CTA Orange (schimbă cu nuanța ta exactă) */
  --cta: #ff6a00;
  --cta-soft: rgba(255,106,0,0.12);
  --cta-softer: rgba(255,106,0,0.06);
}

.faq-modern{
  background: radial-gradient(circle at top, var(--faq-bg1) 0, #f8fbff 40%, var(--faq-bg2) 100%);
  padding: 96px 0;
}

.faq-modern .section-title{
  letter-spacing: -0.02em;
}

.faq-modern .section-subtitle{
  max-width: 62ch;
  margin: 10px auto 0;
  color: var(--faq-muted);
}

/* list */
.faq-list{
  display:flex;
  flex-direction:column;
  gap: 12px;
}

/* card */
.faq-item{
  position: relative;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--faq-border);
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
  overflow: clip;
  transition: box-shadow .2s ease, border-color .2s ease;
}

.faq-item:hover{
  border-color: rgba(15,23,42,0.16);
  box-shadow: 0 14px 34px rgba(15,23,42,0.08);
}

/* question button */
.faq-question{
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 18px;
  display:flex;
  align-items:center;
  gap: 12px;
  text-align:left;
  cursor:pointer;
  transition: background .2s ease;
}

/* focus accessibility */
.faq-question:focus-visible{
  outline: 3px solid var(--cta-soft);
  outline-offset: 3px;
  border-radius: 14px;
}

/* Q label */
.faq-q-label{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--cta-soft);
  color: var(--cta);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 0.78rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* question text */
.faq-q-text{
  flex:1;
  font-size: 1rem;          /* 16px */
  font-weight: 650;
  color: var(--faq-text);
  line-height: 1.25;
}

/* icon */
.faq-q-icon{
  color: #94a3b8;
  transition: transform .2s ease, color .2s ease;
}

/* active state */
.faq-question:not(.collapsed){
  background: var(--cta-softer);
}

.faq-question:not(.collapsed) .faq-q-icon{
  transform: rotate(180deg);
  color: var(--cta);
}

/* subtle left accent when open */
.faq-item:has(.faq-question:not(.collapsed))::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width: 4px;
  background: linear-gradient(180deg, var(--cta), rgba(255,106,0,0.55));
}

/* answer */
.faq-answer{
  padding: 0 18px 16px 64px;
  font-size: 0.98rem;
  color: var(--faq-muted);
  line-height: 1.6;
}

/* better spacing between Q and A when expanded */
.collapse.show .faq-answer{
  padding-top: 2px;
}

/* mobile */
@media (max-width: 768px){
  .faq-modern{ padding: 72px 0; }
  .faq-answer{ padding-left: 18px; }
}

/* reduce motion */
@media (prefers-reduced-motion: reduce){
  .faq-item, .faq-question, .faq-q-icon{ transition: none !important; }
}

/* buton  dupa comparatia cu alte agemtii*/

/* ================================================
   CTA MODERN – consistent cu restul siteului
   ================================================ */

.cta-modern{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:14px 28px;
  border-radius:18px;

  background:linear-gradient(135deg,#fbbf24 0%, #f59e0b 100%);
  color:#1f2937;

  font-weight:800;
  font-size:1rem;
  text-decoration:none;
  letter-spacing:0.3px;

  box-shadow:
    0 12px 28px rgba(245,158,11,0.35),
    inset 0 1px 0 rgba(255,255,255,0.35);

  transition:all 0.35s cubic-bezier(0.4,0,0.2,1);
  position:relative;
  overflow:hidden;
}

/* Text */
.cta-modern .cta-text{
  position:relative;
  z-index:2;
}

/* Icon */
.cta-modern i{
  font-size:1rem;
  transition:transform 0.3s ease;
}

/* Shimmer discret */
.cta-modern::before{
  content:'';
  position:absolute;
  top:0;
  left:-120%;
  width:120%;
  height:100%;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
  );
  transition:left 0.6s ease;
}

/* Hover */
.cta-modern:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:
    0 18px 42px rgba(245,158,11,0.45),
    inset 0 1px 0 rgba(255,255,255,0.4);
  color:#111827;
}

.cta-modern:hover::before{
  left:120%;
}

.cta-modern:hover i{
  transform:translateY(2px);
}

/* Focus accesibil */
.cta-modern:focus{
  outline:none;
  box-shadow:
    0 0 0 3px rgba(245,158,11,0.35),
    0 18px 42px rgba(245,158,11,0.45);
}

/* Mobile */
@media (max-width:768px){
  .cta-modern{
    width:100%;
    justify-content:center;
    padding:16px 24px;
    font-size:0.95rem;
  }
}
 
 /* DESKTOP / DEFAULT */
.hero-cta{
  display:flex;
  gap:16px;
  margin-bottom:32px;
}

.hero-cta .btn{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px 32px;
  border-radius:16px;
  white-space:nowrap;
}

/* MOBILE ONLY */
@media (max-width: 768px){
  .hero-cta{
    flex-direction:column;
    gap:12px;
  }

  .hero-cta .btn{
    width:100%;
    min-height:60px;
    padding:20px 24px;
    font-size:15px;
    white-space:normal;
  }
}

.trust-grid{
  margin-bottom: 48px;
}

.hero-cta{
  margin-top: 24px;
}
