/* Stili specifici di chi-sono.php.
   Estratto il 2026-08-25 dal blocco inline nella pagina. */

:root {
            --primary: #fcb321;
            --primary-dark: #e5a01e;
            --secondary: #000222;
            --text: #000222;
            --text-light: #64748b;
            --white: #ffffff;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
            --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }

        body {
            font-family: 'Lato', sans-serif;
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
            background: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; height: auto; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

        /* ============================================
           HEADER
        ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: var(--shadow-lg);
        }

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

        .logo img { height: 48px; transition: all 0.3s; }

        .nav { display: flex; align-items: center; gap: 12px; margin-left: auto; }

        .nav a {
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 0.95rem;
            color: var(--text);
            position: relative;
            padding: 11px;
            transition: all 0.3s;
        }

        .nav a:not(.btn-nav)::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s;
            transform: translateX(-50%);
        }

        .nav a:not(.btn-nav):hover::after { width: 100%; }

        .btn-nav {
            background: var(--primary);
            color: var(--secondary) !important;
            padding: 18px 48px;
            border-radius: 100px;
            font-weight: 700;
            font-size: 1rem;
            box-shadow: 0 4px 20px rgba(252, 179, 33, 0.5);
            transition: all 0.3s;
            letter-spacing: 0.3px;
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(252, 179, 33, 0.5);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            padding: 10px;
            z-index: 100;
        }

        .menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Menu toggle animation */
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* Mega Menu */
        .nav-item { position: relative; }
        .nav-item > a { display: flex; align-items: center; gap: 6px; }
        .nav-item > a svg { width: 12px; height: 12px; transition: transform 0.3s; }
        .nav-item:hover > a svg { transform: rotate(180deg); }

        .mega-menu {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(0, 2, 34, 0.15), 0 10px 30px rgba(0, 2, 34, 0.1);
            min-width: 320px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            overflow: hidden;
        }
        .nav-item:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }
        .mega-menu-inner {
            padding: 20px;
        }
        .mega-menu-title {
            font-family: 'Poppins', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
            margin-bottom: 16px;
            padding-left: 12px;
        }
        .mega-menu-items {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }
        .mega-menu-item {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 12px;
            border-radius: 12px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }
        .mega-menu-item::after { display: none !important; }
        .mega-menu-item:hover {
            background: linear-gradient(135deg, rgba(252, 179, 33, 0.08) 0%, rgba(252, 179, 33, 0.02) 100%);
            transform: translateX(4px);
        }
        .mega-menu-item:hover .mega-menu-icon {
            background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
            transform: scale(1.05);
        }
        .mega-menu-item:hover .mega-menu-icon svg { stroke: var(--secondary); }
        .mega-menu-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(252, 179, 33, 0.15) 0%, rgba(252, 179, 33, 0.05) 100%);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .mega-menu-icon svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary-dark);
            transition: all 0.3s;
        }
        .mega-menu-text { flex: 1; min-width: 0; }
        .mega-menu-text strong {
            display: block;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--text);
        }
        .mega-menu-text span {
            display: block;
            font-size: 0.75rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        /* ============================================
           HERO CHI SONO
        ============================================ */
        .hero-page {
            padding: 180px 0 100px;
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .hero-page::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(252, 179, 33, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(252, 179, 33, 0.1) 0%, transparent 40%);
        }

        .hero-page-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .hero-page-text h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: var(--white);
            margin-bottom: 16px;
        }

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

        .hero-page-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 24px;
            font-weight: 300;
        }

        .hero-page-info {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-bottom: 32px;
        }

        .hero-page-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
        }

        .hero-page-info-item svg {
            color: var(--primary);
        }

        .hero-page-image {
            position: relative;
        }

        .hero-page-image img {
            width: 100%;
            max-width: 450px;
            border-radius: 24px;
            box-shadow: var(--shadow-2xl);
        }

        .hero-page-badge {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
            color: var(--secondary);
            padding: 24px 32px;
            border-radius: 20px;
            text-align: center;
            box-shadow: var(--shadow-xl);
        }

        .hero-page-badge-number {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            font-weight: 800;
            display: block;
            line-height: 1;
        }

        .hero-page-badge-text {
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* ============================================
           BUTTONS
        ============================================ */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            border: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
            color: var(--secondary);
            box-shadow: 0 8px 30px rgba(252, 179, 33, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(252, 179, 33, 0.5);
        }

        .btn-outline-light {
            background: transparent;
            color: var(--white);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .btn-outline-light:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: rgba(252, 179, 33, 0.1);
        }

        /* ============================================
           SECTION STYLES
        ============================================ */
        .section { padding: 120px 0; }

        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, rgba(252, 179, 33, 0.1) 0%, rgba(252, 179, 33, 0.05) 100%);
            color: var(--primary-dark);
            padding: 10px 24px;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: clamp(2rem, 4vw, 2.75rem);
            color: var(--secondary);
            margin-bottom: 16px;
        }

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

        /* ============================================
           ABOUT BIO
        ============================================ */
        .bio-section {
            background: var(--gray-50);
        }

        .bio-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }

        .bio-text h3 {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .bio-text p {
            color: var(--text-light);
            font-size: 1.05rem;
            margin-bottom: 20px;
            line-height: 1.9;
        }

        .bio-text p:last-child {
            margin-bottom: 0;
        }

        .bio-info {
            background: var(--white);
            border-radius: 24px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
        }

        .bio-info h3 {
            font-size: 1.3rem;
            color: var(--secondary);
            margin-bottom: 24px;
            padding-bottom: 16px;
            border-bottom: 2px solid var(--gray-100);
        }

        .bio-info-item {
            display: flex;
            justify-content: space-between;
            padding: 16px 0;
            border-bottom: 1px solid var(--gray-100);
        }

        .bio-info-item:last-child {
            border-bottom: none;
        }

        .bio-info-label {
            font-weight: 600;
            color: var(--secondary);
        }

        .bio-info-value {
            color: var(--text-light);
        }

        /* ============================================
           TIMELINE
        ============================================ */
        .timeline-section {
            background: var(--gray-50);
        }

        .timeline {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            max-width: 960px;
            margin: 0 auto;
        }

        .timeline-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--white);
            padding: 20px 24px;
            border-radius: 16px;
            border: 1px solid var(--gray-200);
            border-left: 3px solid var(--primary);
            box-shadow: var(--shadow-sm);
            transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                        box-shadow 0.35s cubic-bezier(.25,.8,.25,1),
                        border-color 0.35s;
            position: relative;
        }

        .timeline-item:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(252, 179, 33, 0.12), var(--shadow-lg);
            border-color: rgba(252, 179, 33, 0.3);
            border-left-color: var(--primary);
        }

        .timeline-icon {
            flex-shrink: 0;
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, rgba(252,179,33,0.12), rgba(252,179,33,0.04));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.35s cubic-bezier(.25,.8,.25,1);
        }

        .timeline-icon svg {
            transition: stroke 0.35s, transform 0.35s;
        }

        .timeline-item:hover .timeline-icon {
            background: linear-gradient(135deg, var(--primary), #ffd166);
            box-shadow: 0 4px 12px rgba(252, 179, 33, 0.3);
        }

        .timeline-item:hover .timeline-icon svg {
            stroke: var(--secondary);
            transform: scale(1.1);
        }

        .timeline-content {
            flex: 1;
            min-width: 0;
        }

        .timeline-date {
            display: inline-block;
            background: var(--secondary);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 100px;
            font-family: 'Poppins', sans-serif;
            font-size: 0.65rem;
            font-weight: 700;
            letter-spacing: 0.5px;
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .timeline-content h4 {
            font-family: 'Poppins', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 4px;
        }

        .timeline-content p {
            color: var(--text-light);
            font-size: 0.85rem;
            line-height: 1.5;
        }

        /* ============================================
           SKILLS
        ============================================ */
        .skills-section {
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .skills-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 10% 50%, rgba(252, 179, 33, 0.1) 0%, transparent 40%),
                radial-gradient(circle at 90% 50%, rgba(252, 179, 33, 0.1) 0%, transparent 40%);
        }

        .skills-section .section-header h2 {
            color: var(--white);
        }

        .skills-section .section-header p {
            color: rgba(255, 255, 255, 0.95);
        }

        .skills-section .section-tag {
            background: rgba(252, 179, 33, 0.2);
            color: var(--primary);
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .skill-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s;
        }

        .skill-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .skill-name {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            color: var(--white);
            font-size: 1.1rem;
        }

        .skill-percentage {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--primary);
            font-size: 1.1rem;
        }

        .skill-bar {
            height: 8px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 100px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background: linear-gradient(90deg, var(--primary) 0%, #ffd166 100%);
            border-radius: 100px;
            width: 0;
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* ============================================
           CERTIFICATIONS
        ============================================ */
        .certifications-section {
            background: var(--white);
        }

        .cert-category-title {
            text-align: center;
            font-family: 'Poppins', sans-serif;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: var(--primary-dark);
            margin-bottom: 24px;
        }

        .cert-category-title:not(:first-of-type) {
            margin-top: 48px;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1000px;
            margin: 0 auto 40px;
        }

        .certifications-grid.cols-3 {
            grid-template-columns: repeat(3, 1fr);
            max-width: 820px;
        }

        .cert-card {
            background: var(--gray-50);
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            border: 1px solid var(--gray-200);
            box-shadow: 0 2px 8px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .cert-card:hover {
            transform: translateY(-6px);
            border-color: rgba(252, 179, 33, 0.4);
            box-shadow: 0 8px 30px rgba(252, 179, 33, 0.12);
        }

        .cert-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            transition: transform 0.3s ease;
        }

        .cert-badge:hover {
            transform: scale(1.08);
        }

        .cert-badge img {
            width: 100px;
            height: 100px;
            object-fit: contain;
        }

        .cert-subcategory-title {
            text-align: center;
            color: var(--text-light);
            font-size: 0.95rem;
            margin: 1.5rem 0 0.75rem;
            font-weight: 500;
        }

        .cert-badge.cert-badge-wide img {
            width: 160px;
            height: auto;
        }

        .cert-card h4 {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 4px;
            line-height: 1.3;
        }

        .cert-card p {
            color: var(--text-light);
            font-size: 0.78rem;
            margin-top: 6px;
        }

        .cert-card .cert-verify {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 10px;
            font-size: 0.72rem;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.2s;
        }

        .cert-card .cert-verify:hover {
            color: var(--primary-dark);
        }

        .cert-card .cert-verify svg {
            width: 12px;
            height: 12px;
        }

        /* Google Partner special card */
        .cert-partner-card {
            grid-column: 1 / -1;
            max-width: 400px;
            margin: 0 auto 40px;
            background: var(--gray-50);
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            border: 2px solid rgba(252, 179, 33, 0.3);
            box-shadow: 0 4px 20px rgba(252, 179, 33, 0.12);
            transition: all 0.3s ease;
        }

        .cert-partner-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(252, 179, 33, 0.15);
        }

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

        @media (max-width: 480px) {
            .certifications-grid,
            .certifications-grid.cols-3 {
                grid-template-columns: 1fr;
            }
        }

        /* ============================================
           CTA
        ============================================ */
        .cta {
            padding: 120px 0;
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }

        .cta::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(252, 179, 33, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 50%, rgba(252, 179, 33, 0.1) 0%, transparent 40%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta p {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            margin-bottom: 40px;
            line-height: 1.8;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            background: var(--secondary);
            color: var(--white);
            padding: 100px 0 40px;
            position: relative;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(252, 179, 33, 0.3), transparent);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
        }

        .footer-brand img {
            height: 56px;
            margin-bottom: 24px;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.95);
            line-height: 1.9;
            margin-bottom: 28px;
            font-size: 0.95rem;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social a {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: all 0.3s;
        }

        .footer-social a:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--secondary);
            transform: translateY(-3px);
        }

        .footer-column h4 {
            font-size: 1.1rem;
            margin-bottom: 28px;
            color: var(--white);
            position: relative;
            padding-bottom: 12px;
        }

        .footer-column h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .footer-column ul { list-style: none; }
        .footer-column li { margin-bottom: 14px; }

        .footer-column a {
            color: rgba(255, 255, 255, 0.95);
            font-size: 0.95rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-column a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .footer-partner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
            padding: 40px 0;
            margin: 40px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-partner img {
            height: 100px;
            transition: transform 0.3s;
        }

        .footer-partner img:hover {
            transform: scale(1.05);
        }

        .footer-partner p {
            color: rgba(255, 255, 255, 0.8);
            font-family: 'Poppins', sans-serif;
            font-weight: 500;
            font-size: 1rem;
        }

        /* ============================================
           TESTIMONIALS / RECENSIONI
        ============================================ */
        .testimonials {
            padding: 100px 0;
            background: var(--gray-50);
            position: relative;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
        }

        .testimonials-widget {
            margin-top: 40px;
            min-height: 300px;
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1024px) {
            .hero-page-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
            .hero-page-image { order: -1; }
            .hero-page-image img { max-width: 350px; margin: 0 auto; display: block; }
            .hero-page-badge { left: 50%; transform: translateX(-50%); bottom: -30px; }
            .hero-page-info { justify-content: center; }
            .bio-content { grid-template-columns: 1fr; gap: 40px; }
            .skills-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
            .footer-brand { grid-column: 1 / -1; }
        }

        @media (max-width: 768px) {
            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                max-width: 400px;
                height: 100vh;
                background: var(--secondary);
                flex-direction: column;
                justify-content: flex-start;
                align-items: stretch;
                gap: 0;
                padding: 100px 24px 40px;
                transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                overflow-y: auto;
                z-index: 99;
            }

            .nav.active { right: 0; }

            .nav > a,
            .nav > .nav-item > a {
                color: var(--white) !important;
                font-size: 1.1rem;
                padding: 16px 0;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }

            .nav > a:last-child {
                margin-top: 24px;
                border-bottom: none;
            }

            .nav-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
            .nav-item > a svg { stroke: var(--white); }
            .mega-menu {
                position: static;
                transform: none;
                background: rgba(255,255,255,0.05);
                border-radius: 12px;
                box-shadow: none;
                width: 100%;
                min-width: auto;
                opacity: 1;
                visibility: visible;
                display: none;
                margin: 8px 0 12px;
            }
            .mega-menu-inner { padding: 12px; }
            .nav-item.open .mega-menu { display: block; }
            .nav-item.open > a svg { transform: rotate(180deg); }
            .mega-menu-items { gap: 2px; }
            .mega-menu-item { padding: 10px 12px; border-radius: 8px; }
            .mega-menu-item:hover { background: rgba(255,255,255,0.1); transform: none; }
            .mega-menu-icon { width: 32px; height: 32px; background: rgba(252, 179, 33, 0.2); }
            .mega-menu-icon svg { stroke: var(--primary); width: 18px; height: 18px; }
            .mega-menu-text strong { color: rgba(255,255,255,0.95); font-size: 0.85rem; }
            .mega-menu-text span { display: none; }

            .menu-toggle { display: flex; z-index: 101; }

            /* Mobile menu overlay */
            .nav-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0, 2, 34, 0.5);
                backdrop-filter: blur(4px);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s;
                z-index: 98;
            }

            .nav-overlay.active {
                opacity: 1;
                visibility: visible;
            }

            .hero-page { padding: 120px 0 60px; }
            .hero-page-content { gap: 32px; }
            .hero-page-subtitle { font-size: 1.1rem; }
            .hero-page-image img { max-width: 280px; }
            .hero-page-badge { padding: 16px 24px; }
            .hero-page-badge-number { font-size: 2rem; }
            .hero-page-info { gap: 12px; }
            .hero-page-info-item { font-size: 0.85rem; }

            .section { padding: 80px 0; }
            .section-header { margin-bottom: 40px; }

            .bio-content { gap: 32px; }
            .bio-info { padding: 28px 20px; }
            .bio-info-item { flex-direction: column; gap: 4px; }
            .bio-text h3 { font-size: 1.3rem; }

            .timeline { grid-template-columns: 1fr; max-width: 480px; }
            .timeline-item { padding: 16px; }

            .skill-item { padding: 24px; }

            .cta { padding: 80px 0; }
            .cta p { font-size: 1.05rem; }

            .btn { padding: 14px 28px; font-size: 0.95rem; }
            .btn-nav { padding: 14px 28px; }

            .footer-grid { grid-template-columns: 1fr; gap: 40px; }
            .footer-bottom { flex-direction: column; text-align: center; }

            .cert-badge img { width: 80px; height: 80px; }
            .cert-card { padding: 20px 16px; }
        }

        @media (max-width: 480px) {
            .hero-page { padding: 100px 0 50px; }
            .hero-page-text h1 { font-size: 1.8rem; }
            .hero-page-subtitle { font-size: 1rem; margin-bottom: 16px; }
            .hero-page-image img { max-width: 220px; }
            .hero-page-badge { padding: 12px 20px; bottom: -20px; }
            .hero-page-badge-number { font-size: 1.6rem; }
            .hero-page-badge-text { font-size: 0.75rem; }
            .hero-page-info-item { font-size: 0.8rem; }

            .section { padding: 60px 0; }
            .section-header h2 { font-size: 1.5rem; }
            .section-header p { font-size: 0.95rem; }
            .section-tag { font-size: 0.75rem; padding: 8px 16px; }

            .bio-text p { font-size: 0.95rem; }
            .bio-info { padding: 24px 16px; border-radius: 16px; }

            .timeline-item { padding: 14px 12px; gap: 12px; }
            .timeline-icon { width: 40px; height: 40px; }
            .timeline-icon svg { width: 20px; height: 20px; }
            .timeline-content h4 { font-size: 0.85rem; }
            .timeline-content p { font-size: 0.8rem; }
            .timeline-date { font-size: 0.6rem; }

            .skill-item { padding: 20px 16px; }
            .skill-name { font-size: 0.95rem; }
            .skill-percentage { font-size: 0.95rem; }

            .cert-badge img { width: 64px; height: 64px; }
            .cert-badge.cert-badge-wide img { width: 120px; }
            .cert-card h4 { font-size: 0.8rem; }

            .btn { padding: 12px 24px; font-size: 0.9rem; width: 100%; justify-content: center; }

            .cta { padding: 60px 0; }
            .cta h2 { font-size: 1.5rem; }
            .cta p { font-size: 0.95rem; margin-bottom: 28px; }

            .footer { padding: 60px 0 30px; }
            .footer-grid { gap: 32px; }
            .footer-column h4 { font-size: 1rem; margin-bottom: 20px; }
            .footer-partner img { height: 70px; }
        }

        @media (max-width: 360px) {
            .hero-page { padding: 90px 0 40px; }
            .hero-page-text h1 { font-size: 1.5rem; }
            .hero-page-info { flex-direction: column; gap: 8px; align-items: center; }
            .container { padding: 0 16px; }
            .bio-info { padding: 20px 12px; }
            .btn { padding: 12px 20px; font-size: 0.85rem; }
        }

        /* ============================================
           NUMBERS / COUNTERS
        ============================================ */
        .numbers-section {
            background: var(--secondary);
            position: relative;
            overflow: hidden;
        }
        .numbers-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(circle at 30% 50%, rgba(252, 179, 33, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(252, 179, 33, 0.08) 0%, transparent 40%);
        }
        .numbers-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
        }
        .number-item {
            padding: 32px 16px;
        }
        .number-value {
            font-family: 'Poppins', sans-serif;
            font-size: clamp(2.5rem, 4vw, 3.5rem);
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary) 0%, #ffd166 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 8px;
        }
        .number-label {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95rem;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .numbers-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
        }
        @media (max-width: 480px) {
            .numbers-grid { grid-template-columns: 1fr; gap: 16px; }
        }

        /* ============================================
           W3SCHOOLS COLLAPSIBLE
        ============================================ */
        #w3s-certs.w3s-collapsed .w3s-extra {
            display: none;
        }
        .w3s-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin: 24px auto 0;
            padding: 12px 28px;
            background: transparent;
            border: 2px solid var(--primary);
            border-radius: 100px;
            color: var(--primary);
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .w3s-toggle:hover {
            background: var(--primary);
            color: var(--secondary);
        }
        .w3s-toggle svg {
            width: 16px;
            height: 16px;
            transition: transform 0.3s;
        }
        .w3s-toggle.expanded svg {
            transform: rotate(180deg);
        }

        /* FADE-IN-UP ANIMATIONS */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }
