/* ── TOP CLIENTS STRIP ── */
.top-clients {
    background: var(--black-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 2rem 0;
    overflow: hidden;
}
.top-clients-label {
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.top-clients-track {
    display: flex;
    align-items: center;
    gap: 3rem;
    animation: marquee 40s linear infinite;
    width: max-content;
}
.top-clients-track img {
    height: 90px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s ease;
}
.top-clients-track img:hover {
    opacity: 0.8;
    filter: grayscale(0%) brightness(1);
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── FEATURED CASE STUDIES ── */
.featured {
    padding: 8rem 3rem;
    background: var(--black);
}
.featured-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.featured-slide {
    display: none;
    gap: 4rem;
    align-items: center;
}
.featured-slide.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: fadeSlideIn 0.6s ease;
}
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
.featured-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
}
.featured-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.featured-image-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2px;
}
.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.featured-big-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(4rem, 8vw, 7rem);
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
}
.featured-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 1.5rem;
}
.featured-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 2rem;
}
.featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    transition: gap 0.3s ease;
}
.featured-cta:hover { gap: 1rem; }
.featured-cta::after { content: '\2192'; }

/* Featured nav */
.featured-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}
.featured-nav-btn {
    background: var(--gray-dark);
    border: none;
    color: var(--white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.featured-nav-btn:hover { background: var(--red); }
.featured-dots {
    display: flex;
    gap: 0.4rem;
}
.featured-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    background-clip: content-box;
    -webkit-background-clip: content-box;
}
.featured-dot.active {
    background: var(--red);
    background-clip: content-box;
    -webkit-background-clip: content-box;
    width: 24px;
    border-radius: 4px;
}

/* ── ABOUT SECTION ── */
.about {
    padding: 8rem 3rem;
    background: var(--black-soft);
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-text p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}
.about-text p strong { color: var(--white); font-weight: 600; }
.about-images {
    position: relative;
}
.about-images img:first-child {
    width: 85%;
    border-radius: 4px;
}
.about-images img:last-child {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: 4px;
    border: 4px solid var(--black-soft);
}
.about-deco {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 60px;
    height: 60px;
    border: 2px solid var(--red);
    opacity: 0.3;
}

/* ── STATS ── */
.stats {
    padding: 5rem 3rem;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.stat-box {
    text-align: center;
    padding: 2.5rem 1rem;
}
.stat-value {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-value .red { color: var(--red); }
.stat-label {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ── SERVICES GRID ── */
.services-section {
    padding: 8rem 3rem;
    background: var(--black-soft);
}
.services-section-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    gap: 2rem;
}
.services-header-text {
    max-width: 600px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background: var(--black-card);
    transition: transform 0.4s var(--transition);
}
.service-card:hover { transform: translateY(-6px); }
.service-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.6s var(--transition);
}
.service-card:hover .service-card-image { transform: scale(1.05); }
.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
}
.service-card-number {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: var(--red);
}
.service-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}
.service-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.service-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray);
}
.service-card-arrow {
    display: none;
}

/* ── PHILOSOPHY ── */
.philosophy {
    position: relative;
    padding: 0;
    overflow: hidden;
}
.philosophy-image {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.philosophy-image img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.35);
    will-change: transform;
}
.philosophy-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 30%, var(--black) 100%);
}
.philosophy-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 5rem;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
}
.philosophy-big-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.philosophy-big-text .stroke {
    -webkit-text-stroke: 1.5px var(--white);
    color: transparent;
}
.philosophy-big-text .red { color: var(--red); }
.philosophy-desc {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 2;
    color: var(--gray-light);
}
.philosophy-desc .highlight {
    color: var(--white);
    font-weight: 600;
}

/* ── PROCESS ── */
.process {
    background: var(--black-card);
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), transparent);
}
.process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-dark), var(--gray-dark), transparent);
}
.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}
.process-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1.5px solid var(--gray-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--red);
    background: var(--black-card);
    transition: all 0.5s var(--transition);
}
.process-step:hover .process-number {
    border-color: var(--red);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.15);
    transform: translateY(-4px);
}
.process-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    color: var(--white);
}
.process-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ── TEAM DIFFERENTIATORS ── */
.team-strip {
    padding: 5rem 3rem;
    background: var(--black-soft);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.team-strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.team-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--black-card);
    border-radius: 4px;
    transition: transform 0.4s var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-card-icon {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 1.5rem;
}
.team-card-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 1rem;
}
.team-card-desc {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--gray);
}

/* ── TESTIMONIALS (homepage custom) ── */
.home-testimonials {
    position: relative;
    background: var(--black-card);
    padding: 8rem 3rem;
    overflow: hidden;
}
.home-testimonials-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.home-testimonials .trustpilot-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.tp-stars {
    color: #00B67A;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}
.tp-text {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray);
    letter-spacing: 0.05em;
}
.home-testimonial-slide {
    display: none;
}
.home-testimonial-slide.active {
    display: block;
    animation: fadeInTestimonial 0.6s ease;
}
.testimonials-quote {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 2.5rem;
    position: relative;
}
.testimonials-quote::before {
    content: '\201C';
    position: absolute;
    top: -0.3em;
    left: -0.1em;
    font-size: 1.5em;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
}
.testimonial-text {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1rem;
    line-height: 2;
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
}
.testimonial-info { text-align: center; }
.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}
.testimonial-role {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 0.2rem;
}
.testimonials-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    left: -4rem;
    width: calc(100% + 8rem);
}
.testimonials-arrows button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.testimonials-arrows button:hover { color: var(--red); }

/* ── AWARDS & LEADERSHIP ── */
.awards-leadership {
    position: relative;
    background: var(--black);
    padding: 10rem 3rem;
    overflow: hidden;
}
.awards-leadership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/img/asset/proteso-pitch.jpg') center center / cover no-repeat;
    opacity: 0.12;
    filter: invert(1);
    pointer-events: none;
}
.award-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 6rem;
    align-items: center;
}
.award-text-col .section-text { margin-bottom: 1.5rem; }
.award-link {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--red);
    transition: color 0.3s ease;
    position: relative;
    margin-right: 1.5rem;
}
.award-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.4s var(--transition);
}
.award-link:hover::after { width: 100%; }
.award-link:hover { color: var(--red-light); }
.award-badge {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
    padding: 3rem 2.5rem;
    text-align: center;
    overflow: hidden;
}
.award-badge::before {
    content: '2026';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 10rem;
    color: rgba(230, 57, 70, 0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}
.award-badge-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.award-badge-icon svg { width: 24px; height: 24px; fill: var(--red); }
.award-badge-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}
.award-badge-sub {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--gray);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.award-badge-line {
    width: 40px;
    height: 2px;
    background: var(--red);
    margin: 1.25rem auto;
    position: relative;
    z-index: 1;
}
.leadership-block {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}
.leadership-header { margin-bottom: 0; }
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.leader-card {
    position: relative;
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: border-color 0.5s var(--transition), transform 0.5s var(--transition);
}
.leader-card::before {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 4.5rem;
    color: rgba(230, 57, 70, 0.07);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.leader-card:nth-child(1)::before { content: 'STRATEGY'; }
.leader-card:nth-child(2)::before { content: 'ADS'; }
.leader-card:nth-child(3)::before { content: 'CONTENT'; }
.leader-card:nth-child(4)::before { content: 'VISUAL'; }
.leader-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}
.leader-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--red);
    letter-spacing: 0.05em;
    transition: background 0.4s ease, color 0.4s ease;
}
.leader-card:hover .leader-avatar {
    background: var(--red);
    color: var(--white);
}
.leader-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}
.leader-role {
    font-family: var(--font-body);
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--gray);
}

/* ── MEDIA ── */
.media-section {
    padding: 5rem 3rem;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}
.media-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}
.media-logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    color: var(--gray-dark);
    transition: color 0.3s ease;
}
.media-logo-text:hover { color: var(--gray); }

/* ── CLIENTS ── */
.clients-section {
    padding: 6rem 3rem;
    background: var(--black-soft);
}
.clients-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
}
.clients-grid img {
    height: 64px;
    width: auto;
    opacity: 0.4;
    filter: grayscale(100%) brightness(2);
    transition: all 0.4s ease;
}
.clients-grid img:hover {
    opacity: 0.8;
    filter: grayscale(0%) brightness(1);
}

/* ── SPUNTI SLIDESHOW ── */
.spunti-section { padding: 8rem 3rem; background: var(--black); }
.spunti-inner { max-width: 1400px; margin: 0 auto; }
.spunti-header { text-align: center; margin-bottom: 4rem; }
.spunti-track {
    display: flex; gap: 1.5rem; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 1rem;
}
.spunti-track::-webkit-scrollbar { display: none; }
.spunti-card {
    flex: 0 0 350px; scroll-snap-align: start; position: relative;
    border-radius: 4px; overflow: hidden; aspect-ratio: 4/3; display: block;
}
.spunti-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition-smooth); }
.spunti-card:hover img { transform: scale(1.05); }
.spunti-card-overlay {
    position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.85) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity 0.4s ease;
}
.spunti-card:hover .spunti-card-overlay { opacity: 1; }
.spunti-card-title { font-family: var(--font-heading); font-weight: 800; font-size: 1rem; color: var(--white); text-transform: uppercase; }
.spunti-card-cat { font-size: 0.75rem; color: var(--gray-light); margin-top: 0.3rem; }

/* ── AWARDS & INNOVATION STRIP ── */
.awards-strip {
    padding: 5rem 3rem;
    background: var(--black-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.awards-strip-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.awards-strip-heading {
    font-family: var(--font-heading); font-weight: 800; font-size: 0.7rem;
    letter-spacing: 0.3em; text-transform: uppercase; color: var(--gray);
    margin-bottom: 3rem;
}
.awards-strip-grid {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
}
.awards-strip-card {
    flex: 0 0 220px; display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 2.5rem 1.5rem 2rem;
    background: rgba(255,255,255,0.02); border: 1px solid var(--gray-dark);
    border-radius: 4px; transition: border-color 0.5s ease, transform 0.5s ease;
    text-decoration: none; color: inherit;
}
.awards-strip-card:hover { border-color: var(--red); transform: translateY(-4px); }
.awards-strip-icon { width: 56px; height: 60px; color: var(--red); margin-bottom: 1.2rem; }
.awards-strip-name {
    font-family: var(--font-heading); font-weight: 800; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 0.05em; color: var(--white);
    line-height: 1.4; margin-bottom: 0.4rem;
}
.awards-strip-sub {
    font-family: var(--font-heading); font-size: 0.6rem; font-weight: 600;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
}

/* ── SPUNTI NAV ── */
.spunti-nav {
    display: flex; justify-content: center; gap: 1rem; margin-top: 2rem;
}
.spunti-nav-btn {
    width: 44px; height: 44px; border-radius: 50%; border: none;
    background: var(--gray-dark); color: var(--white); font-size: 1.2rem;
    cursor: pointer; transition: background 0.3s ease;
    display: flex; align-items: center; justify-content: center;
}
.spunti-nav-btn:hover { background: var(--red); }

/* ── LATEST BLOG POSTS ── */
.latest-posts { padding: 8rem 3rem; background: var(--black-soft); }
.latest-posts-inner { max-width: 1200px; margin: 0 auto; }
.latest-posts-header { text-align: center; margin-bottom: 4rem; }
.blog-latest-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.blog-latest-grid:empty { display: none; }
.blog-latest-grid:empty ~ div { display: none; }
.blog-latest-card {
    display: block; text-decoration: none; background: var(--black-card);
    border-radius: 4px; overflow: hidden;
    transition: transform 0.4s var(--transition-smooth);
}
.blog-latest-card:hover { transform: translateY(-6px); }
.blog-latest-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-latest-title {
    font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
    color: var(--white); padding: 1.5rem 1.5rem 0.5rem; line-height: 1.4; margin: 0;
}
.blog-latest-date {
    font-family: var(--font-heading); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase; color: var(--gray);
    padding: 0 1.5rem 1.5rem; display: block;
}

/* ── MOST READ POSTS ── */
.most-read-section { padding: 6rem 3rem; background: var(--black); border-top: 1px solid rgba(255,255,255,0.05); }
.most-read-inner { max-width: 1200px; margin: 0 auto; }
.most-read-header { text-align: center; margin-bottom: 3rem; }
.blog-most-read { display: flex; flex-direction: column; }
.blog-most-read:empty { display: none; }
.blog-most-read:empty ~ div { display: none; }
.blog-most-read-item {
    display: flex; align-items: center; gap: 1.5rem;
    padding: 1.25rem 0; text-decoration: none; color: inherit;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}
.blog-most-read-item:last-child { border-bottom: none; }
.blog-most-read-item:hover { background: rgba(230,57,70,0.03); }
.blog-most-read-num {
    font-family: var(--font-heading); font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--gray); min-width: 60px; text-align: center;
    flex-shrink: 0; line-height: 1;
}
.blog-most-read-item:hover .blog-most-read-num { color: var(--red); }
.blog-most-read-thumb {
    width: 80px; height: 60px; border-radius: 4px;
    overflow: hidden; flex-shrink: 0;
}
.blog-most-read-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-most-read-info { flex: 1; min-width: 0; }
.blog-most-read-cat {
    font-family: var(--font-heading); font-size: 0.6rem; font-weight: 700;
    letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--red); display: block; margin-bottom: 0.3rem;
}
.blog-most-read-info h3 {
    font-family: var(--font-heading); font-weight: 800; font-size: 1rem;
    color: var(--white); line-height: 1.35; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}


/* ── RESPONSIVE (below-fold sections) ── */
@media (max-width: 1024px) {
    .featured-slide.active { grid-template-columns: 1fr; }
    .featured-image-wrap img { height: 350px; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-images img:last-child { position: relative; bottom: auto; right: auto; width: 100%; border: none; margin-top: 1rem; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; }
    .process-grid::before { display: none; }
    .team-strip-inner { grid-template-columns: 1fr; }
    .award-block { grid-template-columns: 1fr; gap: 3rem; }
    .innovation-block { grid-template-columns: 1fr !important; }
    .leadership-block { grid-template-columns: 1fr; }
    .leadership-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-latest-grid { grid-template-columns: repeat(2, 1fr); }
    .awards-strip { padding: 4rem 2rem; }
    .featured { padding: 6rem 2rem; }
    .about { padding: 6rem 2rem; }
    .services-section { padding: 6rem 2rem; }
    .process { padding: 6rem 2rem; }
    .home-testimonials { padding: 6rem 2rem; }
    .awards-leadership { padding: 6rem 2rem; }
    .spunti-section { padding: 6rem 2rem; }
    .latest-posts { padding: 6rem 2rem; }
    .most-read-section { padding: 4rem 2rem; }
    .blog-most-read-num { font-size: 1.6rem; min-width: 45px; }
    .philosophy-content { padding: 3rem 2rem; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
    .philosophy-image { height: 60vh; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .services-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 3rem; }
    .leadership-grid { grid-template-columns: 1fr; }
    .spunti-card { flex: 0 0 280px; }
    .blog-latest-grid { grid-template-columns: 1fr; }
    .blog-most-read-thumb { width: 64px; height: 48px; }
    .awards-strip-card { flex: 0 0 calc(50% - 1rem); }
    .media-logos { gap: 2rem; }
    .testimonials-arrows { display: none; }
    .testimonials-quote { font-size: clamp(2rem, 8vw, 3.5rem); }
}
@media (max-width: 480px) {
    .featured-big-number { font-size: 3.5rem; }
    .stat-box { padding: 1.5rem 0.5rem; }
    .philosophy-content { padding: 2rem 1.2rem; }
    .awards-leadership { padding: 4rem 1.2rem; }
    .awards-strip { padding: 3rem 1.2rem; }
    .awards-strip-card { flex: 0 0 100%; }
    .blog-most-read-num { display: none; }
    .most-read-section { padding: 3rem 1.2rem; }
    .award-badge { padding: 2rem 1.5rem; }
    .award-badge::before { font-size: 5rem; }
    .leader-card { padding: 2rem 1.5rem; }
    .leadership-grid { grid-template-columns: 1fr; }
}
