/* ============================================
   Endotek site — Stile minimal B&W
   Bootstrap 5 + tipografia Anton/Inter
   ============================================ */
:root {
    --c-bg: #fff;
    --c-fg: #000;
    --c-muted: #6b6b6b;
    --c-line: #e7e7e7;
    --c-soft: #f7f7f5;
}
* { box-sizing: border-box; }
html, body { background: var(--c-bg); color: var(--c-fg); }
body { font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif; font-size: 16px; line-height: 1.55; }

h1, h2, h3, h4, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Anton', Impact, 'Arial Black', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--c-fg);
    line-height: 1.05;
}
h2 { font-size: 2.4rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.1rem; }
.eyebrow {
    font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-muted); font-weight: 600; margin: 0 0 8px;
}
a { color: var(--c-fg); }
.text-muted { color: var(--c-muted) !important; }

/* ── Header (nav riprogettata: logo + Contatti + lente + hamburger) ─────── */
.site-header {
    border-bottom: 1px solid var(--c-line);
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 14px 0;
    position: sticky; top: 0; z-index: 200;
}
.nav-right { display: flex; align-items: center; gap: 6px; }
.nav-icon {
    width: 42px; height: 42px;
    background: transparent; border: 1px solid transparent;
    display: inline-flex; align-items: center; justify-content: center;
    cursor: pointer; color: #000; font-size: 16px;
    transition: 0.15s;
}
.nav-icon:hover { background: #f3f3f1; border-color: var(--c-line); }
.nav-cta {
    display: inline-flex; align-items: center;
    padding: 11px 22px;
    background: #000; color: #fff;
    text-decoration: none;
    font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
    transition: 0.15s;
    margin: 0 6px;
}
.nav-cta:hover { background: #2a2a2a; color: #fff; }
.hamburger {
    width: 42px; height: 42px;
    background: transparent; border: 0; cursor: pointer;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 5px;
    transition: 0.2s;
}
.hamburger:hover { background: #f3f3f1; }
.hamburger span {
    display: block; width: 22px; height: 2px; background: #000;
    transition: 0.25s ease;
}
/* Quando il mega-menu (scuro) è aperto, le linee diventano bianche per restare visibili */
body.menu-open .hamburger span { background: #fff; }
body.menu-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .hamburger span:nth-child(2) { opacity: 0; }
body.menu-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mega menu overlay (tema scuro) ─────── */
.mega-menu {
    position: fixed; inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #000 100%);
    color: #fff;
    z-index: 250;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    padding: 100px 0 60px;
}
.mega-menu.open {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.mega-menu::before {
    content: '';
    position: fixed; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #fff 0%, #fff 50%, transparent 50%, transparent 100%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position 0.6s ease 0.2s;
    z-index: 251;
}
.mega-menu.open::before { background-position: 0 0; }
.mega-close {
    position: fixed; top: 18px; right: 30px;
    width: 48px; height: 48px;
    background: #fff; color: #000; border: 0;
    font-size: 20px; cursor: pointer;
    z-index: 260;
    transition: 0.2s;
}
.mega-close:hover { background: #ddd; transform: rotate(90deg); }

.mega-nav { display: flex; flex-direction: column; }
.mega-link {
    display: flex; align-items: center; gap: 24px;
    padding: 18px 0;
    color: rgba(255,255,255,.45);
    text-decoration: none;
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1; letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,.10);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}
.mega-link .num {
    font-family: 'Inter', sans-serif;
    font-size: 11px; letter-spacing: 2px; font-weight: 600;
    color: rgba(255,255,255,.4);
    width: 28px;
    transition: color 0.25s;
}
.mega-link .lbl {
    flex: 1;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s;
    transform: translateX(0);
}
.mega-link i {
    opacity: 0; transform: translateX(-20px);
    transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 1.5rem;
}
.mega-link:hover, .mega-link.active { color: #fff; }
.mega-link:hover .num, .mega-link.active .num { color: #fff; }
.mega-link:hover .lbl { transform: translateX(20px); }
.mega-link:hover i { opacity: 1; transform: translateX(0); }

.mega-side { padding: 20px 0; }
.mega-search-wrap { position: relative; margin-bottom: 30px; }
.mega-search-wrap form {
    display: flex; align-items: center; gap: 14px;
    border-bottom: 2px solid rgba(255,255,255,.3);
    padding: 14px 0;
    transition: border-color 0.2s;
}
.mega-search-wrap form:focus-within { border-color: #fff; }
.mega-search-wrap i { color: rgba(255,255,255,.6); font-size: 18px; }
.mega-search-wrap input {
    flex: 1; background: transparent; border: 0;
    color: #fff; font-size: 18px;
    font-family: inherit; outline: none;
    padding: 8px 0;
}
.mega-search-wrap input::placeholder { color: rgba(255,255,255,.45); }
.mega-search-results {
    margin-top: 10px;
    max-height: 360px; overflow-y: auto;
}
.mega-search-results a {
    display: block; padding: 12px 0;
    color: rgba(255,255,255,.85);
    text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.10);
    transition: 0.15s;
}
.mega-search-results a:hover { color: #fff; padding-left: 6px; }
.mega-search-results .res-cat {
    font-size: 9px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-bottom: 2px;
}
.mega-search-results .res-title { font-weight: 600; font-size: 14px; }
.mega-search-results .res-section {
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.4); font-weight: 700;
    padding: 14px 0 6px; border-bottom: 0;
}
.mega-langs {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
    margin-bottom: 24px;
}
.mega-langs .flag {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px;
    color: rgba(255,255,255,.65); text-decoration: none;
    border: 1px solid rgba(255,255,255,.15);
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    border-radius: 999px;
    transition: 0.15s;
}
.mega-langs .flag:hover { color: #fff; border-color: rgba(255,255,255,.4); }
.mega-langs .flag.active { color: #000; background: #fff; border-color: #fff; }
.mega-langs .flag-emoji { font-size: 14px; line-height: 1; }
.mega-contact {
    font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.6;
}
.mega-contact strong { color: #fff; font-size: 1.1rem; font-family: 'Anton', Impact, sans-serif; letter-spacing: 1px; }
.mega-contact a { color: rgba(255,255,255,.85); }

/* ── Search overlay (icona lente nav) - tema scuro ──── */
.search-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,.95);
    color: #fff; z-index: 260;
    opacity: 0; visibility: hidden;
    transition: 0.25s ease;
    display: flex; align-items: flex-start;
    padding-top: 18vh;
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay form {
    display: flex; align-items: center; gap: 18px;
    border-bottom: 3px solid #fff;
    padding: 18px 0;
    margin-bottom: 20px;
}
.search-overlay form i { color: #fff; font-size: 28px; }
.search-overlay input {
    flex: 1; background: transparent; border: 0;
    color: #fff;
    font-family: 'Anton', Impact, sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: 1px;
    outline: none; padding: 6px 0;
    text-transform: uppercase;
}
.search-overlay input::placeholder { color: rgba(255,255,255,.4); }

/* Quando il menu è aperto blocchiamo lo scroll */
body.menu-open { overflow: hidden; }

/* ── Search results page ──────────────── */
.search-section-h {
    font-size: 1.4rem; margin: 20px 0 18px;
    padding-bottom: 12px; border-bottom: 1px solid #000;
}
.search-section-h .count { color: var(--c-muted); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; }

.brand {
    display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--c-fg);
}
.brand-logo {
    display: block;
    height: 38px;       /* nav header */
    width: auto;
    transition: opacity .15s;
}
.brand-logo:hover { opacity: .75; }
/* logo nel footer (sfondo nero) → forzato bianco */
.brand-logo.light {
    height: 44px;
    filter: brightness(0) invert(1);
}
.main-nav { display: flex; gap: 28px; }
.main-nav a {
    text-decoration: none; color: var(--c-fg);
    font-size: 13px; letter-spacing: 2px;
    font-weight: 600; text-transform: uppercase;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: 0.15s;
}
.main-nav a:hover { border-color: #000; }
.main-nav a.active { border-color: #000; }
.mobile-nav { display: flex; flex-direction: column; gap: 14px; }
.mobile-nav a {
    color: #fff; text-decoration: none;
    font-size: 15px; letter-spacing: 2px; font-weight: 600;
    text-transform: uppercase;
}
.mobile-nav a.active { color: #fff; text-decoration: underline; }

/* ── Language switcher ─────────────────── */
.lang-switch { display: inline-flex; gap: 4px; margin-left: 18px; padding-left: 18px; border-left: 1px solid var(--c-line); }
.lang-switch .flag {
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none; padding: 4px 8px;
    font-size: 11px; letter-spacing: 1.5px;
    font-weight: 700; color: var(--c-muted);
    border: 1px solid transparent;
    transition: 0.15s;
}
.lang-switch .flag .flag-emoji { font-size: 16px; line-height: 1; }
.lang-switch .flag .flag-code { font-size: 10px; }
.lang-switch .flag:hover { color: #000; }
.lang-switch .flag.active { color: #000; border-color: #000; background: #fff; }

.lang-switch-footer {
    display: flex; gap: 6px; justify-content: center;
    padding-top: 28px; margin-top: 24px;
    border-top: 1px solid #1a1a1a;
}
.lang-switch-footer .flag {
    display: inline-flex; align-items: center; gap: 4px;
    text-decoration: none; padding: 4px 10px;
    color: #777;
    font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
    border: 1px solid #1a1a1a;
    transition: 0.15s;
}
.lang-switch-footer .flag .flag-emoji { font-size: 16px; }
.lang-switch-footer .flag:hover { color: #fff; border-color: #444; }
.lang-switch-footer .flag.active { color: #000; background: #fff; border-color: #fff; }

@media (max-width: 991px) {
    .lang-switch { margin-left: 0; padding-left: 0; border-left: 0; margin-top: 12px; }
}

/* ── Hero ─────────────────────────────── */
.hero {
    padding: 80px 0 70px;
    background: var(--c-soft);
    border-bottom: 1px solid var(--c-line);
}
.hero h1 { margin: 0 0 8px; }
.hero .lead { font-size: 1.15rem; max-width: 560px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Full-bleed hero con immagine di sfondo + overlay */
.hero-full {
    position: relative;
    min-height: 88vh;
    padding: 120px 0 80px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
    border-bottom: none;
}
.hero-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.70) 60%, rgba(0,0,0,.92) 100%),
        linear-gradient(120deg, rgba(0,0,0,.70) 0%, rgba(0,0,0,.10) 70%);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 980px;
}
.hero-content .eyebrow,
.hero-content .eyebrow-light {
    color: rgba(255,255,255,.85) !important;
}
.hero-full .hero-title,
.hero-full h1.display-1.hero-title {
    color: #fff !important;
    font-family: 'Anton', Impact, sans-serif !important;
    font-size: clamp(3rem, 8vw, 7rem) !important;
    line-height: .92 !important;
    letter-spacing: 0 !important;
    margin: 18px 0 28px !important;
    text-shadow: 0 4px 30px rgba(0,0,0,.55);
    text-transform: uppercase;
}
.hero-accent {
    display: inline-block;
    color: transparent !important;
    -webkit-text-stroke: 2.5px #fff;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(120deg, rgba(255,255,255,.10), rgba(255,255,255,.02));
    -webkit-background-clip: text;
            background-clip: text;
}
.hero-full .hero-lead {
    color: rgba(255,255,255,.95) !important;
    font-size: 1.25rem;
    max-width: 640px;
    margin-bottom: 36px;
    text-shadow: 0 2px 12px rgba(0,0,0,.45);
}
.hero-full .hero-cta { gap: 16px; }
.hero-full .btn-light {
    background: #fff; color: #000; border: 1px solid #fff;
}
.hero-full .btn-light:hover { background: rgba(255,255,255,.85); }
.hero-full .btn-outline-light:hover { background: #fff; color: #000; }
.hero-stats {
    margin-top: 64px;
    display: flex; gap: 56px; flex-wrap: wrap;
    border-top: 1px solid rgba(255,255,255,.25);
    padding-top: 28px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 2.1rem; letter-spacing: 1px; color: #fff;
}
.hero-stats span {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: rgba(255,255,255,.7);
}
@media (max-width: 768px) {
    .hero-full { min-height: 70vh; padding: 80px 0 60px; background-attachment: scroll; }
    .hero-stats { gap: 24px; margin-top: 40px; }
    .hero-stats strong { font-size: 1.5rem; }
}

/* ── Page head (no hero) ──────────────── */
.page-head {
    padding: 60px 0 30px;
    background: var(--c-soft);
    border-bottom: 1px solid var(--c-line);
}
.page-head h1 { font-size: 3rem; margin: 0 0 6px; }
.crumbs a { color: var(--c-muted); text-decoration: none; }
.crumbs a:hover { color: var(--c-fg); }

/* ── Sezione standard ─────────────────── */
.section { padding: 60px 0; }
.section-alt { background: var(--c-soft); }
.section-head { margin-bottom: 32px; text-align: center; }
.section-head h2 { margin: 0 0 8px; }

/* ── Product card ─────────────────────── */
.product-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--c-line);
    text-decoration: none; color: var(--c-fg);
    transition: 0.2s;
    height: 100%;
}
.product-card:hover { border-color: #000; transform: translateY(-2px); }
.product-card-img {
    aspect-ratio: 16 / 10;
    background: var(--c-soft);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; }
.product-card-img i { font-size: 64px; color: #d0d0d0; }
.product-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-card-body .cat {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-muted); font-weight: 700; margin-bottom: 8px;
}
.product-card-body h3 { margin: 0 0 8px; font-size: 1.2rem; }
.arrow {
    margin-top: auto;
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; padding-top: 14px;
}
.arrow i { transition: 0.15s; }
.product-card:hover .arrow i { transform: translateX(4px); }

/* ── Filter chips ─────────────────────── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
    border: 1px solid #000;
    padding: 6px 14px;
    font-size: 11px; letter-spacing: 2px; font-weight: 700;
    text-transform: uppercase; text-decoration: none; color: #000;
    background: #fff;
    transition: 0.15s;
}
.filter-chip:hover { background: #000; color: #fff; }
.filter-chip.active { background: #000; color: #fff; }

/* ── Product detail ───────────────────── */
.product-hero {
    aspect-ratio: 1 / 1;
    background: var(--c-soft);
    border: 1px solid var(--c-line);
    display: flex; align-items: center; justify-content: center;
}
.product-hero img { width: 100%; height: 100%; object-fit: cover; }
.product-hero i { font-size: 180px; color: #d0d0d0; }
.specs-table th {
    width: 220px; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--c-muted); font-weight: 600;
}
.specs-table td { font-weight: 500; }

/* ── Services / About ─────────────────── */
.service-card {
    border: 1px solid var(--c-line);
    padding: 28px;
    background: #fff;
    height: 100%;
}
.service-card i {
    font-size: 32px; color: #000; margin-bottom: 14px;
}
.service-card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--c-line);
    font-size: 0.95rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list i { color: #000; margin-right: 10px; }
.stat-card {
    border: 1px solid #000;
    padding: 28px;
    background: #fff;
}
.stat-card .stat-num {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 2rem; letter-spacing: 1px;
}
.stat-card .stat-lbl {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--c-muted);
}

/* ── Contact card ─────────────────────── */
.contact-card {
    border: 1px solid var(--c-line);
    padding: 28px;
    background: var(--c-soft);
}
.contact-card h5 {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 14px; letter-spacing: 3px; text-transform: uppercase;
    margin: 0 0 4px;
}
.contact-card a { color: var(--c-fg); }

/* ── Bottoni ──────────────────────────── */
.btn {
    border-radius: 0;
    padding: 12px 24px;
    font-size: 12px; letter-spacing: 2px;
    font-weight: 600; text-transform: uppercase;
}
.btn-dark { background: #000; border-color: #000; }
.btn-dark:hover { background: #1d1d1d; border-color: #1d1d1d; }
.btn-outline-dark { border-color: #000; color: #000; }
.btn-outline-dark:hover { background: #000; color: #fff; }
.btn-lg { padding: 16px 30px; font-size: 13px; }

/* ── Form ─────────────────────────────── */
.form-control, .form-select {
    border-radius: 0;
    border-color: #ccc;
    padding: 10px 12px;
    font-size: 14px;
}
.form-control:focus, .form-select:focus {
    border-color: #000; box-shadow: none;
}
.form-label {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600;
    color: var(--c-muted); margin-bottom: 4px;
}

/* ── Footer ───────────────────────────── */
.site-footer {
    background: #000; color: #fff;
    padding: 60px 0 24px;
    margin-top: 60px;
}
.site-footer .brand-text { color: #fff; }
.site-footer .brand-mark { background: #fff; color: #000; }
.site-footer .footer-title {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 14px; letter-spacing: 3px;
    text-transform: uppercase; margin-bottom: 14px;
    color: #fff;
}
.site-footer ul a {
    color: #bbb; text-decoration: none; display: inline-block; padding: 4px 0;
}
.site-footer ul a:hover { color: #fff; }
.site-footer .text-muted { color: #888 !important; }
.newsletter-form .input-group { position: relative; }
.newsletter-form .form-control {
    background: #1a1a1a; border-color: #333; color: #fff;
}
.newsletter-form .form-control::placeholder { color: #777; }
.newsletter-form .form-control:focus { border-color: #fff; background: #1a1a1a; }
.copy {
    border-top: 1px solid #1a1a1a;
    margin-top: 40px;
    padding-top: 16px;
    font-size: 12px;
    color: #777;
    text-align: center;
}

/* ── Magazine ─────────────────────────── */
.article-card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--c-line);
    text-decoration: none; color: var(--c-fg);
    transition: 0.2s; height: 100%;
}
.article-card:hover { border-color: #000; transform: translateY(-2px); }
.article-card-img {
    aspect-ratio: 16/10; background: var(--c-soft);
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.article-card-img img { width: 100%; height: 100%; object-fit: cover; }
.article-card-img i { font-size: 56px; color: #d0d0d0; }
.article-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.article-card-body .cat {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-muted); font-weight: 700; margin-bottom: 8px;
}
.article-card-body h3 { margin: 0 0 8px; font-size: 1.15rem; }

.article-hero {
    min-height: 60vh; padding: 100px 0 70px;
    background-size: cover; background-position: center;
    color: #fff; position: relative;
}
.article-hero .hero-overlay { background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.80)); }
.article-body { max-width: 760px; margin: 0 auto; font-size: 1.05rem; line-height: 1.7; }
.article-body h2, .article-body h3 { margin: 28px 0 12px; }
.article-body p { margin-bottom: 16px; }
.article-body ul { margin: 16px 0; padding-left: 20px; }
.article-body img { max-width: 100%; height: auto; margin: 24px 0; }

/* ── Partner cards ─────────────────────── */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    border-left: 1px solid var(--c-line);
    border-top: 1px solid var(--c-line);
}
.partner-card {
    padding: 36px 32px;
    border-right: 1px solid var(--c-line);
    border-bottom: 1px solid var(--c-line);
    background: #fff;
    transition: 0.2s;
}
.partner-card:hover { background: var(--c-soft); }
.partner-cat {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: var(--c-muted); font-weight: 700; margin-bottom: 12px;
}
.partner-name {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 1.6rem; letter-spacing: 1px; margin: 0 0 6px;
}
.partner-sub {
    font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
    font-weight: 600; color: #000; margin-bottom: 12px;
}
.partner-desc { font-size: 0.92rem; margin: 0; }

/* Page head con immagine wow (per Partner) */
.page-head-wow {
    position: relative; min-height: 50vh; padding: 100px 0 60px;
    background-size: cover; background-position: center;
    color: #fff; border-bottom: none;
}
.page-head-wow .hero-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,.30) 0%, rgba(0,0,0,.85) 100%);
}

/* ── Trasparenza ──────────────────────── */
.trans-block {
    border: 1px solid var(--c-line);
    background: #fff;
    padding: 36px;
    margin-bottom: 28px;
}
.trans-tag {
    display: inline-block;
    background: #000; color: #fff;
    padding: 6px 12px;
    font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
    font-weight: 700; margin-bottom: 16px;
}
.trans-block h2 { font-size: 1.7rem; margin: 0 0 12px; }
.trans-sub {
    font-style: italic; color: var(--c-muted);
    margin-bottom: 20px; font-size: 1rem;
}
.trans-amount {
    margin-top: 28px;
    padding: 20px;
    background: #000; color: #fff;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 10px;
}
.trans-amount .lbl {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: rgba(255,255,255,.7); font-weight: 600;
}
.trans-amount .amt {
    font-family: 'Anton', Impact, sans-serif;
    font-size: 2rem; letter-spacing: 1px;
}

/* ── Empty state ──────────────────────── */
.empty {
    text-align: center; padding: 60px 24px;
    color: #999; border: 1px dashed #ccc;
}

/* ── Alert overrides ─────────────────── */
.alert { border-radius: 0; }
.alert-dark { background: #000; color: #fff; border-color: #000; }

@media (max-width: 768px) {
    h2 { font-size: 1.8rem; }
    .hero { padding: 50px 0 40px; }
    .hero h1.display-3 { font-size: 2.4rem; }
    .page-head h1 { font-size: 2rem; }
    .section { padding: 40px 0; }
}
