/* ================================
   PROFITSTUDIO - MAIN STYLESHEET
   Agenție Marketing Digital 2026
   ================================ */

:root {
    /* Brandbook 2026 Colors (Pag 5) */
    --neon-green: #00FF41;
    --pure-black: #000000;
    --dark-gray: #1A1A1A;
    --card-bg: #0A0A0A;
    --border-dark: #222222;
    --border-light: #333333;
    --text-primary: #FFFFFF;
    --text-secondary: #666666;
    --text-tertiary: #9CA3AF;

    /* Typography - DOAR Inter (Pag 7) */
    --font-primary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--pure-black);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ================================
   MATRIX RAIN BACKGROUND
   ================================ */

#matrix-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
    pointer-events: none;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* ================================
   NAVIGATION
   ================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 72px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-dark);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
}

nav .nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
    cursor: pointer; /* cursor pointer când hover pe logo */
    display: flex;
    align-items: center;
    gap: 0.35rem; /* spacing mic între logo și PROFITSTUDIO */
}

/* Logo icon în navbar */
nav .logo .logo-icon {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 6px rgba(0, 255, 65, 0.3));
    transition: all 0.3s ease;
}

nav .logo:hover .logo-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 12px rgba(0, 255, 65, 0.6));
}

nav .logo:hover .logo-profit {
    color: var(--neon-green); /* PROFIT rămâne verde pe hover */
}

nav .logo:hover .logo-studio {
    color: var(--neon-green); /* STUDIO devine verde pe hover */
}

/* Wrapper pentru PROFITSTUDIO (elimină spațiul) */
nav .logo .logo-text {
    display: inline-block;
    letter-spacing: -0.02em;
    white-space: nowrap; /* nu permite line break */
}

nav .logo .logo-profit {
    color: var(--neon-green); /* PROFIT e verde by default */
}

nav .logo .logo-studio {
    color: var(--text-primary); /* STUDIO e gri by default */
    transition: color 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    padding: 0.5rem 0;
}

nav a:hover {
    color: var(--neon-green);
}

nav a:focus {
    outline: none;
}

nav a.active {
    color: var(--neon-green);
    border-bottom: 2px solid var(--neon-green);
    padding-bottom: 4px;
}

/* Hamburger Menu (Mobile) */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--neon-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ================================
   TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--text-primary);
    font-weight: 700;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
}

h2 {
    font-size: 32px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

.highlight {
    color: var(--neon-green);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 2rem 80px;
    position: relative;
}

.hero-content {
    max-width: 900px;
}

/* Hero logo (mare, centrat, cu animation) */
.hero-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
    filter: drop-shadow(0 0 12px rgba(0, 255, 65, 0.4));
    animation: hero-logo-pulse 3s ease-in-out infinite;
}

@keyframes hero-logo-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 12px rgba(0, 255, 65, 0.4));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 255, 65, 0.6));
    }
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.hero .subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.hero-feature i {
    color: var(--neon-green);
    font-size: 1.2rem;
}

.stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--neon-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ================================
   BUTTONS
   ================================ */

.cta-button {
    display: inline-block;
    height: 48px;
    padding: 0 2rem;
    background: var(--neon-green);
    color: var(--pure-black);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    line-height: 48px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 255, 65, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.5);
}

.cta-button:focus {
    outline: 2px solid var(--neon-green);
    outline-offset: 4px;
}

.cta-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    box-shadow: none;
}

.cta-secondary:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

/* ================================
   POAS CALLOUT BOX
   ================================ */

.poas-callout {
    padding: 3rem 2rem;
    background: transparent;
}

.poas-box {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.poas-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.poas-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.poas-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s;
}

.learn-more:hover {
    gap: 0.75rem;
}

/* ================================
   SECTIONS
   ================================ */

section {
    padding: 8rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ================================
   GROWTH SYSTEM FLOW CHART
   ================================ */

.ecosystem-section {
    background: transparent;
    padding: 4rem 2rem; /* reduced from 6rem */
}

.ecosystem-container {
    max-width: 1280px; /* centered with site max-width */
    margin: 0 auto;
    padding: 0 2rem; /* align with site padding */
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 2.5rem; /* reduced from 4rem */
}

.ecosystem-header h2 {
    font-size: 1.8rem; /* reduced from 2.2rem */
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.ecosystem-header p {
    font-size: 1rem; /* reduced from 1.2rem */
    color: var(--neon-green);
    font-weight: 500;
}

/* Growth System Grid (1x5 Linear Desktop) - PROPERLY CENTERED */
.growth-system-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    align-items: center;
    max-width: 100%;
}

.growth-box {
    background: rgba(13, 17, 23, 0.6);
    border: 2px solid var(--border-dark);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    height: 150px; /* FIXED height for all boxes */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Arrows between boxes (alternating direction: → ← → ←) */
.growth-box:nth-child(1)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 1.75rem;
    font-weight: 700;
    z-index: 10;
}

.growth-box:nth-child(2)::after {
    content: '←';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 1.75rem;
    font-weight: 700;
    z-index: 10;
}

.growth-box:nth-child(3)::after {
    content: '→';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 1.75rem;
    font-weight: 700;
    z-index: 10;
}

.growth-box:nth-child(4)::after {
    content: '←';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-green);
    font-size: 1.75rem;
    font-weight: 700;
    z-index: 10;
}

/* No arrow after last box */
.growth-box:nth-child(5)::after {
    display: none;
}

/* Hover removed - boxes are not clickable */

.growth-icon {
    font-size: 2rem;
    color: var(--neon-green);
    margin-bottom: 0.75rem;
}

.growth-box h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.growth-subtitle {
    font-size: 0.85rem;
    color: var(--neon-green);
    font-weight: 500;
    margin: 0;
}

/* Results Box - CENTERED UNDER ALL BOXES */
.growth-results {
    background: linear-gradient(135deg, rgba(0, 255, 65, 0.1) 0%, rgba(0, 255, 65, 0.05) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    text-align: center;
    max-width: 600px;
    margin: 3.5rem auto 0 auto;
    position: relative;
    min-height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Arrow pointing down to Results (centered under all boxes) */
.growth-system-grid::after {
    content: '↓';
    position: absolute;
    bottom: -3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--neon-green);
    font-size: 2rem;
    font-weight: 700;
}

.results-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-bottom: 0.25rem;
}

.growth-results h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neon-green);
    margin-bottom: 0.25rem;
    letter-spacing: -0.01em;
}

.growth-results p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Mobile Responsive - Stack Vertical */
@media (max-width: 768px) {
    .ecosystem-header h2 {
        font-size: 1.8rem;
    }
    
    .growth-system-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    /* Vertical arrows on mobile (↓ ↑ ↓ ↑) */
    .growth-box:nth-child(1)::after,
    .growth-box:nth-child(3)::after {
        content: '↓'; /* săgeată în jos */
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1rem;
        transform: translateX(-50%);
        font-size: 1.5rem;
    }
    
    .growth-box:nth-child(2)::after,
    .growth-box:nth-child(4)::after {
        content: '↑'; /* săgeată în sus */
        right: auto;
        left: 50%;
        top: auto;
        bottom: -1rem;
        transform: translateX(-50%);
        font-size: 1.5rem;
    }
    
    .growth-box:nth-child(5)::after {
        display: none; /* ultimul box fără săgeată */
    }
    
    .growth-box {
        padding: 1rem;
        min-height: 80px;
    }
    
    .growth-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .growth-box h3 {
        font-size: 0.9rem;
    }
    
    .growth-subtitle {
        font-size: 0.75rem;
    }
    
    .growth-results {
        padding: 1rem;
        margin-top: 1rem;
    }
    
    .results-icon {
        font-size: 1.75rem;
    }
    
    .growth-results h3 {
        font-size: 1rem;
    }
    
    .growth-results p {
        font-size: 0.8rem;
    }
    
    /* Hide downward arrow on mobile (already have arrows between boxes) */
    .growth-system-grid::after {
        display: none;
    }
}

/* Chart Container */
.ecosystem-chart {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

/* Brand Section */
.chart-brand {
    text-align: center;
}

.brand-logo {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--font-primary);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.logo-profit {
    color: var(--neon-green);
}

.logo-studio {
    color: var(--text-primary);
}



/* ================================
   SERVICE CARDS
   ================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* 3 columns desktop, 1 column mobile */
    gap: 2.5rem;
    max-width: 1280px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2.5rem; /* mai mult padding interior */
    transition: all 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.2);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neon-green);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem; /* mai mult spacing după titlu */
    color: var(--text-primary);
}

.service-stat {
    display: inline-block;
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 6px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.8; /* mai mult line-height pentru readability */
    margin-bottom: 2rem; /* mai mult spacing după descriere */
    font-size: 1rem; /* mai mare font pentru readability */
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.75rem 0; /* mai mult spacing între features */
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem; /* mai mult gap între icon și text */
    font-size: 0.95rem; /* text puțin mai mare */
}

.service-features li i {
    color: var(--neon-green);
    margin-top: 0.25rem;
    font-size: 0.9rem; /* icon puțin mai mare */
}

/* ================================
   MINI-BOX 3-STEP FUNNEL
   ================================ */

.funnel-teaser {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--card-bg) 0%, var(--pure-black) 100%);
}

.funnel-box {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--neon-green);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.funnel-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.funnel-box .intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

.steps-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-mini {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    transition: all 0.3s;
}

.step-mini:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--neon-green);
    color: var(--pure-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.step-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.step-text p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ================================
   BENEFITS GRID
   ================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* responsive: 2-3 columns */
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 255, 65, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 65, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    color: var(--neon-green);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   LOGO CAROUSEL
   ================================ */

.logo-carousel {
    overflow: hidden;
    padding: 3rem 0;
    position: relative;
    background: rgba(0, 255, 65, 0.02);
    border-radius: 12px;
    margin: 2rem 0;
}

.logo-track {
    display: flex;
    animation: scroll 40s linear infinite;
    gap: 3rem;
}

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

.logo-item {
    min-width: 180px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item svg {
    width: 100%;
    height: 100%;
    color: var(--text-secondary);
    transition: color 0.3s;
}

.logo-item:hover svg {
    color: var(--neon-green);
}

/* ================================
   TESTIMONIALS
   ================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonial-card {
    background: #0A0A0A;
    border: 1px solid #222;
    border-left: 4px solid #00FF41;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.1);
}

.stars {
    color: #00FF41;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.quote {
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    margin-bottom: 24px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00FF41;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #00FF41;
    font-size: 14px;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
    font-size: 16px;
}

.author-info p {
    font-size: 14px;
    color: #666666;
    margin: 4px 0 0 0;
}

/* ================================
   CASE STUDIES
   ================================ */

.case-study {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 80px;
}

.case-study.reverse .case-content {
    order: 1;
}

.case-study.reverse .case-image {
    order: 2;
}

.case-image {
    width: 100%;
    height: 400px;
    background: #0A0A0A;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
}

.case-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #666666;
}

.case-placeholder i {
    font-size: 64px;
    color: #00FF41;
}

.case-placeholder span {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.case-content {
    padding: 24px 0;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 65, 0.1);
    color: #00FF41;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.case-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin: 16px 0;
    line-height: 1.3;
}

.case-content > p {
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.6;
    margin-bottom: 24px;
}

.metrics-row {
    display: flex;
    gap: 32px;
    margin: 32px 0;
    flex-wrap: wrap;
}

.metric .number {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #00FF41;
    line-height: 1;
}

.metric .label {
    font-size: 14px;
    color: #666666;
    margin-top: 8px;
}

.cta-link {
    color: #00FF41;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    font-size: 16px;
}

.cta-link:hover {
    gap: 12px;
}

.cta-link i {
    font-size: 14px;
}

/* ================================
   POAS DEEP DIVE
   ================================ */

.poas-deep-dive {
    background: linear-gradient(180deg, var(--pure-black) 0%, var(--dark-gray) 50%, var(--pure-black) 100%);
    padding: 6rem 2rem;
}

.poas-header {
    text-align: center;
    margin-bottom: 4rem;
}

.poas-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.poas-header .intro {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.comparison-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.comparison-col {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    padding: 2rem;
}

.col-header {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.roas-header {
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.poas-header {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid rgba(0, 255, 65, 0.3);
}

.col-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.col-header p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.formula {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 255, 65, 0.05);
    border-radius: 6px;
    margin-bottom: 1.5rem;
}

.explanation {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.metrics-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.metrics-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.metrics-list i {
    font-size: 1.2rem;
}

.example-box {
    border-radius: 8px;
    padding: 1.5rem;
    line-height: 1.8;
}

.example-box.negative {
    background: rgba(255, 68, 68, 0.05);
    border: 1px solid rgba(255, 68, 68, 0.2);
}

.example-box.positive {
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.2);
}

.example-box h4 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.example-box p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.example-box .result {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.example-box .result.warning {
    color: #FFA500;
}

.poas-conclusion {
    max-width: 900px;
    margin: 0 auto;
}

.conclusion-box {
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.conclusion-box h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.conclusion-box p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.conclusion-box .cta-text {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

/* ================================
   PORTFOLIO
   ================================ */

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    margin: 48px 0 64px 0;
}

.client-logo {
    background: #0A0A0A;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    border-color: #00FF41;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.1);
}

.client-logo i {
    font-size: 48px;
    color: #666666;
    transition: color 0.3s ease;
}

.client-logo:hover i {
    color: #00FF41;
}

.client-logo span {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #666666;
    font-size: 16px;
    transition: color 0.3s ease;
}

.client-logo:hover span {
    color: #FFFFFF;
}

.achievements-row {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.achievement {
    text-align: center;
    max-width: 280px;
}

.achievement i {
    font-size: 56px;
    color: #00FF41;
    margin-bottom: 16px;
}

.achievement h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 8px 0;
    font-size: 18px;
}

.achievement p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* ================================
   PARTNERSHIP BADGES
   ================================ */

.partnership-badges {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 48px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.badge-minimal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(26, 26, 26, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.badge-minimal i {
    color: #00FF41;
    font-size: 20px;
}

.badge-minimal:hover {
    border-color: rgba(0, 255, 65, 0.3);
    background: rgba(26, 26, 26, 0.5);
}

/* ================================
   TRAINING SECTION
   ================================ */

.training-container {
    max-width: 700px;
    margin: 0 auto;
    background: #0A0A0A;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.training-container .badge {
    display: inline-block;
    background: rgba(0,255,65,0.1);
    color: #00FF41;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(0,255,65,0.3);
}

.training-container h2 {
    font-size: 32px;
    font-weight: bold;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.training-container .subtitle {
    font-size: 18px;
    color: #999999;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.training-container .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    text-align: left;
}

.training-container .benefits-list li {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.6;
}

.training-container .benefits-list .checkmark {
    color: #00FF41;
    font-weight: bold;
    font-size: 18px;
    flex-shrink: 0;
}

.training-container .cta-button {
    display: inline-block;
    background: #00FF41;
    color: #000000;
    padding: 0 40px;
    height: 48px;
    line-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 24px;
}

.training-container .cta-button:hover {
    background: #00CC34;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,255,65,0.3);
}

.training-container .note {
    font-size: 12px;
    font-style: italic;
    color: #666666;
    margin: 0;
}

/* ================================
   FAQ SECTION
   ================================ */

.faq-section {
    background: transparent;
    padding: 6rem 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.faq-item {
    background: transparent;
    border: 1px solid var(--border-dark);
    border-left: 4px solid var(--neon-green);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 255, 65, 0.1);
}

/* <details> reset – ascunde triunghi default */
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    transition: color 0.3s ease;
}

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

/* Iconiță + / − */
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--neon-green);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--neon-green);
}

.faq-item summary:hover {
    color: var(--neon-green);
}

/* Răspuns (conținut collapsible) */
.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-secondary);
    line-height: 1.7;
    border-top: 1px solid var(--border-dark);
    animation: fadeInDown 0.3s ease;
}

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

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* ================================
   AI CARDS GRID
   ================================ */

.ai-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem; /* mai mult spacing între AI cards */
    margin-top: 3rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   AI MARKETING SECTION
   ================================ */

#ai-marketing {
    padding: 7rem 2rem; /* mai mult padding pentru secțiune */
}

#ai-marketing .section-header {
    margin-bottom: 4rem; /* mai mult spacing după header */
}

#ai-marketing .section-subtitle {
    font-size: 1.15rem; /* text puțin mai mare */
    line-height: 1.7; /* mai mult line-height */
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   TIMELINE
   ================================ */

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -40px;
    width: 2px;
    background: linear-gradient(180deg, var(--neon-green) 0%, transparent 100%);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 2px solid var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--neon-green);
    position: relative;
    z-index: 2;
}

.timeline-content {
    padding-top: 1rem;
}

.timeline-week {
    color: var(--neon-green);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ================================
   CONTACT FORM
   ================================ */

.budget-info-box {
    max-width: 800px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(0, 255, 65, 0.05);
    border: 1px solid rgba(0, 255, 65, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-section {
    background: var(--card-bg);
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 4rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: var(--pure-black);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group textarea {
    height: 120px;
    padding: 1rem;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 2px rgba(0, 255, 65, 0.2);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff4444;
}

.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: var(--neon-green);
}

.error-message {
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--neon-green);
}

.checkbox-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.checkbox-group a {
    color: var(--neon-green);
    text-decoration: none;
}

.form-success {
    background: rgba(0, 255, 65, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-success.show {
    display: block;
}

/* ================================
   FOOTER
   ================================ */

footer {
    background: var(--card-bg);
    border-top: 1px solid var(--border-dark);
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-section p,
.footer-section a {
    color: var(--text-secondary);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--neon-green);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    height: 48px;
    padding: 0 1rem;
    background: var(--pure-black);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.newsletter-form button {
    height: 48px;
    padding: 0 1.5rem;
    background: var(--neon-green);
    color: var(--pure-black);
    border: none;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--pure-black);
    border: 1px solid var(--border-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-dark);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-team-text {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark); /* linie separatoare înainte de © 2026 */
}

/* ================================
   UI/UX ENHANCEMENTS
   ================================ */

#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--neon-green);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease;
}

#back-to-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.1);
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
}

#back-to-top:hover {
    transform: scale(1.1);
    background: rgba(0, 255, 65, 0.2);
}

#back-to-top.visible {
    display: flex;
}

/* ================================
   ANIMATIONS
   ================================ */

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 992px) {
    .comparison-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .case-study {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .case-study.reverse .case-content,
    .case-study.reverse .case-image {
        order: unset;
    }

    .case-image {
        height: 300px;
    }

    .metrics-row {
        gap: 24px;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }

    .achievements-row {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .hamburger {
        display: flex;
    }
    
    /* Mobile logo adjustments */
    nav .logo .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    nav .logo {
        font-size: 1.3rem;
        gap: 0.3rem;
    }
    
    .hero-logo {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }
    
    nav ul {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-dark);
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-dark);
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }

    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .timeline-item::before {
        left: 30px;
    }

    .poas-box {
        flex-direction: column;
        padding: 1.5rem;
    }

    .funnel-box {
        padding: 2rem 1.5rem;
    }

    .steps-mini {
        grid-template-columns: 1fr;
    }

    /* FAQ Mobile - mai compact */
    .faq-section {
        padding: 4rem 1.5rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item summary {
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
        padding-right: 3rem;
    }

    .faq-item summary::after {
        right: 1.5rem;
        font-size: 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    /* AI Marketing Section - Mobile */
    #ai-marketing {
        padding: 4rem 1.5rem;
    }

    /* AI Cards Mobile - single column */
    .ai-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0;
    }

    /* Benefits Grid Mobile - single column */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-section {
        padding: 2rem;
    }

    .stats-bar {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    
    /* CTA Button Responsive Text */
    .cta-text-desktop {
        display: none;
    }
    
    .cta-text-mobile {
        display: inline !important;
    }
    
    .cta-button {
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
}