/* ===== PSL CONSORZIO — NEW DESIGN ===== */
/* Color Palette (PSL Brand — Warm Corporate)
   --navy:        #0D2B4E
   --primary:     #1A4F8B
   --accent:      #4A90D9
   --warm-accent: #5D6D7E
   --warm-light:  #7A8B9B
   --soft-bg:     #F5F2ED
   --warm-bg:     #FAFAF8
   --section-bg:  #F2EFEA
   --text:        #2D2D2D
   --text-muted:  #6B6B6B
*/

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&family=Roboto+Slab:wght@400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Roboto', sans-serif;
    color: #2D2D2D;
    background: #FAFAF8;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: 'Roboto Slab', serif; font-weight: 600; line-height: 1.2; }

/* ===== UTILITIES ===== */
.container { max-width: 1560px; margin: 0 auto; padding: 0 32px; }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 32px; border-radius: 50px; font-size: 0.95rem;
    font-weight: 500; cursor: pointer; transition: all 0.3s; border: none;
    font-family: 'Roboto', sans-serif;
}
.btn-primary { background: #1A4F8B; color: #fff; }
.btn-primary:hover { background: #0D2B4E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,79,139,0.35); }
.btn-outline { background: transparent; color: #1A4F8B; border: 2px solid #1A4F8B; }
.btn-outline:hover { background: #1A4F8B; color: #fff; }
.btn-white { background: #fff; color: #1A4F8B; }
.btn-white:hover { background: #F0EDE8; transform: translateY(-2px); }
.btn-accent { background: #4A90D9; color: #fff; }
.btn-accent:hover { background: #1A4F8B; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,144,217,0.35); }
.section-label {
    display: inline-block; padding: 6px 18px; border-radius: 50px;
    background: rgba(200,150,46,0.12); color: #5D6D7E; font-size: 0.8rem;
    font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; color: #0D2B4E; }
.section-subtitle { font-size: 1.05rem; color: #6B6B6B; max-width: 600px; line-height: 1.7; }
.text-center { text-align: center; }
.arrow-icon { width: 16px; height: 16px; }
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: inline; } }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 12px 24px; transition: all 0.3s; background: transparent;
}
.navbar.scrolled { background: #FAFAF8; box-shadow: 0 2px 20px rgba(13,43,78,0.08); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; max-width: 1560px; padding: 0; }
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Roboto Slab', serif; font-size: 1.3rem; font-weight: 700; color: #0D2B4E; }
.logo img { height: 60px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: #333; position: relative; padding: 4px 0; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #0D2B4E; }
.nav-links a::after {
    content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 2px;
    background: #5D6D7E; transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.btn-nav-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #0D2B4E; color: #fff; padding: 12px 28px;
    border-radius: 50px; font-size: 0.9rem; font-weight: 600;
    transition: all 0.3s; text-decoration: none;
}
.btn-nav-cta:hover { background: #1A4F8B; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(13,43,78,0.25); }
.btn-nav-cta svg { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #0D2B4E; transition: all 0.3s; border-radius: 2px; }

/* ===== MOBILE NAV ===== */
.mobile-nav {
    display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 380px;
    height: 100vh; background: #F7F9FC; z-index: 2000; padding: 80px 40px 40px;
    transition: right 0.4s ease; box-shadow: -10px 0 40px rgba(13,43,78,0.12);
}
.mobile-nav.active { right: 0; }
.mobile-nav a:not(.btn-nav-cta) { display: block; font-size: 1.15rem; font-weight: 500; padding: 16px 0; border-bottom: 1px solid #dce6f0; color: #2D3436; }
.mobile-nav a.active { color: #1A4F8B; }
.mobile-nav .btn-nav-cta { margin-top: 24px; width: 100%; justify-content: center; border-bottom: none; }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #0D2B4E; }
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(13,43,78,0.4); z-index: 1999; }
.mobile-overlay.active { display: block; }

/* ===== HERO (Home) ===== */
.hero-wrapper {
    padding: 130px 24px 40px;
    background: #FAFAF8;
}
.hero-card {
    max-width: 1560px; margin: 0 auto;
    background: linear-gradient(rgba(13,43,78,0.6), rgba(13,43,78,0.65)), url('../img/home1.jpg') center/cover no-repeat;
    border-radius: 28px; overflow: hidden; position: relative;
    min-height: 85vh; display: flex; align-items: center;
    padding: 100px 60px 140px;
}
.hero-card::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.hero-card::after {
    content: ''; position: absolute; bottom: -80px; left: -80px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}
.hero-card-content { position: relative; z-index: 1; text-align: center; max-width: 1300px; margin: 0 auto; }
.hero-card-content h1 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: #fff; margin-bottom: 24px; text-wrap: balance; }
.hero-card-content h1 span { color: #fff; font-style: italic; }
.hero-card-content p { font-size: 1.15rem; color: rgba(255,255,255,0.85); margin-bottom: 36px; max-width: 900px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-card-content .section-label { background: rgba(255,255,255,0.2); color: #fff; font-weight: 700; letter-spacing: 2px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.btn-hero-cta {
    background: #0184d1; color: #fff; display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-cta:hover { background: #029ae6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(1,132,209,0.35); }
.btn-hero-outline {
    background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5);
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.hero-services-banner {
    position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
    display: flex; justify-content: space-between; align-items: stretch;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.15);
    border-radius: 0 0 28px 28px;
    padding: 0;
}
.hero-service-item {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 12px; padding: 24px 12px; text-decoration: none;
    transition: all 0.3s; position: relative;
}
.hero-service-item:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 20%; height: 60%;
    width: 1px; background: rgba(255,255,255,0.15);
}
.hero-service-item:hover {
    background: rgba(255,255,255,0.1);
}
.hero-service-item img {
    width: 52px; height: 52px; object-fit: contain;
    filter: brightness(0) invert(1); opacity: 0.9;
    transition: transform 0.3s;
}
.hero-service-item:hover img { opacity: 1; transform: scale(1.15); }
.hero-service-item span {
    font-size: 0.85rem; color: rgba(255,255,255,0.9); font-weight: 600;
    text-align: center; line-height: 1.3;
}
.hero-service-item:hover span { color: #fff; }
@media (max-width: 768px) {
    .hero-wrapper { padding: 90px 16px 16px; }
    .hero-card { padding: 60px 28px 100px; min-height: 60vh; border-radius: 20px; }
    .hero-card-content h1 { white-space: normal; }
    .hero-services-banner { flex-wrap: wrap; border-radius: 0 0 20px 20px; }
    .hero-service-item { flex: 0 0 33.33%; padding: 14px 8px; }
    .hero-service-item:not(:last-child)::after { display: none; }
    .hero-service-item img { width: 38px; height: 38px; }
    .hero-service-item span { font-size: 0.7rem; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(170deg, #FAFAF8 0%, #F2EFEA 50%, #EBE7E0 100%);
    text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
    content: ''; position: absolute; top: -200px; right: -200px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(200,150,46,0.08) 0%, transparent 70%);
}
.page-hero-bg {
    background-size: cover; background-position: center; background-repeat: no-repeat;
}
.page-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(170deg, rgba(250,250,248,0.88) 0%, rgba(242,239,234,0.85) 50%, rgba(235,231,224,0.82) 100%);
}
.page-hero-bg .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: #0D2B4E; margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: #6B6B6B; max-width: 600px; margin: 0 auto; line-height: 1.7; }
.page-hero .breadcrumb { margin-top: 20px; font-size: 0.88rem; color: #8A8A8A; }
.page-hero .breadcrumb a { color: #1A4F8B; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }


/* ===== INTRO BANNER ===== */
.intro-banner {
    background: linear-gradient(135deg, #1A4F8B, #0D2B4E);
    border-radius: 20px; padding: 40px 44px;
    position: relative; overflow: hidden;
}
.intro-banner::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(74,144,217,0.12);
}
.intro-banner::after {
    content: ''; position: absolute; bottom: -40px; left: -40px;
    width: 150px; height: 150px; border-radius: 50%;
    background: rgba(108,180,238,0.08);
}
.intro-banner p {
    color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: 1.8;
    position: relative; z-index: 1; max-width: none; margin: 0;
}
.intro-banner p strong {
    color: #fff; font-weight: 700;
}
.intro-banner-divider {
    width: 60px; height: 2px; background: rgba(255,255,255,0.25);
    margin: 16px 0; position: relative; z-index: 1;
}
@media (max-width: 768px) {
    .intro-banner { padding: 28px 24px; border-radius: 16px; }
    .intro-banner p { font-size: 0.95rem; }
}

/* ===== AGCI CARD ===== */
.agci-card {
    background: #fff; border-radius: 20px; padding: 44px 48px;
    box-shadow: 0 8px 40px rgba(13,43,78,0.08);
    border: 1px solid #e5e0d8;
}
.agci-card-header {
    display: flex; align-items: center; gap: 32px; margin-bottom: 28px;
    padding-bottom: 28px; border-bottom: 1px solid #e5e0d8;
}
.agci-logo-box {
    flex-shrink: 0; background: #F2EFEA; border-radius: 16px; padding: 20px;
    display: flex; align-items: center; justify-content: center;
}
.agci-logo-box img { width: 210px; }
.agci-title { font-size: 1.5rem; color: #0D2B4E; font-weight: 700; margin-bottom: 8px; }
.agci-subtitle { font-size: 0.95rem; color: #6B6B6B; line-height: 1.7; }
.agci-intro { font-size: 0.95rem; color: #5D6D7E; font-weight: 600; margin-bottom: 20px; }
.agci-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.agci-item {
    display: flex; align-items: flex-start; gap: 12px;
    background: #FAFAF8; border-radius: 12px; padding: 16px 20px;
}
.agci-item svg { flex-shrink: 0; margin-top: 2px; }
.agci-item span { font-size: 0.9rem; color: #3A3A3A; line-height: 1.6; }
@media (max-width: 768px) {
    .agci-card { padding: 28px 24px; }
    .agci-card-header { flex-direction: column; text-align: center; gap: 20px; }
    .agci-logo-box img { width: 130px; }
    .agci-grid { grid-template-columns: 1fr; }
}

/* ===== STATS BAR ===== */
.stats-bar { padding: 48px 0; background: #fff; border-top: 1px solid #e5e0d8; border-bottom: 1px solid #e5e0d8; }
.stats-bar .container { display: flex; align-items: center; justify-content: center; gap: 60px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item h3 { font-size: 2.2rem; color: #5D6D7E; margin-bottom: 4px; }
.stat-item p { font-size: 0.88rem; color: #8A8A8A; font-weight: 500; }
.stat-divider { width: 1px; height: 50px; background: #ddd8d0; }
.stats-bar-inner { display: flex; align-items: center; justify-content: center; gap: 60px; }
@media (max-width: 768px) {
    .stats-bar-inner { gap: 32px; flex-wrap: wrap; }
}

/* ===== SERVICES BAR ===== */
.services-bar { padding: 40px 0; background: #fff; border-top: 1px solid #e5e0d8; border-bottom: 1px solid #e5e0d8; }
.services-bar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: nowrap; }
.service-bar-item {
    display: flex; flex-direction: column; align-items: center; gap: 10px; text-decoration: none;
    white-space: nowrap; padding: 16px 20px; border-radius: 16px; transition: all 0.3s; text-align: center;
}
.service-bar-item:hover { background: #F2EFEA; transform: translateY(-3px); }
.service-bar-item img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
.service-bar-item span { font-size: 0.85rem; font-weight: 600; color: #0D2B4E; }

/* ===== CARDS (generic) ===== */
.card {
    background: #fff; border-radius: 20px; padding: 40px 32px; transition: all 0.4s;
    border: 2px solid #0184d1; position: relative; overflow: hidden;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #0D2B4E, #5D6D7E); transform: scaleX(0); transition: transform 0.4s; transform-origin: left;
}
.card:hover {
}
.card:hover::before { }
.card-icon {
    width: 64px; height: 64px; border-radius: 16px; background: #F2EFEA;
    display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.card-icon img { width: 36px; height: 36px; object-fit: contain; }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; color: #0D2B4E; }
.card p { font-size: 0.95rem; color: #6B6B6B; line-height: 1.7; }
.card-link { color: #1A4F8B; font-weight: 600; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; }
.card-link:hover { gap: 10px; color: #4A90D9; }
.card ul { margin-top: 12px; padding-left: 0; }
.card ul li { font-size: 0.9rem; color: #6B6B6B; padding: 4px 0; padding-left: 20px; position: relative; }
.card ul li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: #5D6D7E; }
.card-service { display: flex; flex-direction: column; padding: 32px 24px; text-align: center; }
.card-service h3 { font-size: 1.1rem; }
.card-icon-lg { width: 80px; height: 80px; border-radius: 50%; background: #F2EFEA; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.card-service ul { text-align: left; margin-top: 16px; }
.card-service ul li { display: flex; align-items: flex-start; gap: 8px; padding-left: 0; }
.card-service ul li::before { display: none; }
.card-service ul li i { flex-shrink: 0; margin-top: 2px; }
.card-service ul { margin-bottom: 24px; }
.card-service .btn { margin-top: auto; align-self: center; }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }

/* ===== IMAGE CARDS ===== */
.img-card { background: #fff; border-radius: 20px; overflow: hidden; transition: all 0.4s; }
.img-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(13,43,78,0.1); }
.img-card .img-wrap { height: 240px; overflow: hidden; }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.img-card:hover .img-wrap img { transform: scale(1.05); }
.img-card .img-body { padding: 28px; }
.img-card .tag {
    display: inline-block; padding: 4px 14px; border-radius: 50px;
    background: rgba(200,150,46,0.1); color: #5D6D7E; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px;
}
.img-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: #0D2B4E; }
.img-card p { font-size: 0.9rem; color: #6B6B6B; line-height: 1.6; }
.img-card ul { margin-top: 10px; padding-left: 0; }
.img-card ul li { font-size: 0.85rem; color: #6B6B6B; padding: 3px 0 3px 18px; position: relative; }
.img-card ul li::before { content: ''; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: #5D6D7E; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; background: #FAFAF8; }
.cta-card {
    background: linear-gradient(135deg, #1A4F8B, #0D2B4E);
    border-radius: 28px; padding: 80px; text-align: center; color: #fff;
    position: relative; overflow: hidden;
}
.cta-card::before {
    content: ''; position: absolute; top: -100px; left: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(74,144,217,0.15);
}
.cta-card::after {
    content: ''; position: absolute; bottom: -80px; right: -80px;
    width: 250px; height: 250px; border-radius: 50%;
    background: rgba(108,180,238,0.1);
}
.cta-card h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; position: relative; z-index: 1; }
.cta-card p { font-size: 1.05rem; opacity: 0.8; max-width: 540px; margin: 0 auto 36px; line-height: 1.7; position: relative; z-index: 1; }
.cta-card .btn { position: relative; z-index: 1; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

/* ===== VALORI ===== */
.valori-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px;
}
.valore-card {
    background: #fff; border-radius: 16px; padding: 36px 24px; text-align: center;
    border: 2px solid #0184d1; transition: all 0.4s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.valore-card:hover {
}
.valore-icon {
    width: 64px; height: 64px; border-radius: 50%;
    background: linear-gradient(135deg, #ECEEF0, #DEE2E6);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: #5D6D7E;
}
.valore-card h3 {
    font-size: 1.05rem; color: #0D2B4E; margin-bottom: 12px; font-weight: 700;
}
.valore-card p {
    font-size: 0.9rem; color: #555; line-height: 1.7;
}
@media (max-width: 1024px) {
    .valori-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .valori-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .valore-card { padding: 28px 18px; }
}
@media (max-width: 480px) {
    .valori-grid { grid-template-columns: 1fr; }
}

/* ===== GROWTH CHART ===== */
.growth-chart {
    background: #fff; border-radius: 20px; padding: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08); overflow: hidden;
}
.chart-container {
    padding: 32px 28px 24px; position: relative;
}
.chart-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 28px;
}
.chart-title {
    font-family: 'Roboto Slab', serif; font-size: 1.1rem;
    font-weight: 700; color: #0D2B4E;
}
.chart-badge {
    background: #0D2B4E; color: #fff; padding: 4px 14px;
    border-radius: 50px; font-size: 0.85rem; font-weight: 700;
}
.chart-bars {
    display: flex; align-items: flex-end; gap: 8px;
    height: 180px; position: relative; z-index: 2;
}
.chart-bar-group {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px;
    height: 100%;
    justify-content: flex-end;
}
.chart-bar {
    width: 100%; border-radius: 6px 6px 2px 2px;
    background: linear-gradient(180deg, #5D6D7E, #8899A6);
    transition: height 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    min-height: 4px;
}
.chart-bar.highlight {
    background: linear-gradient(180deg, #0D2B4E, #1A4F8B);
}
.chart-bar-group span {
    font-size: 0.65rem; color: #8A8A8A; font-weight: 600;
    letter-spacing: 0.5px;
}
.chart-line {
    position: absolute; top: 60px; left: 28px; right: 28px; height: 180px;
    z-index: 1; opacity: 0.3;
}
.chart-line svg { width: 100%; height: 100%; }
@media (max-width: 768px) {
    .chart-container { padding: 24px 18px 18px; }
    .chart-bars { height: 140px; gap: 5px; }
    .chart-bar-group span { font-size: 0.55rem; }
}

/* ===== HIGHLIGHT QUOTE ===== */
.highlight-quote {
    text-align: center; margin-top: 56px; padding: 0 20px;
    display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.highlight-quote-line {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, transparent, #5D6D7E, transparent);
}
.highlight-quote-icon {
    color: #5D6D7E; opacity: 0.6;
}
.highlight-quote p {
    font-size: 1.25rem; color: #333; line-height: 1.8;
    max-width: none; margin: 0; letter-spacing: 0.3px;
}
.highlight-quote p strong {
    color: #1A4F8B; font-weight: 700;
}

/* ===== NETWORK BANNER ===== */
.network-banner {
    background: linear-gradient(135deg, #0D2B4E, #1A4F8B);
    border-radius: 24px; padding: 48px 40px; position: relative; overflow: hidden;
}
.network-banner::before {
    content: ''; position: absolute; top: -80px; right: -80px;
    width: 250px; height: 250px; border-radius: 50%;
    background: rgba(74,144,217,0.12);
}
.network-hub {
    text-align: center; margin-bottom: 8px; position: relative; z-index: 2;
}
.hub-logo {
    width: 280px; height: auto; margin: 0 auto 12px; padding: 24px 32px;
    background: #fff; border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    animation: hubPulse 3s ease-in-out infinite;
}
.hub-logo img { width: 100%; height: auto; object-fit: contain; }
@keyframes hubPulse {
    0%, 100% { box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
    50% { box-shadow: 0 8px 40px rgba(74,144,217,0.5); }
}
.network-title {
    color: rgba(255,255,255,0.7); font-size: 1.4rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px; text-align: center;
    margin-bottom: 28px; position: relative; z-index: 2;
}
.network-lines {
    position: relative; z-index: 1; height: 50px; margin: 0 auto;
}
.network-lines svg { width: 100%; height: 100%; }
.dash-line {
    stroke: rgba(74,144,217,0.5); stroke-width: 0.5; stroke-dasharray: 3 2;
    animation: dashFlow 1.5s linear infinite;
}
.dash-line-up {
    animation: dashFlowUp 1.5s linear infinite;
}
@keyframes dashFlow {
    to { stroke-dashoffset: -10; }
}
@keyframes dashFlowUp {
    to { stroke-dashoffset: 10; }
}
@keyframes dashMoveDown {
    from { background-position: 0 0; }
    to { background-position: 0 16px; }
}
@keyframes dashMoveUp {
    from { background-position: 0 0; }
    to { background-position: 0 -16px; }
}
.network-nodes {
    display: flex; justify-content: space-between; align-items: center;
    gap: 16px; position: relative; z-index: 2;
}
.network-nodes-top { margin-bottom: 0; }
.network-nodes-bottom { margin-top: 0; }
.network-node {
    flex: 1; background: #fff; border-radius: 14px; padding: 24px 20px 16px;
    transition: all 0.4s; border: 2px solid transparent;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 110px; text-align: center; gap: 8px; overflow: hidden;
}
.node-name {
    font-size: 0.85rem; font-weight: 700; color: #0D2B4E;
    line-height: 1.2; margin-top: 4px;
}
.node-role {
    font-size: 0.72rem; color: #5D6D7E; line-height: 1.3;
}
.network-node:hover {
    transform: translateY(-6px); border-color: #5D6D7E;
    box-shadow: 0 12px 30px rgba(200,150,46,0.25);
}
.network-node img {
    width: 100%; height: 90px; object-fit: contain;
}
.network-node img.logo-lg {
    transform: scale(1.25);
}

@media (max-width: 1024px) {
    .network-nodes { flex-wrap: wrap; justify-content: center; }
    .network-node { flex: 0 0 calc(25% - 12px); }
    .network-lines svg { display: none; }
    .network-lines {
        height: auto; display: flex; justify-content: center;
    }
    .network-lines::after {
        content: ''; display: block; width: 2px; height: 40px;
        background: repeating-linear-gradient(
            to bottom,
            rgba(74,144,217,0.5) 0px,
            rgba(74,144,217,0.5) 4px,
            transparent 4px,
            transparent 8px
        );
        background-size: 2px 16px;
        animation: dashMoveDown 1s linear infinite;
    }
}
@media (max-width: 768px) {
    .network-banner { padding: 28px 16px; border-radius: 18px; }
    .network-nodes { gap: 10px; }
    .network-node { flex: 0 0 calc(33.33% - 8px); padding: 12px 10px 10px; border-radius: 10px; min-height: 65px; gap: 4px; }
    .network-node img { height: 45px; }
    .node-name { font-size: 0.7rem; }
    .node-role { font-size: 0.6rem; }
    .hub-logo { width: 140px; padding: 14px 18px; border-radius: 12px; }
    .network-title { font-size: 1rem; }
}
@media (max-width: 480px) {
    .network-banner { padding: 24px 12px; }
    .network-nodes { gap: 8px; }
    .network-node { flex: 0 0 calc(50% - 6px); padding: 14px 10px 10px; min-height: 70px; gap: 4px; }
    .network-node img { height: 40px; }
    .node-name { font-size: 0.68rem; }
    .node-role { font-size: 0.58rem; }
    .hub-logo { width: 120px; padding: 12px 16px; }
    .network-title { font-size: 0.85rem; }
}

/* ===== SLOGAN SECTION ===== */
.slogan-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1A4F8B, #0D2B4E);
    position: relative; overflow: hidden;
}
.slogan-section::before {
    content: ''; position: absolute; top: -100px; left: -100px;
    width: 300px; height: 300px; border-radius: 50%;
    background: rgba(74,144,217,0.15);
}
.slogan-section::after {
    content: ''; position: absolute; bottom: -80px; right: -80px;
    width: 250px; height: 250px; border-radius: 50%;
    background: rgba(108,180,238,0.1);
}
.slogan-text {
    font-family: 'Roboto Slab', serif;
    font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
    color: #fff; text-align: center; line-height: 1.3;
    position: relative; z-index: 1;
    letter-spacing: -0.5px;
}
.slogan-text span {
    color: #fff; font-style: italic;
}

/* ===== PARTNER SECTION ===== */
.partners-section { padding: 80px 0; background: #F2EFEA; overflow: hidden; }
.partners-marquee {
    width: 100%; overflow: hidden; position: relative;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
    display: flex; gap: 24px; width: max-content;
    animation: marqueeScroll 40s linear infinite;
}
.marquee-card {
    flex-shrink: 0; width: 240px; height: 140px;
    background: #fff; border-radius: 16px; padding: 16px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.marquee-card img {
    width: 100%; height: 100%; object-fit: contain;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== CHECKMARK LIST ===== */
.check-list { margin-top: 24px; }
.check-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 1rem; color: #2D3436; padding: 10px 0;
}
.check-list li svg { flex-shrink: 0; color: #1A4F8B; }

/* ===== CONSTELLATION DIAGRAM ===== */
.constellation {
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px;
    margin-top: 40px;
}
.constellation-item {
    background: #fff; border-radius: 16px; padding: 16px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05); border: 1px solid #e5e0d8;
    transition: all 0.3s; text-align: center; min-width: 140px;
}
.constellation-item:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); border-color: #5D6D7E; }
.constellation-item img { width: 80px; height: 50px; object-fit: contain; margin: 0 auto 8px; }
.constellation-item p { font-size: 0.82rem; color: #6B6B6B; font-weight: 500; }

/* ===== FOOTER ===== */
.footer { background: #0D2B4E; color: #fff; padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 60px; }
.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.7; max-width: 300px; }
.footer h4 {
    font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.85rem;
    text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; color: rgba(255,255,255,0.35);
}
.footer ul li { margin-bottom: 14px; }
.footer ul a { font-size: 0.95rem; color: rgba(255,255,255,0.65); transition: color 0.3s; }
.footer ul a:hover { color: #7A8B9B; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1); padding-top: 32px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.3s; }
.footer-bottom a:hover { color: #7A8B9B; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
    width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55);
    transition: all 0.3s;
}
.footer-social a:hover { background: #1A4F8B; color: #fff; }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

.fade-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-left.visible { opacity: 1; transform: translateX(0); }

.fade-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-right.visible { opacity: 1; transform: translateX(0); }

.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.7s ease, transform 0.7s ease; }
.scale-in.visible { opacity: 1; transform: scale(1); }

.slide-up { opacity: 0; transform: translateY(60px); transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-up.visible { opacity: 1; transform: translateY(0); }

/* Counter animation */
.counter { display: inline-block; }

/* ===== GRID HELPERS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 28px; }
.grid-2-text { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }
.section-alt { padding: 100px 0; background: #F2EFEA; }

/* ===== FORM ===== */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-weight: 500; font-size: 0.9rem; color: #0D2B4E; margin-bottom: 8px; }
.form-control {
    width: 100%; padding: 14px 18px; border: 2px solid #e0dbd4; border-radius: 12px;
    font-size: 0.95rem; font-family: 'Roboto', sans-serif; background: #fff;
    transition: border-color 0.3s; color: #2D3436; outline: none;
}
.form-control:focus { border-color: #5D6D7E; }
textarea.form-control { min-height: 140px; resize: vertical; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235A7A9B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 16px; }
.form-check input[type="checkbox"] { margin-top: 4px; accent-color: #1A4F8B; }
.form-check label { font-size: 0.85rem; color: #7A7A7A; line-height: 1.5; }
.form-check a { color: #1A4F8B; text-decoration: underline; }

/* ===== TEAM CARDS ===== */
.team-card { text-align: center; }
.team-card .team-img { width: 100%; height: 340px; border-radius: 20px; overflow: hidden; margin-bottom: 20px; position: relative; }
.team-card .team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; color: #0D2B4E; }
.team-card p { font-size: 0.9rem; color: #7A9ABB; }

/* ===== VALUE CARDS ===== */
.value-card {
    background: #fff; border-radius: 20px; padding: 36px 28px; text-align: center;
    border: 2px solid #0184d1; transition: all 0.4s;
}
.value-card:hover {
}
.value-icon {
    width: 64px; height: 64px; border-radius: 50%; background: #E8F0FA;
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
    color: #1A4F8B; font-size: 1.4rem;
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: #0D2B4E; }
.value-card p { font-size: 0.9rem; color: #6B6B6B; line-height: 1.6; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 40px; }
.timeline::before {
    content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(to bottom, #4A90D9, #1A4F8B);
}
.timeline-item { position: relative; margin-bottom: 48px; }
.timeline-item::before {
    content: ''; position: absolute; left: -33px; top: 6px;
    width: 16px; height: 16px; border-radius: 50%;
    background: #4A90D9; border: 3px solid #E8F0FA;
}
.timeline-item h3 { font-size: 1.1rem; color: #1A4F8B; margin-bottom: 4px; }
.timeline-item h4 { font-size: 1rem; color: #0D2B4E; margin-bottom: 8px; }
.timeline-item p { font-size: 0.92rem; color: #6B6B6B; line-height: 1.6; }

/* ===== CERTIFICATION CARDS ===== */
.cert-card {
    background: #fff; border-radius: 16px; padding: 28px 24px; text-align: center;
    border: 2px solid #0184d1; transition: all 0.3s;
}
.cert-card:hover {
}
.cert-card h4 { font-size: 0.95rem; color: #1A4F8B; margin-bottom: 6px; }
.cert-card p { font-size: 0.82rem; color: #6B6B6B; }

/* ===== APPROACH STEPS ===== */
.step-card {
    background: #fff; border-radius: 20px; padding: 40px 32px; text-align: center;
    position: relative; border: 2px solid #0184d1; transition: all 0.4s;
}
.step-card:hover {
}
.step-number {
    width: 56px; height: 56px; border-radius: 50%;
    background: linear-gradient(135deg, #1A4F8B, #4A90D9);
    color: #fff; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; font-weight: 700; margin: 0 auto 20px;
    font-family: 'Roboto Slab', serif;
}
.step-card h3 { font-size: 1.1rem; color: #0D2B4E; margin-bottom: 10px; }
.step-card p { font-size: 0.9rem; color: #6B6B6B; line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-dark { padding: 100px 0; background: #0D2B4E; color: #fff; position: relative; overflow: hidden; }
.testimonials-dark::before {
    content: ''; position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(74,144,217,0.25) 0%, transparent 70%);
}
.testimonials-dark .section-label { background: rgba(74,144,217,0.2); color: #7A8B9B; }
.testimonials-dark .section-title { color: #fff; }
.testimonials-dark .section-subtitle { color: rgba(255,255,255,0.55); }
.testimonial-card {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px; padding: 36px; transition: all 0.3s;
}
.testimonial-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.testimonial-stars { color: #F0C040; font-size: 1rem; margin-bottom: 20px; letter-spacing: 4px; }
.testimonial-text { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.8; margin-bottom: 28px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #1A4F8B, #4A90D9);
    display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 0.9rem;
}
.testimonial-author h4 { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 0.95rem; }
.testimonial-author p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }

/* ===== FEATURE LIST ===== */
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-icon {
    flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: #E8F0FA;
    display: flex; align-items: center; justify-content: center; color: #1A4F8B;
}
.feature-icon img { width: 24px; height: 24px; object-fit: contain; }
.feature-item h4 { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: #0D2B4E; }
.feature-item p { font-size: 0.9rem; color: #6B6B6B; line-height: 1.6; }

/* ===== ABOUT IMAGE BLOCK ===== */
.about-img { position: relative; }
.about-img .img-wrapper { border-radius: 24px; overflow: hidden; height: 460px; box-shadow: 0 20px 50px rgba(13,43,78,0.1); }
.about-img .img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.about-img .accent { position: absolute; top: -20px; right: -20px; width: 120px; height: 120px; border-radius: 20px; background: #E8F0FA; z-index: -1; }
.about-img.portrait { max-width: 300px; margin: 0 auto; }
.about-img.portrait .img-wrapper { height: 400px; }

/* ===== CONTACT INFO ===== */
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.contact-info-icon {
    flex-shrink: 0; width: 52px; height: 52px; border-radius: 14px; background: #E8F0FA;
    display: flex; align-items: center; justify-content: center; color: #1A4F8B;
}
.contact-info-item h4 { font-family: 'Roboto', sans-serif; font-weight: 600; color: #0D2B4E; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.92rem; color: #7A7A7A; line-height: 1.6; }

/* ===== JOB CARD ===== */
.job-card {
    background: #fff; border-radius: 20px; padding: 36px; border: 1px solid #dce6f0;
    transition: all 0.4s; display: flex; justify-content: space-between; align-items: center; gap: 24px;
}
.job-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,43,78,0.08); border-color: #D4E4F7; }
.job-meta .job-tag {
    display: inline-block; padding: 4px 12px; border-radius: 50px;
    background: #E8F0FA; color: #1A4F8B; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.job-meta h3 { font-size: 1.2rem; color: #0D2B4E; margin-bottom: 6px; }
.job-meta p { font-size: 0.9rem; color: #6B6B6B; }
.job-details { display: flex; gap: 20px; margin-top: 10px; }
.job-detail { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #7A9ABB; }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
    width: 100%; height: 350px; border-radius: 20px; overflow: hidden;
    background: #dce6f0; display: flex; align-items: center; justify-content: center;
}
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

/* ===== BENEFIT GRID ===== */
.benefit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }
.benefit-item {
    background: #fff; border-radius: 16px; padding: 24px; border: 1px solid #dce6f0;
    transition: all 0.3s;
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(13,43,78,0.06); border-color: #4A90D9; }
.benefit-item h4 { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 0.95rem; color: #0D2B4E; margin-bottom: 6px; }
.benefit-item p { font-size: 0.85rem; color: #6B6B6B; line-height: 1.5; }

/* ===== COVERAGE GRID ===== */
.coverage-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.coverage-item {
    background: #fff; border-radius: 16px; padding: 28px 24px; text-align: center;
    border: 1px solid #dce6f0; transition: all 0.3s;
}
.coverage-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(13,43,78,0.08); border-color: #4A90D9; }
.coverage-item .coverage-icon { font-size: 2rem; margin-bottom: 12px; }
.coverage-item h4 { font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 0.95rem; color: #0D2B4E; margin-bottom: 6px; }
.coverage-item p { font-size: 0.82rem; color: #6B6B6B; line-height: 1.5; }

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
    display: none; text-align: center; padding: 60px 40px; background: #fff;
    border-radius: 20px; border: 1px solid #dce6f0;
}
.success-msg svg { margin: 0 auto 20px; color: #4A90D9; }
.success-msg h3 { font-size: 1.5rem; color: #0D2B4E; margin-bottom: 12px; }
.success-msg p { color: #6B6B6B; }

/* ===== GRAZIE PAGE ===== */
.grazie-section {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(170deg, #F7F9FC 0%, #E8F0FA 50%, #D4E4F7 100%);
    padding: 160px 24px 100px;
}
.grazie-card {
    background: #fff; border-radius: 28px; padding: 60px 48px; text-align: center;
    max-width: 550px; box-shadow: 0 20px 60px rgba(13,43,78,0.1);
}
.grazie-card .check-circle {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, #1A4F8B, #4A90D9);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px; color: #fff; font-size: 2rem;
}
.grazie-card h1 { font-size: 2rem; color: #0D2B4E; margin-bottom: 16px; }
.grazie-card p { color: #7A7A7A; line-height: 1.7; margin-bottom: 12px; }
.grazie-card .redirect-text { font-size: 0.85rem; color: #8A8A8A; margin-top: 24px; }

/* ===== LEGAL PAGES (Privacy & Cookie Policy) ===== */
.legal-content {
    max-width: 900px; margin: 0 auto;
}
.legal-block {
    margin-bottom: 40px; padding-bottom: 32px;
    border-bottom: 1px solid #e5e0d8;
}
.legal-block:last-child { border-bottom: none; margin-bottom: 0; }
.legal-block h2 {
    font-family: 'Roboto Slab', serif; font-size: 1.4rem;
    color: #0D2B4E; margin-bottom: 16px; font-weight: 700;
}
.legal-block h3 {
    font-size: 1.1rem; color: #1A4F8B; margin: 24px 0 12px;
    font-weight: 600;
}
.legal-block p {
    color: #2D2D2D; line-height: 1.8; margin-bottom: 12px; font-size: 0.95rem;
}
.legal-block ul {
    list-style: none; padding: 0; margin: 0 0 16px;
}
.legal-block ul li {
    position: relative; padding-left: 20px; margin-bottom: 10px;
    color: #2D2D2D; line-height: 1.7; font-size: 0.95rem;
}
.legal-block ul li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%;
    background: #5D6D7E;
}
.legal-block a { color: #1A4F8B; text-decoration: underline; }
.legal-block a:hover { color: #0D2B4E; }

.cookie-table-wrapper {
    overflow-x: auto; margin: 16px 0 24px;
    border-radius: 10px; border: 1px solid #e5e0d8;
}
.cookie-table {
    width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
.cookie-table thead { background: #F2EFEA; }
.cookie-table th {
    padding: 12px 16px; text-align: left; font-weight: 600;
    color: #0D2B4E; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.5px;
}
.cookie-table td {
    padding: 12px 16px; color: #2D2D2D; border-top: 1px solid #e5e0d8;
}
.cookie-table tbody tr:hover { background: #FAFAF8; }

/* ===== NEWS ===== */
.news-filters {
    display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 48px;
}
.news-filter {
    background: #fff; border: 1px solid #dce6f0; border-radius: 50px;
    padding: 10px 24px; font-size: 0.9rem; font-weight: 500; color: #5A7A9B;
    cursor: pointer; transition: all 0.3s;
}
.news-filter:hover { border-color: #1A4F8B; color: #1A4F8B; }
.news-filter.active { background: #0D2B4E; color: #fff; border-color: #0D2B4E; }
.news-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.news-card {
    background: #fff; border-radius: 16px; overflow: hidden;
    border: 1px solid #e5e0d8; transition: all 0.4s;
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }
.news-img { width: 100%; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.news-card:hover .news-img img { transform: scale(1.05); }
.news-body { padding: 24px; }
.news-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.news-date { font-size: 0.82rem; color: #8A8A8A; }
.news-tag {
    font-size: 0.75rem; font-weight: 600; color: #1A4F8B; background: #F2EFEA;
    padding: 4px 12px; border-radius: 50px;
}
.news-body h3 { font-size: 1.1rem; color: #0D2B4E; margin-bottom: 10px; line-height: 1.4; }
.news-body p { font-size: 0.9rem; color: #6B6B6B; line-height: 1.6; margin-bottom: 16px; }
.news-body .card-link { font-size: 0.88rem; }
.news-pagination {
    display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 56px;
}
.pagination-num, .pagination-arrow {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px; font-size: 0.95rem; font-weight: 500; color: #5A7A9B;
    border: 1px solid #dce6f0; transition: all 0.3s; text-decoration: none;
}
.pagination-num:hover, .pagination-arrow:hover { border-color: #1A4F8B; color: #1A4F8B; }
.pagination-num.active { background: #0D2B4E; color: #fff; border-color: #0D2B4E; }

/* ===== ARTICLE DETAIL ===== */
.article-back {
    display: inline-flex; align-items: center; gap: 8px; color: #1A4F8B; font-weight: 500;
    font-size: 0.9rem; text-decoration: none; margin-bottom: 32px; transition: all 0.3s;
}
.article-back:hover { color: #0D2B4E; gap: 10px; }
.article-meta {
    display: flex; flex-wrap: wrap; align-items: center; gap: 20px;
    padding-bottom: 24px; margin-bottom: 40px; border-bottom: 1px solid #e5e0d8;
}
.article-meta .news-date { display: flex; align-items: center; gap: 6px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { max-width: 100%; }
    .grid-2-text { grid-template-columns: 1fr; gap: 48px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-5 { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .nav-links, .nav-right .btn, .nav-right .btn-nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
    .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
    .grid-2-text { grid-template-columns: 1fr; }
    .hero { padding: 130px 0 80px; min-height: 70vh; }
    .page-hero { padding: 130px 0 60px; }
    .cta-card { padding: 48px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; text-align: center; display: flex; flex-direction: column; align-items: center; }
    .footer-grid > div:nth-child(2) { grid-column: 1 / -1; text-align: center; }
    .stats-bar .container { gap: 32px; }
    .stat-divider { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .job-card { flex-direction: column; align-items: flex-start; }
    .section, .section-alt { padding: 70px 0; }
    .benefit-grid { grid-template-columns: 1fr; }
    .coverage-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .news-filters { gap: 8px; }
    .news-filter { padding: 8px 16px; font-size: 0.82rem; }
}
