/* Main font set to Apple System */

:root {
    --primary: #1e3265;
    /* Classic Apple Blue */
    --primary-light: rgb(76, 168, 255);
    --bg: #F5F5F7;
    /* Apple Light Grey */

    --card-bg: rgba(255, 255, 255, 0.72);
    --glass-white: rgba(255, 255, 255, 0.85);

    --text: #1d1d1f;
    /* SF Text */
    --text-muted: #86868b;

    --border: rgba(0, 0, 0, 0.08);
    --header-h: 60px;
    --radius: 24px;
    /* Reduced from 40px/20px for cleaner look */

    --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.47;
    font-weight: 400;
    overflow-x: hidden;
    scroll-margin-top: 100px;

    /*
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;*/

}

section {
    scroll-margin-top: 150px;
}

hr {
    border: 0;
    height: 1.5px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.4), transparent);
    margin: 10px 0;
    width: 100%;
}

/* Professional Glassmorphism Background */
.bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    overflow: hidden;
}

/* Base Navy Tint Layer */
.bg-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(30, 50, 101, 0.05), transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(30, 50, 101, 0.03), transparent 50%);
    pointer-events: none;
}

/* Texture Overlay for that premium "physical" feel */
.bg-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.blob {
    position: absolute;
    filter: blur(160px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.25;
    animation: move-ultra-slow 60s infinite alternate ease-in-out;
}

.blob-1 {
    width: 1000px;
    height: 1000px;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, #1e3265, transparent 80%);
}

.blob-2 {
    width: 800px;
    height: 800px;
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, #3d6eeb, transparent 80%);
    animation-delay: -10s;
}

.blob-3 {
    width: 1200px;
    height: 1200px;
    top: 20%;
    right: -20%;
    background: radial-gradient(circle, rgba(30, 50, 101, 0.6), transparent 70%);
    animation-delay: -20s;
}

.blob-4 {
    width: 700px;
    height: 700px;
    bottom: 10%;
    left: 10%;
    background: radial-gradient(circle, #0071e3, transparent 80%);
    animation-delay: -30s;
}

@keyframes move-ultra-slow {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    100% {
        transform: translate(150px, 100px) scale(1.1) rotate(5deg);
    }
}

/* Refined Premium Glassmorphism */
/* Refined Premium Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.6);
    /* Slightly clearer */
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.6);
    /* More defined glassy edge */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

/* "Scopri di più" Button Styling */
.btn-more {
    display: flex;
    width: fit-content;
    margin: 14px auto 0;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #1e3265;
    /* Brand Navy */
    border: none;
    border-radius: 100px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(30, 50, 101, 0.3);
}

.btn-more:hover {
    background: #263e7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 50, 101, 0.4);
}

/* Intro Hero Section */
#intro-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    z-index: 10;
}

#intro-hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

#intro-hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#intro-hero .intro-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

#intro-hero .intro-content {
    max-width: 900px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
}

#intro-hero .intro-label {
    background: var(--primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#intro-hero .intro-title {
    font-size: 32px;
    line-height: 1.2;
    font-weight: 800;
    color: #fff !important;
    text-transform: uppercase;
}

#intro-hero .intro-qr-container {
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

#intro-hero .intro-qr {
    width: 160px;
    height: 160px;
    display: block;
}

#intro-hero .intro-text {
    font-size: 18px;
    line-height: 1.4;
    color: #fff !important;
    margin: 0;
}

.intro-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 24px;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(30, 50, 101, 0.5);
}

.intro-btn:hover {
    background: #263e7a;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 50, 101, 0.6);
}

@media (max-width: 768px) {
    #intro-hero {
        height: auto;
        padding: 100px 10px 20vh;
    }

    #intro-hero .intro-title {
        font-size: 22px;
    }

    #intro-hero .intro-qr {
        width: 120px;
        height: 120px;
    }

    #intro-hero .intro-text {
        font-size: 16px;
    }
}

/* Hero Section */
.hero {

    padding: 20px 7px 0px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    /* Context for absolute bg */
}

/* Background Logos Layer */
.hero-bg-logos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    z-index: 1;
    pointer-events: auto;
}

.badge-pill {
    display: inline-block;
    padding: 6px 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.bg-map {
    position: absolute;
    width: 120%;
    /* Widen map slightly */
    max-width: 80%;
    height: auto;
    opacity: 0.2;
    top: 25%;
}

.bg-logo-left {
    position: relative;
    height: 64px;
    width: auto;
}

.bg-logo-right {
    position: relative;
    top: 8px;
    height: 36px;
    width: auto;
}

.hero-description {
    position: relative;
    z-index: 10;
    margin-top: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.hero-description p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: var(--text);
}

/* 2x2 Hero Gallery */
.hero-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-width: 500px;
}

.gallery-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Premium PDI CTA Section */
.cta-pdi {
    margin-top: 20px;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-align: left;
    box-shadow: none;
}

@media (max-width: 768px) {
    .cta-pdi {
        flex-direction: column;
    }
}

.pdi-image-container {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.pdi-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.pdi-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.pdi-info-box .qr-wrapper {
    background: #fff;
    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: inline-block;
}

.pdi-info-box .qr-wrapper img {
    width: 140px;
    height: 140px;
    display: block;
}

.pdi-info-box p {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin: 10px 0px 0px 0px;
}

/* PDI Methodology Table */
.pdi-table-container {
    margin-top: 40px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.pdi-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    text-align: left;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pdi-table th {
    background: rgba(0, 0, 0, 0.03);
    padding: 10px 9px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.pdi-table td {
    padding: 7px 5px;
    font-size: 14px;
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    vertical-align: top;
    line-height: 1.4;
}

.pdi-table tr:last-child td {
    border-bottom: none;
}

.pdi-table tr:hover {
    background: rgba(255, 255, 255, 0.6);
}

.pdi-table td:first-child {
    font-weight: 700;
    color: var(--primary);
}

.pdi-table th:nth-child(2),
.pdi-table td:nth-child(2) {
    text-align: center;
}

@media (max-width: 600px) {

    .pdi-table th,
    .pdi-table td,
    .cost-table th,
    .cost-table td {
        font-size: 13px;
        padding: 5px 4px;
    }
}

.cost-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    overflow: hidden;
}

.cost-table th {
    background: rgba(0, 0, 0, 0.05);
    padding: 12px 10px;
    text-align: left;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cost-table td {
    padding: 12px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    color: var(--text);
}

.cost-table tr:last-child td {
    border-bottom: none;
}

.text-green {
    color: #28a745 !important;
}

.hero h1 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.125;
    color: #111;
    position: relative;
    z-index: 1;
}

.h1secondario {
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.125;
    margin-top: 10px;
    color: #111;
    position: relative;
    z-index: 1;
}

.hero h2 {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.125;
    color: #111;
    position: relative;
    z-index: 1;
}

.text-gradient {
    background: -webkit-linear-gradient(135deg, #1d1d1f 0%, #434344 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: #1d1d1f;
}

/* Hero UI Refinements */
.hero-divider {
    width: 200px;
    height: 1px;
    background: rgba(30, 50, 101, 0.15);
    margin: 20px auto;
}

.hero-claim-pill {
    display: inline-block;
    padding: 8px 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

/* Section Wrapper */
.section-wrapper {
    max-width: 860px;
    /* Slightly wider for better reading width */
    margin: 0 auto;
}

/* Card Structure */
.card {
    border-radius: var(--radius);
    /* Reduced to 24px via var */
    padding: 40px;
    margin-bottom: 40px;
    /* More breathing room */
    position: relative;
    overflow: visible;
    /* Changed to visible for potential popouts/shadows */
}

/*
.card h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #1d1d1f;
    text-align: center;
}
*/
.card h2,
.hero h3 {

    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: .012em;
    text-align: center;
    color: #000000;
    -webkit-background-clip: text;
    background-clip: text;
}

.card p {

    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: .012em;
    text-align: center;
    color: #000000;
    -webkit-background-clip: text;
    background-clip: text;
}

/* Navigation Points - Premium Floating Dock */
.points-nav {
    display: flex;
    justify-content: center;
    padding: 20px 10px 10px;
    margin: 0 auto;
    position: relative;
    /* Default relative */
    z-index: 900;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.points-nav.hidden-nav {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
}

/* State when fixed via JS */
.points-nav.fixed-mode {
    position: fixed;
    top: 70px;
    /* Match sticky top */
    left: 0;
    right: 0;
    width: 100%;
}

.points-nav-container {
    pointer-events: auto;
    /* Re-enable clicks on the nav itself */
    display: inline-flex;
    gap: 28px;
    /* Increased for arrow spacing */
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.65);
    /* Slightly more opaque for readability over content */
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    overflow-x: auto;
    max-width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.points-nav-container::-webkit-scrollbar {
    display: none;
}

.point-card {
    position: relative;
    overflow: visible;
    flex: 0 0 auto;
    padding: 8px 18px;
    border-radius: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    /* Make them look like buttons */
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    color: var(--primary);
}

/* Arrow between items */
.point-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -19px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-right: 2px solid var(--primary);
    border-bottom: 2px solid var(--primary);
    transform: translateY(-50%) rotate(-45deg);
}

.point-card.active-nav {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    border: 1px solid var(--primary);
}

.point-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: inherit;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

/* ... existing .tag ... */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(0, 113, 227, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    border: none;
}

.tag i {
    margin-right: 6px;
    font-size: 11px;
}

/* Media Box - No Black Border */
.media-box {
    width: 100%;
    background: #000;
    /*border-radius: 16px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Modern Shadow - No Border */
    border: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
    /* added very subtle 1px shadow-ring instead of border for sharpness without hardness */
}

.media-box1 {
    width: 100%;
    background: #000;
    /*border-radius: 16px;*/
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Modern Shadow - No Border */
    border: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.03);
    /* added very subtle 1px shadow-ring instead of border for sharpness without hardness */
}

.media-box img,
.media-box video,
.media-box1 img,
.media-box1 video {
    width: 100%;
    height: 100%;
}

.media-box img,
.media-box1 img {
    object-fit: cover;
}

/* ... existing .expanded-area ... */
.expanded-area {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    margin: 0px 10px;
}

.expanded-area.active {
    max-height: 4000px;
    opacity: 1;
}

/* ... existing tables ... */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    border: none;
}

th,
td {
    padding: 16px 4px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text);
}

th {
    background: transparent;
    font-weight: 600;
    text-transform: none;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

tr:last-child td {
    border-bottom: none;
}

/* Slideshow Styles (Fade) */
.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.fade-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    /* Wait 1.5s (while new slide fades in), then hide */
    transition: opacity 0s linear 1.5s;
    z-index: 1;
}

.fade-item.active {
    opacity: 1;
    z-index: 2;
    /* Fade in immediately over 1.5s */
    transition: opacity 1.5s ease-in-out;
}

.fade-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Elegant Title for Fascia 5 */
.title-elegant {
    font-size: 19px;
    /* Reduced specific size */
    font-weight: 500;
    /* Medium weight, not bold */
    line-height: 1.4;
    color: #1d1d1f;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    /* Ensure system font */
}

.uppercase {
    text-transform: uppercase;
}

/* Blue Pill Button */
.btn-blue-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    /* Slightly tighter padding */
    background-color: #1e3265;
    /* Brand Navy */
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    /* Slightly smaller */
    font-weight: 600;
    text-transform: none;
    /* Apple buttons usually aren't uppercase */
    letter-spacing: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 28px;
    box-shadow: 0 4px 15px rgba(30, 50, 101, 0.3);
    /* Adjusted shadow color */
}

.btn-blue-pill:hover {
    transform: translateY(-1px);
    background-color: #263e7a;
    /* Slightly lighter on hover */
    box-shadow: 0 6px 20px rgba(30, 50, 101, 0.4);
}

/* ... existing utils ... */
.text-red {
    color: #FF3B30 !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-green {
    color: #34C759 !important;
}

.section-subtitle {
    color: var(--primary);
    font-size: 18px;
    margin: 24px 0 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-align: center;
}

.scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ... existing header ... */
header {
    position: fixed;
    top: 15px;
    left: 7px;
    right: 7px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background 0.5s ease, box-shadow 0.5s ease, backdrop-filter 0.5s ease;

    /* Custom Glassmorphism */
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .header-link {
        display: none;
    }
}

/* Floating CTA - Bottom Bar Style */
.cta-fixed {
    position: fixed;
    bottom: 15px;
    left: 10px;
    right: 10px;
    /* Full width with spacing */
    width: auto;
    max-width: none;
    padding: 0;
    z-index: 1000;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* .cta-fixed2 removed as it is now merged into .cta-fixed */

.cta-container2 {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 24px;
    margin-bottom: 24px;
    /* Rounded rect like navbar */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    gap: 6px;
    width: 100%;
    /* Fill the wrapper */
    margin: 0;
}

.cta-container {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 24px;
    /* Rounded rect like navbar */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    gap: 6px;
    width: 100%;
    /* Fill the wrapper */
    margin: 0;
}

.cta-container p,
.cta-container2 p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

.cta-info {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    color: var(--text);
}

.cta-info span {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    margin-top: 2px;
}

.call-div {
    pointer-events: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 12px;
    border-radius: 24px;
    /* Rounded rect like navbar */
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    gap: 6px;
    width: 100%;
    /* Fill the wrapper */
    margin: 0;
}

.call-btn {
    background: #992b2b;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
    white-space: nowrap;
    width: 100%;
}

.btn-cta {
    background: #992b2b;
    padding: 10px 16px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
    white-space: nowrap;
}

.btn-cta:active {
    transform: scale(0.96);
}

.btn-premium-catalog {
    display: inline-block;
    background: #1e3265;
    color: #fff;
    padding: 16px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


@media (max-width: 400px) {
    .hero h1 {
        font-size: 20px;
    }

    .card {
        padding: 14px 0px;
    }

    .cta-info {
        font-size: 13px;
    }

    /* Fix Navbar Logos on small screens */
    .logo img {
        height: 29px !important;
        /* Force smaller size */
    }

    .logo div {
        gap: 8px !important;
    }

    header {
        padding: 0 10px;
        /* Slightly reduce padding */
    }
}

/* Glass Footer */
footer.glass-footer {
    padding: 30px 24px 120px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 40px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.footer-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-nav a:hover {
    opacity: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    font-size: 20px;
    color: var(--text);
    opacity: 0.6;
    transition: all 0.3s;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
}

/* Mobile Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    padding: 80px 24px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay.active {
    transform: translateX(0);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #d32f2f;
    /* Specialized Red for this CTA */
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.3);
    margin-top: 10px;
}

.btn-submit:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(211, 47, 47, 0.4);
}

.overlay-link {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--text);
    text-decoration: none;
    line-height: 1.1428571429;
    font-weight: 600;
    letter-spacing: .007em;
    display: flex;
    align-items: center;
}

.submenu-toggle {
    padding: 10px;
    margin: -10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.submenu-toggle.active {
    transform: rotate(180deg);
}

.submenu {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    margin-left: 20px;
    margin-bottom: 0;
}

.submenu.active {
    max-height: 400px;
    opacity: 1;
    margin-bottom: 24px;
}

.submenu-item {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text);
    opacity: 0.8;
    text-decoration: none;
    display: block;
    font-weight: 500;
}

.submenu-item:last-child {
    margin-bottom: 0;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 32px;
    color: var(--text);
    cursor: pointer;
}

/* Map Section */
.map-box {
    width: 100%;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.4);
    position: relative;
    background: #e5e5ea;
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Expanded Area Logo */
.expanded-logo {
    display: block;
    margin: 0 auto 20px;
    max-width: -moz-available;
    max-width: -webkit-fill-available;
    max-width: fill-available;
    height: auto;
}

.scroll-indicator {
    /* --- INIZIO MODIFICHE --- */

    /* 1. Sgancia l'elemento dal flusso normale */
    position: fixed;
    /* Usa 'fixed' se vuoi che resti lì anche mentre scorri la pagina */

    /* 2. Posiziona verticalmente al 50% */
    top: 50%;

    /* 3. Posiziona a destra (regola i pixel a piacere) */
    right: 10px;

    /* 4. Correzione fondamentale: sposta l'elemento su del 50% della sua stessa altezza per centrarlo perfettamente */
    transform: translateY(-50%);

    /* 5. RIMUOVI queste proprietà perché non servono più o creano conflitti: */
    /* align-self: flex-end; */
    /* margin-bottom: 245px; */

    /* --- FINE MODIFICHE --- */

    pointer-events: auto;

    /* Stile visivo (invariato) */
    color: #1e3265;
    background: rgba(255, 255, 255, 0.40);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;

    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    box-shadow: 0 4px 15px rgba(30, 50, 101, 0.2);

    /* Nota: Se l'animazione 'bounce' usa 'transform', potrebbe andare in conflitto con translateY(-50%) */
    animation: bounce 2.5s infinite;
    transition: all 1s ease;
}

.scroll-indicator.hidden-arrow {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }
}

/* Cost Comparison Table Fascia 1 */
.cost-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    overflow: hidden;
}

.cost-table th {
    background: rgba(0, 0, 0, 0.05);
    padding: 10px;
    text-align: left;
    font-weight: 700;
}

.cost-table th:last-child {
    text-align: center;
}

.cost-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cost-table .price-col {
    font-weight: 700;
    white-space: nowrap;
    text-align: center;
}

/* ==========================================================================
   MOBILE-ONLY STYLES (Refactored from Inline Styles)
   Target: Smartphone & Tablet (< 1024px)
   ========================================================================== */
@media (max-width: 1023px) {

    /* Utility & General */
    .m-cursor-pointer {
        cursor: pointer;
    }

    .m-flex-align-center {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .m-logo-img-h32 {
        height: 32px !important;
        width: auto;
    }

    .m-logo-img-h31 {
        height: 31px !important;
        width: auto;
        margin-left: 10px;
    }

    .m-mb-40 {
        margin-bottom: 40px;
    }

    .m-mt-24 {
        margin-top: 24px;
    }

    .m-list-reset {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    /* Hero Specific */
    .m-hero-glass-box {
        margin: 20px auto;
        max-width: 500px;
        text-align: left;
        padding: 10px;
        border-radius: 20px;
    }

    .m-hero-glass-h3 {
        font-size: 18px;
        font-weight: 700;
        color: #1e3265 !important;
        margin-bottom: 14px;
        margin-top: 16px;
        text-align: center;
    }

    .m-hero-list-item {
        display: flex;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 15px;
        line-height: 1.4;
    }

    .m-hero-list-last {
        display: flex;
        gap: 12px;
        font-size: 15px;
        line-height: 1.4;
    }

    .m-checkmark-blue {
        color: #1e3265 !important;
        font-weight: bold;
    }

    /* Card/Section Specific */
    .m-fascia-h2-mb {
        margin-bottom: 20px !important;
    }

    .m-expanded-content {
        margin-top: 24px;
        text-align: left;
        line-height: 1.6;
    }

    .m-subtitle-mt {
        margin-top: 25px;
    }

    .m-subtitle-mt-tt {
        margin-top: 25px;
        text-transform: uppercase;
    }

    .m-subtitle-mt30 {
        margin-top: 30px;
    }

    .m-p-mt {
        margin-top: 20px;
    }

    .m-fascia-p-center {
        text-align: center;
        margin-bottom: 20px;
    }

    /* Flow/Schema & Grid */
    .m-flow-schema-box {
        margin-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 25px;
    }

    .m-schema-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .m-schema-item {
        background: rgba(255, 255, 255, 0.5);
        padding: 15px;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .m-media-box-small {
        height: 180px;
        margin-top: 30px;
    }

    /* Tables Misc */
    .m-table-m0 {
        margin: 0px;
    }

    .m-center {
        text-align: center;
    }

    .m-text-none {
        text-transform: none;
    }

    /* Lists & Indents */
    .m-list-indent {
        margin-left: 20px;
        margin-bottom: 20px;
    }

    /* Decoration & Components */
    .m-gray-box {
        margin-top: 20px;
        background: #F2F2F7;
        padding: 16px;
        border-radius: 12px;
        font-weight: 600;
        color: var(--text);
        text-align: center;
    }

    .m-img-cover {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .m-subtitle-mt5 {
        margin-top: 5px;
    }

    .m-mb5 {
        margin-bottom: 5px;
    }

    /* Footer/CTA Specific Mobile */
    .m-cta-container {
        flex-direction: column !important;
        gap: 10px !important;
    }

    /* Specific Layout Helpers */
    .m-mt-10-h250-p0 {
        margin-top: 10px;
        height: 250px;
        padding: 0 !important;
    }

    .m-fs14-mb15 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .m-pt24-fs14-lh16-center {
        padding-top: 24px;
        font-size: 14px;
        line-height: 1.6;
        text-align: center;
    }

    .m-max800-center {
        max-width: 800px;
        margin: 0 auto 35px auto;
        text-align: center;
    }

    .m-mb35 {
        margin-bottom: 35px;
    }

    .m-blue-gradient-card {
        padding: 10px 10px;
        border-radius: 20px;
        flex: 1;
        text-align: center;
        background: linear-gradient(135deg, #1e3265 0%, #2a4baa 100%);
        color: white;
        border: 1px solid rgba(255, 255, 255, 0.2);
        box-shadow: 0 10px 30px rgba(30, 50, 101, 0.4);
        position: relative;
        overflow: hidden;
    }

    .m-gray-card-border {
        padding: 15px 10px;
        border-radius: 20px;
        flex: 1;
        text-align: center;
        background: #f2f2f2;
        border: 1.5px solid #1e3265;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }

    .m-icon-box-white {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 8px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .m-icon-box-gray {
        border: 0.5px solid rgba(0, 0, 0, 0.5);
        background-color: #d3d3d3;
        border-radius: 8px;
        width: 34px;
        height: 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        color: #1e3265;
    }

    .m-card-h3 {
        margin: 0;
        font-weight: 700;
        color: inherit;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-align: left;
        line-height: 1.2;
    }

    /* Extra Utilities */
    .m-tac {
        text-align: center;
    }

    .m-mb-20 {
        margin-bottom: 20px;
    }

    .m-mb-12 {
        margin-bottom: 12px;
    }

    .m-mt-25 {
        margin-top: 25px;
    }

    .m-p-mt20 {
        margin-top: 20px;
    }

    .m-mt-20 {
        margin-top: 20px;
    }

    .m-subtitle-mt40 {
        margin-top: 40px;
    }

    .m-mb0 {
        margin-bottom: 0 !important;
    }

    .m-mb5 {
        margin-bottom: 5px;
    }

    .m-ml6 {
        margin-left: 6px;
    }

    .m-mt10-mb20 {
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .m-mb35 {
        margin-bottom: 35px;
    }

    .m-mb25 {
        margin-bottom: 25px;
    }

    .m-logo-maxh120 {
        max-height: 120px;
        width: auto;
    }

    .m-img-rad12-w100 {
        width: 100%;
        border-radius: 12px;
    }

    .m-svg-va-3px-mr4px {
        vertical-align: -3px;
        margin-right: 4px;
    }

    .m-fs14 {
        font-size: 14px;
    }

    .m-fs13-mb4-fw500-cw {
        font-size: 13px;
        margin-bottom: 4px;
        font-weight: 500;
        color: white !important;
    }

    .m-fs13-mb0-fw600-lh13-cw {
        font-size: 13px;
        margin-bottom: 0;
        font-weight: 600;
        line-height: 1.3;
        color: white !important;
    }

    .m-fs12-mb4-fw500 {
        font-size: 12px;
        margin-bottom: 4px;
        font-weight: 500;
    }

    .m-fs13-mb0-black-fw600-lh13 {
        font-size: 13px;
        margin-bottom: 0;
        color: black;
        font-weight: 600;
        line-height: 1.3;
    }

    .m-primary-banner,
    .m-p-mt20-bgp-cw-p16-rad12-fw700-tac {
        margin-top: 20px;
        background: var(--primary);
        color: white !important;
        padding: 16px;
        border-radius: 12px;
        font-weight: 700;
        text-align: center;
    }

    .m-pos-abs-br-z2-bgw-p5-10-rad8-fs11-fw700-sh {
        position: absolute;
        bottom: 10px;
        right: 10px;
        z-index: 2;
        background: white;
        padding: 5px 10px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 700;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }

    .m-img-maxh120-wauto {
        max-height: 120px;
        width: auto;
    }

    .m-svg-ml6 {
        margin-left: 6px;
    }

    /* Footer & Menu Specific */
    .m-fs24-fw800-mb10-tac {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 10px;
        text-align: center;
    }

    .m-tac-mb10-mt10-lh16-fs14 {
        text-align: center;
        margin-bottom: 10px;
        margin-top: 10px;
        line-height: 1.6;
        font-size: 14px;
    }

    .m-primary-link {
        color: var(--primary) !important;
        font-weight: 700;
        text-decoration: none;
    }

    .m-tdn-c-textmuted {
        text-decoration: none;
        color: var(--text-muted) !important;
    }

    .m-tdn-c-inh-db {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .m-fs16-ml5 {
        font-size: 16px;
        margin-left: 5px;
    }

    .m-primary-link-fw700-tdn {
        color: var(--primary) !important;
        font-weight: 700;
        text-decoration: none;
    }

    .m-tdn-c-textmuted {
        text-decoration: none;
        color: var(--text-muted) !important;
    }

    .m-svg-ml6-rot180 {
        margin-left: 6px;
        transform: rotate(180deg);
    }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   PROFESSIONAL DESKTOP OVERHAUL (min-width: 1024px) - V2 (Structural Fixes)
   ========================================================================== */
@media (min-width: 1024px) {
    :root {
        --header-h: 80px;
        --page-max-w: 1200px;
        --radius-pro: 24px;
    }

    /* 1. Reset Global Desktop Feel */
    body {
        background-color: #f5f5f7;
    }

    /* 2. Header & Navigation Overhaul */
    header {
        top: 0;
        left: 0;
        right: 0;
        height: var(--header-h);
        border-radius: 0;
        padding: 0 80px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
        transform: none !important;
        opacity: 1 !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #mainHeader .logo img {
        height: 38px !important;
    }

    #mainHeader .header-right {
        gap: 32px;
    }

    .header-link {
        display: inline-block !important;
        /* Force visible on desktop */
        font-size: 13px;
        font-weight: 600;
        color: #1d1d1f;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    .header-link:hover {
        opacity: 1;
        color: var(--primary);
    }

    /* CRITICAL: Hide Mobile-only elements */
    .menu-toggle,
    .mobile-overlay,
    .scroll-indicator.bounce {
        display: none !important;
    }

    /* 3. Hero Section Grid Layout */
    .hero {
        gap: 60px;
        max-width: var(--page-max-w);
        margin: 0 auto;
        padding: 160px 20px 80px;
        text-align: center;
        align-items: start;
    }

    .hero h1 {
        font-size: 52px;
        line-height: 1.05;
        margin-bottom: 5px;
    }

    .hero .h1secondario {
        font-size: 28px !important;
        margin-bottom: 20px;
    }

    .hero hr {
        margin: 20px 0 40px;
    }

    .hero-bg-logos {
        gap: 30px;
        margin-bottom: 40px;
    }


    .hero-description p {
        font-size: 19px;
        line-height: 1.4;
    }

    /* Hero Glass Card Placement */
    .hero .m-hero-glass-box {
        grid-column: 2;
        grid-row: 1 / 10;
        margin: 0 !important;
        padding: 40px;
        background: white;
        border-radius: var(--radius-pro);
        box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 120px;
    }

    .hero-gallery {
        grid-template-columns: repeat(3, 1fr) !important;
        max-width: none;
        gap: 12px;
    }

    .gallery-item {
        aspect-ratio: 1;
    }

    .hero .m-hero-glass-h3 {
        font-size: 20px;
        margin: 30px 0 20px;
    }

    .hero .m-hero-list-item,
    .hero .m-hero-list-last {
        font-size: 14px;
        margin-bottom: 8px;
    }

    /* PDI CTA & Table */
    .cta-pdi {
        flex-direction: row !important;
        gap: 40px;
        margin-top: 60px;
        background: rgba(255, 255, 255, 0.5);
        padding: 30px;
        border-radius: 20px;
    }

    .pdi-image-container {
        flex: 1.5;
    }


    .pdi-info-box .qr-wrapper img {
        width: 140px;
        height: 140px;
    }

    .pdi-table-container {
        margin-top: 60px;
    }

    .pdi-table th,
    .pdi-table td {
        padding: 20px;
    }

    /* 4. Section Cards Overhaul */
    .section-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .card {
        background: rgba(255, 255, 255, 0.7) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 32px !important;
        border: 1px solid rgba(255, 255, 255, 0.4) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04) !important;
        align-items: start;
        margin-bottom: 60px !important;
        text-align: left;
    }

    .card h2 {
        grid-area: title;
        font-size: 32px;
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }

    .card .media-box,
    .card .media-box1 {
        grid-area: media;
        border-radius: 20px;
        height: 350px;
        width: 100%;
        margin: 10px 0px 10px 0px;
    }

    .card>p:not(.m-fascia-p-center) {
        grid-area: text;
        font-size: 18px;
        line-height: 1.6;
        text-align: left;
        margin: 0;
        align-self: center;
    }

    /* Target the center paragraph specifically if it exists */
    .card .m-fascia-p-center {
        grid-area: text;
        font-size: 18px;
        line-height: 1.6;
        text-align: center !important;
        margin-bottom: 0;
        align-self: end;
    }

    .card .btn-more {
        grid-area: button;
        margin: 0;
        justify-self: start;
        align-self: start;
    }

    .expanded-area {
        grid-area: expanded;
        border-radius: 24px;
        padding: 0 !important;
        margin: 20px 0 0 0;
        width: 100%;
    }

    .expanded-area.active {
        padding: 40px !important;
    }

    .expanded-area p {
        text-align: left !important;
        font-size: 16px;
    }

    .desktop-grid {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }

    /* Section Subtitles */
    .section-subtitle {
        text-align: left;
        font-size: 22px;
        margin: 40px 0 20px;
    }

    /* 5. Sticky Bottom Utilities -> Professional Footer CTA */
    .cta-fixed {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        padding: 0;
        background: white;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.05);
        z-index: 1001;
        transform: none !important;
        display: flex !important;
        flex-direction: row !important;
        justify-content: center;
        align-items: center;
    }

    .cta-container,
    .cta-container2 {
        flex: 1;
        background: transparent !important;
        backdrop-filter: none !important;
        border: none !important;
        box-shadow: none !important;
        padding: 15px 40px !important;
        max-width: 600px;
        margin: 0;
        border-radius: 0;
    }

    .cta-container2 {
        border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .cta-info {
        font-size: 16px;
    }

    .btn-cta {
        padding: 12px 28px !important;
        font-size: 14px !important;
        border-radius: 100px !important;
    }

    /* 6. Legal & Footer */
    footer.glass-footer {
        padding: 100px 20px 140px;
        background: #fff;
    }

    .footer-content {
        max-width: var(--page-max-w);
    }

    .footer-nav {
        justify-content: flex-start;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 40px;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .footer-content h3{
        font-size:24px; font-weight:800; margin-bottom:10px; text-align:center;
    }

    .footer-content div{
        text-align:center; margin-bottom:10px; margin-top:10px; line-height:1.6; font-size:14px;
    }
}