:root {
    --bg-main: #050608;
    --bg-card: #0c1018;
    --bg-input: #020617;
    --text-primary: #e5e7eb;
    --text-secondary: #d1d5db;
    --text-muted: #9ca3af;
    --accent: #9acd32;
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(154, 205, 50, 0.3);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-main);
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #bce954;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(5, 6, 8, 0.98);
    border-bottom: 1px solid var(--border-subtle);
    backdrop-filter: blur(10px);
    height: 80px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.logo-wrap img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    margin-left: var(--spacing-2xl); /* distanța dintre logo și meniu */
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-links a.active {
    color: var(--accent);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
}

.existing-customers-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-left: var(--spacing-xl);
    padding-left: var(--spacing-xl);
    border-left: 1px solid var(--border-subtle);
}

.existing-customers-header span {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 600;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    z-index: 1001;
}

.mobile-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-only-btn {
    display: none;
}

section {
    padding: var(--spacing-3xl) 0;
}

/* Reduce vertical gap before contact form */
#contact-form {
    padding-top: var(--spacing-xl);
}

.hero {
    padding-bottom: var(--spacing-2xl);
}

.hero {
    padding-top: 160px;
    padding-bottom: var(--spacing-3xl);
    background: radial-gradient(circle at 70% 20%, rgba(22, 28, 45, 0.4) 0%, rgba(5, 6, 8, 0) 60%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero-tag {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin: 0;
}

.hero h1 .highlight {
    color: var(--accent);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 580px;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    padding: var(--spacing-md);
    border-left: 3px solid var(--accent);
    background: rgba(154, 205, 50, 0.03);
}

.meta-item {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-cta {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.sidebar-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-subtle);
}

.sidebar-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

/* Generic section titles used across inner pages */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

/* Common grid helpers for existing layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

@media (max-width: 900px) {
    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
	    .sla-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2,
    .grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }
}

.focus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.focus-list li {
    position: relative;
    padding-left: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.focus-list li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.arch-grid {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.arch-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.arch-icon {
    width: 40px;
    height: 40px;
    color: #050608;
    background: var(--accent);
    border-radius: 8px;
    padding: 8px;
    flex-shrink: 0;
}

.arch-icon svg {
    width: 100%;
    height: 100%;
}

.arch-text h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.arch-text p {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin: 0;
}

/* Generic card styling reused on inner pages */
.card,
.content-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: var(--spacing-xl);
}

.card + .card {
    margin-top: var(--spacing-xl);
}

.card h3,
.content-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.card p,
.content-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-md);
}

.company-row {
    display: flex;
    gap: var(--spacing-sm);
}

.company-label {
    width: 120px;
    flex-shrink: 0;
    color: var(--text-muted);
    font-weight: 500;
}

.company-value {
    flex: 1;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.contact-form-grid textarea {
    min-height: 380px;
}


.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem var(--spacing-xl);
    border-radius: 6px;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--accent);
    color: #050608;
    border-color: var(--accent);
}

.btn-primary:hover {
    background: #bce954;
    border-color: #bce954;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.2);
    color: #050608;
}

.btn-outline {
    background: transparent;
    border-color: #4b5563;
    color: var(--text-primary);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
}

.btn-ghost:hover {
    color: var(--text-primary);
}

.btn-small {
    padding: 0.625rem var(--spacing-md);
    font-size: 0.875rem;
}

.industries {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.industry-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(154, 205, 50, 0.1);
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 var(--spacing-md) 0;
    color: #050608;
    background: var(--accent);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industry-icon svg {
    width: 100%;
    height: 100%;
}

.industry-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.industry-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.tech-standards {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    align-items: stretch; /* important pentru egalarea pe înălțime */
}

.tech-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 100%;          /* cardul umple toată înălțimea track-ului */
}



.tech-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.tech-intro {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.stack-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stack-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.stack-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    flex-shrink: 0;
}

.stack-icon svg {
    width: 100%;
    height: 100%;
}

.stack-details h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.stack-details p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

.badge-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: auto;      /* împinge badge-urile spre baza cardului */
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.badge-item:hover {
    border-color: var(--accent);
}

.badge-icon {
    width: 32px;
    height: 32px;
    color: #050608;
    background: var(--accent);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 100%;
    height: 100%;
}

.badge-item span {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.metric-item {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    text-align: center;
}

.metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Dashboard chart bars (used on projects page) */
.widget-chart {
    height: 40px;
    background: linear-gradient(135deg, rgba(154, 205, 50, 0.1), rgba(154, 205, 50, 0.05));
    border-radius: 4px;
    margin-top: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    padding: 4px;
}

.chart-bar {
    width: 8px;
    background: var(--accent);
    border-radius: 2px;
    transition: height 0.3s ease;
}

.chart-bar-medium-1 { height: 40%; }
.chart-bar-medium-2 { height: 55%; }
.chart-bar-medium-3 { height: 65%; }
.chart-bar-strong-1 { height: 75%; }
.chart-bar-strong-2 { height: 85%; }
.chart-bar-strong-3 { height: 95%; }

.cta {
    background: rgba(154, 205, 50, 0.03);
    border-top: 1px solid rgba(154, 205, 50, 0.1);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
    background: #020305;
    margin-top: auto;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 1024px) {
    .existing-customers-header {
        display: none;
    }
    
    .mobile-only-btn {
        display: block;
        color: var(--accent) !important;
        margin-top: var(--spacing-sm);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .hero-sidebar {
        flex-direction: column;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 1.25rem;
        --spacing-xl: 2rem;
        --spacing-2xl: 3rem;
        --spacing-3xl: 4rem;
    }
    
    .contact-form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
	
    .mobile-toggle {
        display: block;
    }
    
    .mobile-toggle.open .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.open .bar:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.open .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-main);
        flex-direction: column;
        align-items: stretch;
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
        margin-left: 0;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-150%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: var(--spacing-sm) 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links a.active::after {
        display: none;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-sidebar {
        flex-direction: column;
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .badge-grid,
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .footer-inner {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .sidebar-card,
    .industry-card,
    .tech-card {
        padding: var(--spacing-lg);
    }
}

.auth-body {
    background: #050608;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 80px;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    border: 1px solid rgba(55, 65, 81, 0.9);
    background: #020617;
    padding: var(--spacing-xl) var(--spacing-lg);
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.auth-logo img {
    height: 72px;
    display: block;
}

.auth-title {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.auth-subtitle {
    text-align: center;
    font-size: 0.9375rem;
    color: #9ca3af;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

input,
textarea {
    width: 100%;
    padding: 0.875rem var(--spacing-md);
    border-radius: 6px;
    border: 1px solid #4b5563;
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

textarea {
    min-height: 140px;
    resize: vertical;
}

.auth-footer {
    margin-top: var(--spacing-md);
    font-size: 0.8125rem;
    color: #9ca3af;
    text-align: center;
}

.auth-footer a {
    color: #9acd32;
}

/* Align hero CTA button with form submit button */
.hero-cta .btn-primary {
    min-height: 48px;
    padding: 0.875rem var(--spacing-xl);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: .75rem;
    align-items: center;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    color: var(--text-muted);
}
/* ----------------------
   LEGAL PAGE (CLEAN)
----------------------- */

.legal {
    padding: 5rem 0 6rem;
}

.legal-container {
    display: flex;
    justify-content: center;
}

.legal-content {
    max-width: 880px;
    width: 100%;
    color: var(--text-secondary);
}

.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 0.75rem;
    color: white;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
	
}.legal-content ul {
    list-style: none;
    margin: 1rem 0 1.5rem 0;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.7;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.legal-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}


.legal-footer {
    margin-top: 3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: right;
}

.legal-content ul {
    list-style: none;
}

.hero-style h1,
.hero-style .hero-description {
    text-align: left;
}

.hero-style .legal-content {
    max-width: 1100px;  /* lățime ca hero-urile din restul site-ului */
}

.hero-style .legal-container {
    justify-content: flex-start;
}

/* -----------------------
   COOKIE CONSENT POPUP
------------------------ */

.cookie-consent {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: rgba(16, 20, 28, 0.95);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    max-width: 320px;
    font-size: 0.85rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.6);
    z-index: 9999;
    display: none;
}

.cookie-consent p {
    margin-bottom: 0.75rem;
}

.cookie-consent a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-consent button {
    width: 100%;
}
.cookie-consent a {
    color: var(--accent);
    font-weight: 500;
}

/* ==========================
   APPROACH TIMELINE PROFI
========================== */

.methodology {
    position: relative;
    padding: var(--spacing-md) 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 0; /* Gap-ul este gestionat de padding-ul itemilor pentru continuitate */
}

/* Linia verticală din spate (Circuit Line) */
.methodology::before {
    content: '';
    position: absolute;
    top: 20px;
    bottom: 0;
    left: 20px; /* Centrat pe lățimea indexului (40px / 2) */
    width: 2px;
    background: linear-gradient(to bottom, 
        rgba(154, 205, 50, 0.8) 0%, 
        rgba(154, 205, 50, 0.2) 100%
    );
    z-index: 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
    padding-bottom: 3rem; /* Spațiu pentru săgeată */
    transition: transform 0.3s ease;
}

/* Eliminăm padding-ul de la ultimul element */
.step:last-child {
    padding-bottom: 0;
}

/* Ascundem linia care trece de ultimul element */
.step:last-child .step-index {
    box-shadow: 0 0 0 10px var(--bg-main); /* Mască vizuală */
}

.step-index {
    position: relative;
    z-index: 1;
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    
    /* Stil Tech: Border colorat, interior închis */
    background: var(--bg-card);
    border: 2px solid var(--accent);
    color: var(--accent);
    
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    
    /* Umbră pentru a se separa de linie */
    box-shadow: 0 0 0 6px var(--bg-main);
    transition: all 0.3s ease;
}

.step-body {
    padding-top: 0.2rem;
    flex: 1;
}

.step-body h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
    transition: color 0.3s ease;
}

.step-body ul {
    padding-left: 0;
    list-style: none;
}

.step-body li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

/* Bullet points personalizate (linii mici orizontale) */
.step-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 2px;
    background: rgba(154, 205, 50, 0.5);
    transition: width 0.3s ease;
}

/* ================== 
   SĂGEATA PROFI 
   ================== */
/* Aceasta este săgeata dintre pași, plasată pe linia verticală */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 15px; /* Centrat: 20px (mijloc) - 5px (jumătate din lățime) */
    bottom: 1.5rem;
    width: 10px;
    height: 10px;
    
    /* Crearea formei de Chevron (V) */
    border-right: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    transform: rotate(45deg);
    
    background: transparent;
    opacity: 0.6;
    z-index: 1;
    transition: all 0.3s ease;
}


/* ================== 
   HOVER EFFECTS 
   ================== */

/* Când treci cu mouse-ul peste un pas */
.step:hover .step-index {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 0 6px var(--bg-main), 0 0 15px rgba(154, 205, 50, 0.4);
    transform: scale(1.1);
}

.step:hover .step-body h3 {
    color: var(--accent);
}

.step:hover .step-body li::before {
    width: 12px;
    background: var(--accent);
}

/* Când dai hover, săgeata devine mai vizibilă și coboară puțin */
.step:hover::after {
    opacity: 1;
    border-color: #fff;
    bottom: 1.3rem; /* Mică animație de curgere */
}

/* ===== SLA ===== */ .sla { margin-top: 5rem; } .sla h2 { font-size: 2rem; } .sla-intro { max-width: 720px; color: var(--text-secondary); margin-bottom: 2.3rem; } .sla-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.4rem; } .sla-card { background: linear-gradient(160deg,#0c1120,#070a12); border-radius: 14px; padding: 1.6rem; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); } .sla-card h3 { margin-bottom: .7rem; } .sla-card li { margin-bottom: .35rem; color: var(--text-secondary); } .sla-card li::marker { color: var(--accent); }

/* ==========================
   APPROACH HEADER & INTRO
========================== */

/* 1. Spațiere generală a secțiunii */
section.approach {
    padding-top: 6rem; /* Mai mult aer sus */
    padding-bottom: 6rem;
}

/* 2. Header-ul Principal (Titlul Mare) */
.approach .approach-header {
    margin-bottom: 3rem;
    position: relative;
    /* Adăugăm o linie decorativă subtilă deasupra titlului */
    padding-top: 1.5rem; 
}

/* Opțional: o linie mică accent deasupra titlului */
.approach .approach-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.approach .approach-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Mare și responsiv */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em; /* Text strâns, modern */
}

/* Subtitlul de sub H1 - facem textul mai mare, ca un "Lead" */
.approach .approach-header > p {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px; /* Best practice: nu lăsa textul să se ducă pe tot ecranul */
    margin-bottom: 0;
}

/* 3. Intro-ul (Secțiunea dintre Titlu și Timeline) */
.approach .approach-intro {
    /* Creăm un layout tip grilă: Titlu stânga, Text dreapta (pe desktop) */
    display: grid;
    grid-template-columns: 300px 1fr; 
    gap: 3rem;
    
    margin-bottom: 5rem; /* Distanță generoasă până la pasul 01 */
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08); /* Separator fin */
}

/* Titlul H2 din intro - Îl transformăm într-un "Label" tehnic */
.approach .approach-intro h2 {
    font-size: 0.875rem; /* Mic */
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent); /* Folosim culoarea de accent */
    margin-top: 0.5rem; /* Aliniere optică cu textul din dreapta */
    font-weight: 700;
}

/* Paragrafele din intro */
.approach .approach-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    max-width: 65ch; /* Limita de caractere pentru lizibilitate optimă */
}

.approach .approach-intro p:last-child {
    margin-bottom: 0;
}

/* ==========================
   MOBILE RESPONSIVENESS
========================== */
@media (max-width: 768px) {
    section.approach {
        padding-top: 4rem;
    }
    
    .approach .approach-intro {
        grid-template-columns: 1fr; /* Pe mobil devin una sub alta */
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .approach .approach-header h1 {
        font-size: 2.2rem;
    }
}
.global-access-denied {
    width: 100%;
    padding: 16px 20px;
    background: #b30000;
    color: #fff;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}


/* Projects Section - Enhanced */
.industries {
    background: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: var(--spacing-xl);
}

.industry-card {
    padding: var(--spacing-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.industry-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 25px rgba(154, 205, 50, 0.1),
        0 0 0 1px rgba(154, 205, 50, 0.1);
}

.industry-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    color: #050608;
    background: var(--accent);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.3);
}

.industry-card h3 {
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
    line-height: 1.3;
}

.industry-card > p {
    font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.industry-card .focus-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: auto;
    padding-top: var(--spacing-sm);
}

.industry-card .focus-list li {
    position: relative;
    padding-left: var(--spacing-md);
    color: var(--text-muted);
    font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
    line-height: 1.5;
    transition: color 0.2s ease;
}

.industry-card:hover .focus-list li {
    color: var(--text-secondary);
}

.industry-card .focus-list li::before {
    content: "•";
    color: var(--accent);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 1.2em;
}

/* Project Evolution Section - Premium Design */
.project-evolution {
    background: linear-gradient(180deg, rgba(255,255,255,0.01) 0%, rgba(154,205,50,0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.project-evolution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(154, 205, 50, 0.1) 20%,
        rgba(154, 205, 50, 0.1) 80%,
        transparent 100%
    );
    pointer-events: none;
}

.evolution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto;
}

.evolution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.evolution-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(154, 205, 50, 0.12);
    transform: translateX(4px);
}

.evolution-card-ongoing {
    background: linear-gradient(135deg, 
        rgba(154, 205, 50, 0.05) 0%, 
        var(--bg-card) 100%
    );
    border-color: rgba(154, 205, 50, 0.2);
}

.evolution-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.evolution-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #bce954 100%);
    color: #050608;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.3);
    transition: transform 0.3s ease;
}

.evolution-card:hover .evolution-number {
    transform: scale(1.1) rotate(5deg);
}

.evolution-title-wrap {
    flex: 1;
}

.evolution-title-wrap h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.evolution-duration {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(154, 205, 50, 0.1);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: 6px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evolution-description {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.evolution-deliverables {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.evolution-deliverables h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.evolution-deliverables ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
}

.evolution-deliverables li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.evolution-deliverables li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.evolution-activities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.activity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(154, 205, 50, 0.08);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.activity-badge:hover {
    background: rgba(154, 205, 50, 0.12);
    transform: translateY(-2px);
}

.activity-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.activity-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.evolution-note {
    max-width: 900px;
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(154, 205, 50, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.evolution-note svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.evolution-note p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .industries,
    .project-evolution {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .industry-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .evolution-card {
        padding: var(--spacing-lg);
    }
    
    .evolution-header {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .evolution-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .evolution-deliverables ul {
        grid-template-columns: 1fr;
    }
    
    .evolution-note {
        flex-direction: column;
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .industry-card,
    .evolution-card {
        padding: var(--spacing-md);
    }
    
    .industry-icon {
        width: 48px;
        height: 48px;
        padding: 10px;
    }
}

.approach {
    padding-top: 140px;
    padding-bottom: var(--spacing-3xl);
}

/* Approach Header */
.approach-header {
    margin-bottom: 3rem;
    position: relative;
    padding-top: 1.5rem;
}

.approach-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
}

.approach-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.approach-header h1 .highlight {
    color: var(--accent);
}

.approach-header > p {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 800px;
}

/* Approach Intro */
.approach-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.approach-intro h2 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-top: 0.5rem;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 65ch;
}

.intro-content p:last-child {
    margin-bottom: 0;
}

/* Methodology Wrapper */
.methodology-wrapper {
    margin-top: 5rem;
}

.methodology-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.methodology-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.methodology-header p {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Evolution Cards */
.evolution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.evolution-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(154, 205, 50, 0.2) 10%,
        rgba(154, 205, 50, 0.2) 90%,
        transparent 100%
    );
    z-index: 0;
}

.evolution-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.evolution-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 30px rgba(154, 205, 50, 0.12);
    transform: translateX(4px);
}

.evolution-card-ongoing {
    background: linear-gradient(135deg, 
        rgba(154, 205, 50, 0.05) 0%, 
        var(--bg-card) 100%
    );
    border-color: rgba(154, 205, 50, 0.2);
}

.evolution-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.evolution-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent) 0%, #bce954 100%);
    color: #050608;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.3);
    transition: transform 0.3s ease;
}

.evolution-card:hover .evolution-number {
    transform: scale(1.1) rotate(5deg);
}

.evolution-title-wrap {
    flex: 1;
}

.evolution-title-wrap h3 {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.evolution-duration {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(154, 205, 50, 0.1);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: 6px;
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.evolution-description {
    font-size: clamp(0.9375rem, 1.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
}

.evolution-deliverables {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.evolution-deliverables h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.evolution-deliverables ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xs);
}

.evolution-deliverables li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.evolution-deliverables li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.evolution-activities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.activity-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(154, 205, 50, 0.08);
    border: 1px solid rgba(154, 205, 50, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.activity-badge:hover {
    background: rgba(154, 205, 50, 0.12);
    transform: translateY(-2px);
}

.activity-badge svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

.activity-badge span {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-primary);
}

.evolution-note {
    max-width: 1200px;
    margin: var(--spacing-2xl) auto 0;
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(154, 205, 50, 0.05);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.evolution-note svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.evolution-note p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* SLA Section */
.sla {
    margin-top: 6rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sla-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.sla-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #ffffff;
    letter-spacing: -0.02em;
}

.sla-intro {
    font-size: clamp(1rem, 2vw, 1.125rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.sla-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: var(--spacing-xl);
}

.sla-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
}

.sla-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(154, 205, 50, 0.12);
}

.sla-card-featured {
    background: linear-gradient(135deg, 
        rgba(154, 205, 50, 0.05) 0%, 
        var(--bg-card) 100%
    );
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(154, 205, 50, 0.15);
}

.sla-badge {
    position: absolute;
    top: -12px;
    right: var(--spacing-lg);
    padding: 0.375rem 0.875rem;
    background: var(--accent);
    color: #050608;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(154, 205, 50, 0.3);
}

.sla-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    color: var(--accent);
    background: rgba(154, 205, 50, 0.1);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sla-card:hover .sla-icon {
    background: rgba(154, 205, 50, 0.15);
    transform: scale(1.05);
}

.sla-icon svg {
    width: 100%;
    height: 100%;
}

.sla-card h3 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.sla-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.sla-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    margin-top: auto;
}

.sla-card li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.sla-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .approach {
        padding-top: 100px;
    }
    
    .approach-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .methodology-wrapper {
        margin-top: 3rem;
    }
    
    .evolution-grid::before {
        left: 19px;
    }
    
    .evolution-card {
        padding: var(--spacing-lg);
    }
    
    .evolution-header {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .evolution-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .evolution-deliverables ul {
        grid-template-columns: 1fr;
    }
    
    .evolution-note {
        flex-direction: column;
        padding: var(--spacing-md);
    }
    
    .sla {
        margin-top: 4rem;
        padding-top: 3rem;
    }
    
    .sla-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .evolution-card {
        padding: var(--spacing-md);
    }
    
    .sla-card {
        padding: var(--spacing-md);
    }
    
    .sla-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
    }
}
.customer-map-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
    color: white;
}

.map-wrapper {
    max-width: 1200px;
    margin: 3rem auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    background: #0a0a0f;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#world-map {
    border-radius: 12px;
}

.jvectormap-container {
    border-radius: 12px !important;
}

.jvectormap-region {
    cursor: pointer;
    transition: fill 0.3s ease;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.legend-label {
    font-size: 0.9rem;
    color: #cbd5e1;
}

/* Responsive */
@media (max-width: 768px) {
    .customer-map-section {
        padding: 3rem 0;
    }
    
    #world-map {
        height: 400px !important;
    }
    
    .map-legend {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

#maintopicdiv {display:none !important; height: 0; padding: 0; margin: 0; overflow: hidden;}


.sidebar-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(154, 205, 50, 0.1);
}


