* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    font-size: clamp(14px, 1.1vw + 0.5rem, 18px);
}

:root {
    /* Professional Finance Palette - COMPLETE */
    
    /* Primary Navy Colors */
    --navy-darker: #030b1a;
    --navy-dark: #0a1628;
    --navy: #0f2642;
    --navy-light: #1a3a5c;
    --navy-lighter: #2d4d6e;
    
    /* Gold/Premium Colors */
    --gold-darker: #9a7a1f;
    --gold-dark: #b8941f;
    --gold: #d4af37;
    --gold-light: #e6c96e;
    --gold-lighter: #f2e5b8;
    
    /* Accent Blue Colors */
    --accent-dark: #1e3d5c;
    --accent: #2e5c8a;
    --accent-light: #4a7fb0;
    --accent-lighter: #7ba3c9;
    
    /* Light Pastel Backgrounds */
    --bg-white: #ffffff;
    --bg-pastel: #f8f9fc;
    --bg-pastel-light: #fafbfd;
    --bg-cream: #fdfcfa;
    --bg-light: #f3f5f9;
    
    /* Text Colors for Light Background */
    --text-dark: #0a1628;
    --text-primary: #1a2942;
    --text-secondary: #4a5568;
    --text-muted: #64748b;
    --text-light-muted: #94a3b8;
    
    /* Text Colors for Dark Background (footer) */
    --text-footer-light: #e8edf4;
    --text-footer-muted: #94a3b8;
    --text-gold: #d4af37;
    
    /* Border Colors */
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-glass: rgba(212, 175, 55, 0.15);
    --border-subtle: rgba(255, 255, 255, 0.08);
    
    /* Success & Error */
    --success: #10b981;
    --success-light: #34d399;
    --error: #ef4444;
    --error-light: #fca5a5;
    --warning: #f59e0b;
    --info: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-pastel);
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Professional NAVY header matching footer */
header {
    height: 70px;
    align-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.05) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

header:hover::before {
    opacity: 1;
}

.container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    position: relative;
}

.logo {
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
    z-index: 1001;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.nav-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

/* Hamburger Menu Button - IMPROVED */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 28px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002; /* Aumentato per stare sopra il menu */
    position: relative;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    position: relative;
}

/* X Animation quando il menu è aperto */
.hamburger.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
    background: white; /* Assicura che sia visibile */
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
    background: white; /* Assicura che sia visibile */
}

/* Mobile Menu */
.nav-links {
    display: none;
    gap: 2rem;
    list-style: none;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 40px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001; /* Sotto l'hamburger ma sopra l'overlay */
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu li {
    margin-bottom: 0.5rem;
}

.mobile-menu a {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;

    padding: 1rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mobile-menu a:hover,
.mobile-menu a:active {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--gold-light);
    color: white;
    transform: translateX(8px);
}

/* Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000; /* Sotto tutto */
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.lang-divider {
    width: 1px;
    height: 16px;
    background: rgba(212, 175, 55, 0.3);
}

.lang-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.lang-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lang-btn:hover {
    transform: scale(1.1);
    border-color: var(--gold-light);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.lang-btn.active {
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.5);
    transform: scale(1.05);
}

/* Professional navy/gold footer */
footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--text-footer-muted);
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--gold);
    position: relative;
    overflow: hidden;
    width: 100%;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-dark) 25%, 
        var(--gold) 50%, 
        var(--gold-dark) 75%, 
        transparent 100%);
    animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--gold-light);

    font-weight: 700;

    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-footer-muted);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    transition: all 0.3s ease;

    word-wrap: break-word;
}

.footer-section a:hover {
    color: var(--gold-light);
    transform: translateX(4px);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--border-glass);
}

.contact-icon {
    flex-shrink: 0;
    width: 24px;
    text-align: center;

    filter: grayscale(0.3);
    transition: filter 0.3s ease;
}

.contact-item:hover .contact-icon {
    filter: grayscale(0);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    text-align: center;
    color: var(--text-footer-muted);

}

.footer-credit {
    margin-top: 0.75rem;

    opacity: 0.8;
}

.footer-credit a {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    display: inline;
    position: relative;
}

.footer-credit a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-light);
    transition: width 0.3s ease;
}

.footer-credit a:hover::after {
    width: 100%;
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    nav {
        padding: 1.25rem 0;
    }

    .logo {

        max-width: none;
    }

    .hamburger {
        display: none;
    }

    .nav-links {
        display: flex;
    }

    .mobile-menu {
        display: none;
    }

    .nav-content {
        gap: 2.5rem;
    }

    .lang-switcher {
        gap: 0.75rem;
        padding: 0.5rem;
    }

    .lang-btn {
        width: 36px;
        height: 36px;
    }

    .lang-divider {
        height: 20px;
    }

    .nav-links a {
        color: rgba(255, 255, 255, 0.85);
        text-decoration: none;
        font-weight: 500;

        transition: all 0.3s ease;
        position: relative;
        padding: 0.5rem 0;
        white-space: nowrap;
    }

    .nav-links a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gold);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    .nav-links a:hover {
        color: white;
    }

    .nav-links a:hover::before {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    footer {
        padding: 5rem 0 2rem;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-content {
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-section h4 {

        margin-bottom: 1.5rem;
    }

    .contact-item {
        margin-bottom: 1rem;
    }

    .contact-icon {
        width: 28px;

    }

    .footer-bottom {
        padding-top: 2.5rem;
    
    }

}

/* Mobile-specific fixes */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    header {
        width: 100vw;
    }

    .nav-content {
        gap: 1rem;
    }

    .lang-switcher {
        gap: 0.4rem;
        padding: 0.3rem;
    }

    .lang-btn {
        width: 28px;
        height: 28px;
    }

    .lang-divider {
        height: 14px;
    }
}

/* Welcome */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(15, 38, 66, 0.92) 0%, rgba(10, 22, 40, 0.88) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?q=80&w=2070') center/cover no-repeat;
    overflow: hidden;
    padding-top: 50px;
}

/* Frosted glass overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 38, 66, 0.3);
    backdrop-filter: blur(2px) saturate(180%);
    z-index: 1;
}

/* Subtle animated gradient overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

/* Elegant glassmorphic badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    font-weight: 600;

    margin-bottom: 2.5rem;
    animation: fadeInDown 0.8s ease-out;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
    color: var(--gold-lighter);
}

/* Professional gradient text */
.hero h1 {

    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    background: linear-gradient(135deg, #ffffff 0%, #e6c96e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Professional CTA button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    text-decoration: none;
    font-weight: 700;

    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 64px rgba(212, 175, 55, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light sections with proper contrast */
.reassurance {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
}

.reassurance-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reassurance h2 {

    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.reassurance-text {

    color: var(--text-secondary);
    line-height: 1.8;
}

.reassurance-text strong {
    color: var(--gold-dark);
    font-weight: 700;
}

.news-section {
    padding: 8rem 0;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 30%),
        linear-gradient(180deg, var(--bg-pastel) 0%, var(--bg-white) 100%);
}

.news-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
}

.news-media {
    position: relative;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.news-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.04), rgba(10, 22, 40, 0.28));
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-copy {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(212, 175, 55, 0.22);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.news-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(212, 175, 55, 0.12);
    color: var(--gold-darker);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.news-copy h2 {
    color: var(--navy);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.news-intro {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.news-body {
    display: grid;
    gap: 1rem;
}

.news-body p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.news-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.news-meta-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: var(--bg-pastel-light);
    border: 1px solid var(--border-light);
}

.news-meta-label {
    color: var(--navy);
    font-weight: 700;
}

.news-meta-value {
    color: var(--text-secondary);
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 2rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: var(--gold-dark);
    transform: translateX(4px);
}

.news-page-hero {
    padding: 138px 0 72px;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.14), transparent 24%),
        radial-gradient(circle at top right, rgba(123, 163, 201, 0.16), transparent 28%),
        linear-gradient(160deg, #0b1830 0%, #0a1628 58%, #10233f 100%);
    position: relative;
    overflow: hidden;
}

.news-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.03) 50%, transparent 100%);
    opacity: 0.7;
}

.news-page-hero::after {
    content: '';
    position: absolute;
    inset: auto auto -120px 50%;
    width: min(860px, 92vw);
    height: 220px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.18), transparent 70%);
    filter: blur(28px);
}

.news-page-header {
    position: relative;
    z-index: 1;
    max-width: 980px;
    margin: 0 auto;
}

.news-hero-topline {
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: 1.15rem;
}

.news-page-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.news-page-hero-copy h1 {
    color: white;
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.045em;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.news-page-hero-copy p {
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.75;
    max-width: 58ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.news-page-content {
    padding: 0 0 8rem;
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.08), transparent 30%),
        linear-gradient(180deg, var(--bg-pastel) 0%, var(--bg-white) 100%);
}

.news-article {
    max-width: 920px;
    margin: -3.5rem auto 0;
    position: relative;
    z-index: 2;
}

.news-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.news-actions .btn-secondary {
    background: var(--bg-pastel-light);
    color: var(--navy);
    border: 2px solid rgba(15, 38, 66, 0.12);
    backdrop-filter: none;
    box-shadow: var(--shadow-sm);
}

.news-actions .btn-secondary:hover {
    background: white;
    color: var(--gold-dark);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 16px 40px rgba(15, 38, 66, 0.12);
}

.news-copy-article {
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 24px 70px rgba(15, 38, 66, 0.12);
}

.news-article-media {
    margin: 2rem 0 2.25rem;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 20px 48px rgba(15, 38, 66, 0.12);
    background: white;
}

.news-article-media img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* Services section */
.services {
    padding: 8rem 0;
    background: var(--bg-pastel);
    position: relative;
}

.section-title {


    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

/* Professional service cards */
.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold-light);
    box-shadow: 0 24px 64px rgba(212, 175, 55, 0.2);
}

.service-card.primary {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(15, 38, 66, 0.03) 100%);
    border-color: var(--gold-light);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 12px 36px rgba(15, 38, 66, 0.2);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.service-card.primary .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.service-card h3 {


    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;

}

/* Trust section */
.trust-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.trust-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: white;
    border: 2px solid var(--border-light);
    transition: all 0.4s ease;
}

.trust-item:hover {
    background: var(--bg-pastel-light);
    border-color: var(--gold-light);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
}

.trust-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    box-shadow: 0 12px 36px rgba(15, 38, 66, 0.2);
    transition: all 0.4s ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.trust-item h4 {


    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.7;

}

/* Professional CTA section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(100px);
}

.cta-section h2 {

    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: white;
}

.cta-section p {

    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    box-shadow: 0 12px 48px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.btn-primary::before,
.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn-primary:hover {
    box-shadow: 0 20px 64px rgba(212, 175, 55, 0.6);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--gold-light);
    box-shadow: 0 20px 64px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .news-page-hero {
        padding: 108px 0 44px;
    }

    .news-page-content {
        padding: 0 0 5rem;
    }

    .news-actions {
        flex-direction: column;
    }

    .news-article {
        margin-top: -1.5rem;
    }

    .news-copy-article {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .news-article-media {
        margin: 1.5rem 0 1.75rem;
        border-radius: 18px;
    }

    .news-article-media img {
        max-height: 260px;
    }

    .news-section {
        padding: 5rem 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .news-page-hero {
        padding: 150px 0 84px;
    }

    .news-shell {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
        gap: 3rem;
    }

    .news-media {
        min-height: 100%;
    }

    .news-copy {
        padding: 3rem;
    }

    .news-meta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}


/* Contattaci */
.contact-hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.contact-hero h1 {

    font-weight: 800;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    color: white;
    letter-spacing: -0.02em;
    padding: 0 1rem;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    padding: 0 1rem;
}

/* Contact section with light background */
.contact-section {
    padding: 60px 0;
    background: var(--bg-pastel);
    position: relative;
    width: 100%;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
    position: relative;
    z-index: 1;
    width: 100%;
}

/* Professional info card */
.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-info h2 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.info-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    border-radius: 12px;
    background: var(--bg-pastel-light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    width: 100%;
    overflow: hidden;
}

.info-item:hover {
    background: white;
    border-color: var(--gold-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.info-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.info-content h3 {

    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    word-wrap: break-word;
}

.info-content p,
.info-content a {
    color: var(--text-secondary);
    text-decoration: none;
    line-height: 1.6;

    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
}

.info-content a:hover {
    color: var(--gold-dark);
}

/* Professional form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.contact-form h2 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    word-wrap: break-word;
}

.form-group {
    margin-bottom: 1.25rem;
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;

    word-wrap: break-word;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    max-width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;

    transition: all 0.3s ease;
    background: white;
    color: var(--text-primary);
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234a5568' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: white;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    width: 100%;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    width: 100%;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;

    line-height: 1.5;
    cursor: pointer;
    color: var(--text-secondary);
    flex: 1;
    word-wrap: break-word;
}

/* Professional gold button */
.submit-btn {
    width: 100%;
    max-width: 100%;
    padding: 1.125rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy-dark);
    border: none;
    border-radius: 12px;

    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.3));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.submit-btn:hover::before {
    transform: translateX(100%);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

/* Professional alerts */
.alert {
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
    border: 2px solid;

    word-wrap: break-word;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border-color: #10b981;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border-color: #ef4444;
}

/* Map section */
.map-section {
    padding: 0 0 60px;
    background: var(--bg-pastel);
    width: 100%;
    overflow: hidden;
}

.map-container {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-md);
    width: 100%;
    max-width: 100%;
}

.map-container h2 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    text-align: center;
    word-wrap: break-word;
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border-radius: 16px;
    border: 2px solid var(--border-light);
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .contact-hero {
        padding: 140px 0 90px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 3rem;
    }

    .contact-info {
        padding: 2.5rem;
        position: sticky;
        top: 120px;
    }

    .contact-info h2,
    .contact-form h2 {
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 2.5rem;
    }

    .info-item {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;

    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 1rem 1.25rem;
    }

    .form-group textarea {
        min-height: 150px;
    }

    .submit-btn {
        padding: 1.25rem;
    }

    .map-container {
        padding: 2.5rem;
    }

    .map-container iframe {
        height: 450px;
    }

    .map-section {
        padding: 0 0 80px;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .contact-info {
        padding: 3rem;
    }

    .contact-form {
        padding: 3rem;
    }

    .contact-info h2,
    .contact-form h2,
    .map-container h2 {
        margin-bottom: 2.5rem;
    }

    .info-item {
        padding: 1.5rem;
    }
}

/* Mobile-specific fixes */
@media (max-width: 767px) {
    .contact-hero {
        padding: 100px 0 50px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .map-container {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 250px;
    }
}

/* Privacy */
.privacy-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

.privacy-hero h1 {
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    color: white;
    letter-spacing: -0.02em;
}

.privacy-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-content {
    padding: 80px 0;
    background: var(--bg-pastel);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.privacy-section h2 {
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold-light);
    letter-spacing: -0.01em;
}

.privacy-section h3 {
    font-weight: 600;
    color: var(--navy-light);
    margin: 2rem 0 1rem;
}

.privacy-section h4 {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.privacy-list li {
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--gold);
    font-weight: bold;
}

.privacy-info-box {
    background: var(--bg-pastel-light);
    border-left: 4px solid var(--gold);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    color: var(--text-primary);
    line-height: 1.8;
}

.privacy-info-box a {
    color: var(--gold-dark);
    text-decoration: underline;
    font-weight: 600;
}

.privacy-info-box a:hover {
    color: var(--gold);
}

.privacy-card {
    background: var(--bg-pastel-light);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    border-color: var(--gold-light);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.privacy-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.privacy-update-date {
    background: var(--bg-pastel-light);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: 1rem;
}

.privacy-contact-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-color: var(--gold);
    text-align: center;
}

.privacy-contact-section h2 {
    color: var(--gold-light);
    border-bottom-color: var(--gold);
}

.privacy-contact-section p {
    color: rgba(255, 255, 255, 0.9);
}

.privacy-contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 50px;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-rights-grid {
        grid-template-columns: 1fr;
    }
    
    .privacy-contact-buttons {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}
