/* ================================
   CEAMAIBUNA-OFERTA.RO
   MODERN SEO AGENCY STYLES 2026
   ================================ */

/* === VARIABLES === */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4f46e5;
    
    /* Accent Colors */
    --accent-cyan: #22d3ee;
    --accent-green: #10b981;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --accent-yellow: #facc15;
    --accent-red: #ef4444;
    
    /* Dark Theme */
    --dark: #030712;
    --dark-card: #0f172a;
    --dark-elevated: #1e293b;
    --dark-border: #334155;
    
    /* Light Theme (for service pages) */
    --light-bg: #f8fafc;
    --light-card: #ffffff;
    --light-border: #e2e8f0;
    
    /* Gray Scale */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* White */
    --white: #ffffff;
    
    /* Gradients */
    --gradient-main: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    --gradient-accent: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
    --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #22d3ee 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Light theme body for service pages */
body.light-theme {
    background: var(--light-bg);
    color: var(--gray-900);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { font-size: clamp(1rem, 2.5vw, 1.125rem); }

.text-gradient {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* === LAYOUT === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-sm { max-width: 800px; }
.container-lg { max-width: 1400px; }

/* Grid System */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* Flexbox Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-center { align-items: center; justify-content: center; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-main);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid var(--dark-border);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gray-500);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--gray-900);
}
.btn-white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

/* Red accent button for service pages */
.btn-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
}
.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
}

.btn-lg { padding: 1.125rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: 0.625rem 1.25rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* === CARDS === */
.card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    transition: all var(--transition-base);
}

.card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-light {
    background: var(--white);
    border-color: var(--light-border);
}

.card-light:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.card-gradient {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.card-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

/* === BADGES === */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.badge-success {
    background: rgba(16, 185, 129, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
    background: rgba(249, 115, 22, 0.15);
    color: var(--accent-orange);
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--accent-red);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* === NAVIGATION === */
/* Light Navigation for Service Pages */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--light-border);
    height: 70px;
    display: flex;
    align-items: center;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-box {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo {
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 1.25rem);
    text-decoration: none;
    color: var(--gray-900);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: clamp(8px, 2vw, 10px);
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-header {
    background: var(--gradient-main);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    font-size: clamp(12px, 2.5vw, 14px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background: var(--gray-50);
    padding: 12px 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--light-border);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    flex-wrap: wrap;
}

.breadcrumb-list a {
    color: var(--gray-500);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

/* === HERO SECTION (Service Pages) === */
.hero {
    padding: 60px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }
}

.hero h1 {
    font-size: clamp(1.75rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    color: var(--gray-900);
}

.hero p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--gray-600);
    margin-bottom: 28px;
    font-weight: 500;
    max-width: 550px;
}

.hero-badge-list {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 900px) {
    .hero-badge-list { justify-content: flex-start; }
}

.hero-badge {
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 800;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--light-border);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge.red {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
    border-color: rgba(239, 68, 68, 0.3);
}

.hero-badge.primary {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    border-color: rgba(99, 102, 241, 0.3);
}

.hero-img-container {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    border: 4px solid var(--white);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-price {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--light-border);
    text-align: center;
}

.floating-price-amount {
    font-size: clamp(2rem, 6vw, 2.8rem);
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.floating-price-label {
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 800;
    color: var(--gray-500);
    text-transform: uppercase;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

@media (min-width: 900px) {
    .hero-cta-wrapper { align-items: flex-start; }
}

.btn-hero {
    padding: 18px 40px;
    font-size: clamp(1rem, 3.5vw, 1.3rem);
    border-radius: var(--radius-lg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge {
    display: flex;
    align-items: center;
    font-weight: 800;
    color: var(--accent-green);
    font-size: clamp(12px, 3vw, 14px);
    gap: 10px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* === PRICING SECTION === */
.pricing-section {
    padding: 80px 0;
    background: var(--white);
}

.pricing-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
    color: var(--gray-900);
}

.pricing-subtitle {
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(10px, 2.5vw, 12px);
    margin-bottom: 48px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--light-border);
    border-radius: var(--radius-2xl);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all var(--transition-base);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    box-shadow: 0 25px 60px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.badge-top {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--white);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: clamp(9px, 2vw, 11px);
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: clamp(1.3rem, 4vw, 1.6rem);
    font-weight: 900;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: var(--gray-900);
}

.pricing-card .sub {
    color: var(--primary);
    font-weight: 800;
    font-size: clamp(10px, 2.5vw, 12px);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    display: block;
}

.price-tag {
    font-size: clamp(2.5rem, 10vw, 4rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -3px;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-tag span {
    font-size: clamp(1rem, 4vw, 1.3rem);
    color: var(--gray-400);
    letter-spacing: 0;
    -webkit-text-fill-color: var(--gray-400);
}

.feat-list {
    list-style: none;
    margin-bottom: 28px;
    text-align: left;
}

.feat-list li {
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray-600);
    font-size: clamp(13px, 3vw, 15px);
}

.feat-list li::before {
    content: "✓";
    color: var(--accent-green);
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.card-btn {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: clamp(13px, 3vw, 15px);
}

/* === ZONE SECTION === */
.zone-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.zone-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.zone-subtitle {
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: clamp(10px, 2.5vw, 12px);
    margin-bottom: 48px;
}

.zone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 600px) { .zone-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .zone-grid { grid-template-columns: repeat(3, 1fr); } }

.zone-card {
    background: var(--white);
    padding: 28px 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--light-border);
    transition: all var(--transition-base);
}

.zone-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
    transform: translateY(-4px);
}

.zone-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.zone-card-num {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.zone-card h3 {
    font-size: clamp(1.1rem, 3.5vw, 1.3rem);
    font-weight: 900;
    letter-spacing: -0.3px;
    color: var(--gray-900);
}

.zone-card p {
    color: var(--gray-500);
    font-weight: 600;
    font-size: clamp(13px, 3vw, 15px);
    line-height: 1.6;
}

.zone-cartiere {
    color: var(--gray-700);
    font-weight: 700;
}

/* === FAQ SECTION === */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-title {
    text-align: center;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 48px;
    color: var(--gray-900);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--light-border);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-q span:first-child {
    font-size: clamp(1rem, 3vw, 1.15rem);
    font-weight: 700;
    color: var(--gray-900);
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 300;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-a {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-a {
    color: var(--gray-600);
    line-height: 1.8;
    font-size: clamp(14px, 3vw, 16px);
}

/* === CONTACT SECTION === */
.contact-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-info h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.contact-info p {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-benefit-icon {
    width: 28px;
    height: 28px;
    background: var(--gradient-main);
    color: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.contact-benefit span {
    font-weight: 600;
    color: var(--gray-700);
}

.contact-form {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--light-border);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--light-border);
    border-radius: var(--radius-md);
    font-size: 16px;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
    background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    background: var(--gradient-main);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

/* === FOOTER === */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 30px;
}

.f-logo {
    font-size: 1.5rem;
    font-weight: 900;
    display: block;
    margin-bottom: 16px;
}

.f-description {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 24px;
}

.f-phones {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.f-phones a {
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    transition: color var(--transition-fast);
}

.f-phones a:hover {
    color: var(--primary-light);
}

.f-footer-bottom {
    border-top: 1px solid var(--dark-border);
    padding-top: 24px;
    text-align: center;
}

.f-copyright {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* === MISSION SECTION === */
.mission {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center;
}

.mission-emoji {
    font-size: 4rem;
    margin-bottom: 24px;
    display: block;
}

.mission h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.mission-subtitle {
    color: var(--gray-400);
    font-size: 1.2rem;
    margin-bottom: 48px;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto 48px;
}

@media (min-width: 700px) {
    .mission-grid { grid-template-columns: repeat(3, 1fr); }
}

.m-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--dark-border);
    padding: 32px 24px;
    border-radius: var(--radius-xl);
    text-align: center;
}

.m-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.m-card-icon.red { background: rgba(239, 68, 68, 0.15); }
.m-card-icon.dark { background: rgba(99, 102, 241, 0.15); }
.m-card-icon.green { background: rgba(16, 185, 129, 0.15); }

.m-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.m-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mission-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.mission-btn {
    background: var(--gradient-main);
    color: var(--white);
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.mission-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.mission-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.mission-back:hover {
    color: var(--white);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeUp { animation: fadeUp 0.6s ease forwards; }
.animate-fadeIn { animation: fadeIn 0.5s ease forwards; }
.animate-pulse { animation: pulse 2s infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* === UTILITIES === */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-accent { color: var(--accent-cyan); }
.text-success { color: var(--accent-green); }
.text-warning { color: var(--accent-orange); }
.text-danger { color: var(--accent-red); }
.text-muted { color: var(--gray-500); }
.text-white { color: var(--white); }

.bg-dark { background: var(--dark); }
.bg-card { background: var(--dark-card); }
.bg-light { background: var(--light-bg); }
.bg-white { background: var(--white); }

.rounded { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.m-0 { margin: 0; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }

.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }

.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }

/* === RESPONSIVE === */
@media (max-width: 640px) {
    .container { padding: 0 1rem; }
    .hero { padding: 40px 0 30px; }
    .btn { padding: 0.75rem 1.5rem; }
    .btn-lg { padding: 1rem 2rem; }
    .card { padding: 1.5rem; }
    .pricing-card { padding: 24px 20px; }
}

/* === PRINT STYLES === */
@media print {
    nav, header, footer, .btn { display: none; }
    body { background: white; color: black; }
    .card { border: 1px solid #ddd; box-shadow: none; }
}

/* ================================
   NEW PAGES STYLES (costuri, detalii, inscriere)
   ================================ */

/* === DARK NAVIGATION === */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    height: 80px;
    display: flex;
    align-items: center;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo-icon {
    font-size: 24px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo-main {
    font-weight: 900;
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav-logo-sub {
    font-size: 10px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 14px;
    color: var(--gray-400);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn-nav {
    padding: 10px 16px;
    font-size: 14px;
}

/* === HERO SERVICE SECTION === */
.hero-service {
    padding: 140px 0 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-service-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-service-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin: 24px 0;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-service-desc {
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

.badge-animated {
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* === SECTIONS === */
.section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--white);
}

.section.bg-dark {
    background: var(--dark-card);
}

.section.bg-gradient {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-card) 50%, var(--dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin: 16px 0;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto;
}

/* === PRICING STYLES === */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.pricing-card {
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    position: relative;
}

.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: var(--white);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-light);
    letter-spacing: 1px;
}

.pricing-price {
    margin: 16px 0 12px;
}

.pricing-amount {
    font-size: clamp(3rem, 8vw, 4rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
}

.pricing-desc {
    font-size: 14px;
    color: var(--gray-400);
}

.pricing-features {
    flex: 1;
    margin-bottom: 28px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--gray-300);
    font-weight: 500;
}

.pricing-check {
    color: var(--accent-green);
    font-weight: 700;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* === COMPARISON TABLE === */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--dark-border);
}

.comparison-table th {
    font-weight: 700;
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--dark-elevated);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--gray-300);
}

.comparison-table td {
    color: var(--gray-400);
    font-size: 14px;
}

.comparison-table th.featured,
.comparison-table td.featured {
    background: rgba(99, 102, 241, 0.1);
    color: var(--white);
}

.comparison-table th.featured {
    color: var(--primary-light);
}

/* === GUARANTEE BOX === */
.guarantee-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--dark-card);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--dark-border);
}

.guarantee-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.guarantee-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
}

.guarantee-desc {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* === FEATURE GRID === */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 32px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* === PROCESS GRID === */
.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-item {
    text-align: center;
    padding: 24px;
}

.process-num {
    font-size: 48px;
    font-weight: 900;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.process-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 12px;
}

.process-desc {
    font-size: 14px;
    color: var(--gray-400);
}

/* === BENEFITS GRID === */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 8px;
}

.benefit-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.6;
}

/* === FORM STYLES === */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 900px) {
    .form-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 60px;
    }
}

.form-wrapper {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-2xl);
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--dark-elevated);
    border: 2px solid var(--dark-border);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-500);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary);
    cursor: pointer;
}

.form-checkbox label {
    font-size: 14px;
    color: var(--gray-400);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.form-note {
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

.form-note a {
    color: var(--primary-light);
}

/* === FORM INFO === */
.form-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.info-card.highlight {
    border-color: var(--accent-green);
    background: rgba(16, 185, 129, 0.05);
    text-align: center;
}

.info-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.info-title {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
}

.info-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-step {
    display: flex;
    gap: 16px;
}

.info-step-num {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.info-step strong {
    display: block;
    color: var(--white);
    margin-bottom: 4px;
}

.info-step p {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.5;
}

.info-card p {
    font-size: 14px;
    color: var(--gray-400);
}

/* === FAQ === */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--dark-border);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 700;
    color: var(--white);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-light);
}

.faq-toggle {
    font-size: 24px;
    color: var(--primary);
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

/* === FOOTER === */
.footer {
    background: var(--dark-card);
    padding: 60px 0 40px;
    border-top: 1px solid var(--dark-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    display: inline-block;
}

.footer-desc {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

.footer-contact {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-contact {
        text-align: right;
    }
}

.footer-phone {
    display: block;
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--accent-cyan);
    margin-bottom: 12px;
}

.footer-phone:hover {
    color: var(--primary-light);
}

.footer-copyright {
    font-size: 12px;
    color: var(--gray-600);
}
