/*
Theme Name: Alfa Professional
Theme URI: https://alfaprofessional.eu
Author: Alfa Professional S.R.L. SB
Author URI: https://alfaprofessional.eu
Description: Tema ufficiale Alfa Professional - Tecnologie per l'educazione
Version: 1.0.11
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.1
License: Proprietary
Text Domain: alfaprofessional
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --background: #050B14;
    --surface: #0A1325;
    --surface-elevated: #121F3A;
    --primary: #FF6B35;
    --primary-hover: #E85D04;
    --secondary: #2563EB;
    --text-primary: #F8FAFC;
    --text-secondary: #94A3B8;
    --border: #1E293B;
    --glow: rgba(255, 107, 53, 0.3);
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    --max-w: 1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
    color: var(--text-primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

/* ============================================================
   SELECTION & FOCUS
   ============================================================ */
::selection {
    background: var(--primary);
    color: var(--text-primary);
}

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
    max-width: var(--max-w);
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ============================================================
   GLASS EFFECT
   ============================================================ */
.glass {
    background: rgba(5, 11, 20, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
}

.btn-primary svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
}

.btn-secondary:hover {
    border-color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.label-accent {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, #FF8C5A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-slate-300 { color: #CBD5E1; }
.text-slate-400 { color: #94A3B8; }
.text-slate-500 { color: #64748B; }

/* ============================================================
   CARDS
   ============================================================ */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, var(--primary) 0%, transparent 50%);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-border:hover::before {
    opacity: 1;
}

/* ============================================================
   FORM INPUTS
   ============================================================ */
.input-dark {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.input-dark:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.input-dark::placeholder {
    color: var(--text-secondary);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

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

.animate-marquee {
    animation: marquee 30s linear infinite;
    display: flex;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 768px) {
    .site-header .container {
        height: 5rem;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
}

@media (min-width: 768px) {
    .site-logo {
        font-size: 1.5rem;
    }
}

.site-logo .logo-alfa {
    color: var(--primary);
}

.site-logo .logo-professional {
    color: #fff;
}

/* Desktop Navigation */
.primary-nav {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .primary-nav {
        display: flex;
    }
}

.primary-nav a {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #CBD5E1;
    transition: color 0.3s ease;
    text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a.active {
    color: #fff;
}

/* Header CTA */
.header-cta-wrap {
    display: none;
}

.header-cta-wrap .btn-primary {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

@media (min-width: 1024px) {
    .header-cta-wrap {
        display: block;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu.is-open {
    display: block;
}

@media (min-width: 1024px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu nav a {
    font-size: 1rem;
    font-weight: 500;
    color: #CBD5E1;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    text-decoration: none;
}

.mobile-menu nav a:hover {
    color: #fff;
}

.mobile-menu .btn-primary {
    text-align: center;
    margin-top: 0.5rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #050B14, rgba(5, 11, 20, 0.9), rgba(5, 11, 20, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 5rem 0 5rem;
    max-width: 48rem;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 8rem 0 8rem;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: #CBD5E1;
    line-height: 1.5;
    margin-bottom: 2.5rem;
    max-width: 42rem;
}

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

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

@media (min-width: 768px) {
    .hero-stat-number {
        font-size: 2.25rem;
    }
}

.hero-stat-label {
    font-size: 0.875rem;
    color: #94A3B8;
    margin-top: 0.25rem;
}

/* ============================================================
   VALUE / CHI SIAMO SECTION
   ============================================================ */
.value-section {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .value-section {
        padding: 8rem 0;
    }
}

.value-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
}

.value-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 4px solid rgba(255, 107, 53, 0.2);
}

.value-image-wrap img {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.value-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #050B14, transparent);
}

.values-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.value-card-mini {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card-mini svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.value-card-mini h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.value-card-mini p {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.benefit-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 2rem;
}

.benefit-box h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.benefit-item svg {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-item span {
    color: #CBD5E1;
    font-size: 0.9375rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 5rem 0;
    background: var(--surface);
}

@media (min-width: 768px) {
    .services-section {
        padding: 8rem 0;
    }
}

.section-header {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-desc {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.75;
}

/* Bento Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card.featured {
    grid-column: span 2;
}

@media (min-width: 1024px) {
    .service-card.featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

.service-card-image {
    position: relative;
    overflow: hidden;
    height: 12rem;
}

.service-card.featured .service-card-image {
    height: 16rem;
}

@media (min-width: 1024px) {
    .service-card.featured .service-card-image {
        height: 20rem;
    }
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #121F3A, rgba(18, 31, 58, 0.5), transparent);
}

.service-card-icon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.service-card-body {
    padding: 1.5rem;
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.service-card-desc {
    color: #94A3B8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-tag {
    font-size: 0.75rem;
    background: var(--surface);
    color: #CBD5E1;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-card-link:hover {
    gap: 0.75rem;
    color: var(--primary);
}

.service-card-link svg {
    width: 1rem;
    height: 1rem;
}

.service-card-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    background: linear-gradient(to right, transparent, rgba(255, 107, 53, 0.05), transparent);
}

.service-card:hover .service-card-glow {
    opacity: 1;
}

/* ============================================================
   FUTURE / ALFA NEXT SECTION
   ============================================================ */
.future-section {
    padding: 5rem 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .future-section {
        padding: 8rem 0;
    }
}

.future-bg-orb-1 {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.future-bg-orb-2 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 24rem;
    height: 24rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
    pointer-events: none;
}

.future-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}

.future-section-badge svg {
    width: 1rem;
    height: 1rem;
    color: var(--primary);
}

.future-feature-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 4rem;
}

.future-feature-image img {
    width: 100%;
    height: 18.75rem;
    object-fit: cover;
    transition: transform 0.7s ease;
}

@media (min-width: 768px) {
    .future-feature-image img {
        height: 25rem;
    }
}

.future-feature-image:hover img {
    transform: scale(1.05);
}

.future-feature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #050B14, rgba(5, 11, 20, 0.8), transparent);
}

.future-feature-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 2rem;
}

@media (min-width: 768px) {
    .future-feature-content {
        padding: 4rem;
    }
}

.future-feature-content .inner {
    max-width: 36rem;
}

.future-feature-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .future-feature-content h3 {
        font-size: 1.875rem;
    }
}

.future-feature-content p {
    color: #CBD5E1;
    font-size: 1.125rem;
}

.future-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .future-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .future-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.future-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.future-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.future-card-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.future-card-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    color: #fff;
}

.future-card-icon.purple { background: linear-gradient(135deg, #A855F7, #EC4899); }
.future-card-icon.cyan   { background: linear-gradient(135deg, #06B6D4, #3B82F6); }
.future-card-icon.orange { background: linear-gradient(135deg, #F97316, #EF4444); }
.future-card-icon.green  { background: linear-gradient(135deg, #22C55E, #10B981); }
.future-card-icon.yellow { background: linear-gradient(135deg, #EAB308, #F97316); }

.future-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.future-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.7;
}

.future-card-hover-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 8rem;
    height: 8rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.future-card:hover .future-card-hover-glow {
    opacity: 1;
}

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects-section {
    padding: 5rem 0;
    background: var(--surface);
}

@media (min-width: 768px) {
    .projects-section {
        padding: 8rem 0;
    }
}

.projects-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .projects-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-card-image {
    position: relative;
    height: 12rem;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.1);
}

.project-card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #121F3A, transparent);
}

.project-card-body {
    padding: 1.5rem;
}

.project-card-category {
    color: var(--primary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    margin-bottom: 0.5rem;
}

.project-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-card-desc {
    color: #94A3B8;
    font-size: 0.875rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Skeleton Loader */
.project-skeleton {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.project-skeleton-img {
    height: 12rem;
    background: var(--border);
}

.project-skeleton-body {
    padding: 1.5rem;
}

.project-skeleton-line {
    background: var(--border);
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

/* Empty State */
.projects-empty {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    grid-column: 1 / -1;
}

.projects-empty svg {
    width: 3rem;
    height: 3rem;
    color: #64748B;
    margin: 0 auto 1rem;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners-section {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .partners-section {
        padding: 8rem 0;
    }
}

.partner-types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .partner-types-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .partner-types-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.partner-type-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: default;
}

.partner-type-card:hover {
    border-color: rgba(255, 107, 53, 0.5);
}

.partner-type-card svg {
    width: 2.5rem;
    height: 2.5rem;
    color: #64748B;
    margin: 0 auto 0.75rem;
    transition: color 0.3s ease;
}

.partner-type-card:hover svg {
    color: var(--primary);
}

.partner-type-card span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.partner-type-card:hover span {
    color: #fff;
}

/* Marquee */
.partners-marquee-wrap {
    margin-top: 4rem;
    overflow: hidden;
}

.partners-marquee {
    display: flex;
    animation: marquee 30s linear infinite;
}

.partners-marquee-set {
    display: flex;
    gap: 2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.partner-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(10, 19, 37, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color 0.3s ease;
}

a.partner-pill {
    cursor: pointer;
}

a.partner-pill:hover {
    border-color: var(--text-secondary);
}

.partner-pill-avatar {
    width: 2rem;
    height: 2rem;
    background: var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-pill-avatar span {
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 700;
}

.partner-pill-name {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.partners-cta {
    text-align: center;
    margin-top: 4rem;
}

.partners-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 5rem 0;
    background: var(--surface);
}

@media (min-width: 768px) {
    .contact-section {
        padding: 8rem 0;
    }
}

.contact-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #fff;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .contact-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .contact-title {
        font-size: 3.75rem;
    }
}

.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.contact-form-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.contact-form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.25rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1rem;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
}

.contact-form textarea {
    resize: none;
    min-height: 8rem;
}

.contact-form .form-error {
    color: #EF4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.contact-form .form-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: #86EFAC;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.contact-form .form-submit-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: #FCA5A5;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: var(--primary-hover);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-submit svg {
    width: 1.25rem;
    height: 1.25rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-info-item h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--primary);
}

.contact-company-box {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.5rem;
    margin-top: 2rem;
}

.contact-company-box h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.contact-company-box p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--background);
    border-top: 1px solid var(--border);
}

.site-footer .inner {
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-brand small {
    color: #64748B;
    font-size: 0.75rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
}

.footer-col h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul a {
    color: var(--text-secondary);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    gap: 1rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        gap: 0;
    }
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
}

.scroll-to-top {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.scroll-to-top:hover {
    background: var(--primary-hover);
}

.scroll-to-top svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #fff;
}

/* ============================================================
   WORDPRESS CONTENT AREA
   ============================================================ */
.entry-content {
    color: var(--text-primary);
    line-height: 1.75;
    max-width: 65ch;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.entry-content p {
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.entry-content ul,
.entry-content ol {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: #CBD5E1;
}

.entry-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* Page wrapper for inner pages */
.page-wrap {
    padding-top: 5rem;
    min-height: 100vh;
}

.page-header {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.page-content-wrap {
    padding: 3rem 0 5rem;
}

/* ============================================================
   ADMIN NOTICES (WP)
   ============================================================ */
.wp-notice {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.wp-notice-success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #86EFAC;
}

.wp-notice-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

/* ============================================================
   RESPONSIVE HELPERS
   ============================================================ */
@media (max-width: 639px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 640px) {
    .hide-desktop { display: none !important; }
}

/* ============================================================
   ITS MONITOR — PROMO SECTION (homepage)
   ============================================================ */
.its-monitor-section {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .its-monitor-section {
        padding: 8rem 0;
    }
}

.its-monitor-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .its-monitor-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.its-monitor-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    color: #fff;
    margin: 1rem 0 1.5rem;
}

@media (min-width: 768px) {
    .its-monitor-title {
        font-size: 3rem;
    }
}

.its-monitor-desc {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.its-monitor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.its-monitor-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.its-monitor-link:hover {
    gap: 0.75rem;
    color: var(--primary);
}

.its-monitor-link svg {
    width: 1rem;
    height: 1rem;
}

.its-monitor-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.its-monitor-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.its-monitor-image-wrap:hover img {
    transform: scale(1.02);
}

.its-monitor-image-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 35%;
    background: linear-gradient(to top, var(--background), transparent);
    pointer-events: none;
}

/* ============================================================
   ITS MONITOR — PAGE TEMPLATE (page-its-monitor.php)
   ============================================================ */
.itsmtr-page {
    padding-top: 4rem;
}

/* Hero */
.itsmtr-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--background);
    overflow: hidden;
    padding: 6rem 0 4rem;
}

.itsmtr-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 107, 53, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 107, 53, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.itsmtr-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(3rem);
}

.itsmtr-hero-orb--1 {
    top: -20%;
    right: -10%;
    width: 40rem;
    height: 40rem;
    background: rgba(255, 107, 53, 0.08);
}

.itsmtr-hero-orb--2 {
    bottom: -10%;
    left: -10%;
    width: 30rem;
    height: 30rem;
    background: rgba(37, 99, 235, 0.06);
}

.itsmtr-hero-inner {
    position: relative;
    z-index: 1;
}

.itsmtr-hero-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: var(--radius-full);
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.itsmtr-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    max-width: 760px;
}

.itsmtr-hero-sub {
    font-size: 1.125rem;
    color: #CBD5E1;
    line-height: 1.75;
    max-width: 620px;
    margin-bottom: 2.5rem;
}

.itsmtr-hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Features */
.itsmtr-features {
    padding: 5rem 0;
    background: var(--surface);
}

@media (min-width: 768px) {
    .itsmtr-features {
        padding: 8rem 0;
    }
}

.itsmtr-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .itsmtr-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .itsmtr-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.itsmtr-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.itsmtr-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.itsmtr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.3);
}

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

.itsmtr-card-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.itsmtr-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.itsmtr-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Advanced features */
.itsmtr-advanced {
    padding: 5rem 0;
    background: var(--background);
}

@media (min-width: 768px) {
    .itsmtr-advanced {
        padding: 8rem 0;
    }
}

.itsmtr-advanced .section-title,
.itsmtr-advanced .section-desc {
    max-width: 640px;
}

.itsmtr-features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .itsmtr-features-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.itsmtr-feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.itsmtr-feature-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 7px;
    flex-shrink: 0;
    box-shadow: 0 0 8px var(--glow);
}

.itsmtr-feature-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.itsmtr-feature-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.itsmtr-norm-box {
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-xl);
    padding: 2rem 2.5rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.itsmtr-norm-icon {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.itsmtr-norm-box h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.itsmtr-norm-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
    max-width: 700px;
}

.itsmtr-norm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.itsmtr-norm-tag {
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.25);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    letter-spacing: 0.06em;
}

/* ============================================================
   FILIERA 4+2 — PAGE TEMPLATE (page-filiera-4-2.php)
   ============================================================ */
.filiera42-page {
    padding-top: 4rem;
}

.filiera42-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
    max-width: 480px;
}

@media (min-width: 768px) {
    .filiera42-hero-stats {
        gap: 1.5rem;
    }
}

.filiera42-stat {
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: var(--radius-lg);
    padding: 1rem;
    text-align: center;
}

.filiera42-stat-num {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.filiera42-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.3;
}

.filiera42-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 3rem 0 0;
}

