/* ================================================================
   1. RESET E STILI BASE
   ================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background-color: #ffffff;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ================================================================
   2. VARIABILI CSS
   ================================================================ */

:root {
    /* Colori principali */
    --primary-gradient: linear-gradient(120deg, #8e5edc 0%, #408daa 50%, #02be65 100%);
    --cta-gradient: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffcc02 100%);
    --cta-hover-gradient: linear-gradient(135deg, #e55a2b 0%, #e8851a 50%, #f0b90b 100%);

    /* Colori neutri */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;

    /* Border radius */
    --border-radius-medium: 12px;
    --border-radius-large: 20px;

    /* Spaziature */
    --container-max-width: 1400px;
    --container-padding: 2rem;
    --section-padding: 100px;

    /* Transizioni */
    --transition-normal: 0.3s ease;
    --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    /* Ombre */
    --shadow-light: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    --shadow-medium: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    --shadow-heavy: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

/* ================================================================
   3. UTILITÀ
   ================================================================ */

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Skip links per accessibilità */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--text-primary);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
}

/* ================================================================
   4. HEADER E NAVIGAZIONE
   ================================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    z-index: 1000;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition-normal);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-normal);
    position: relative;
}

.nav-menu a:hover {
    color: #3b82f6;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width var(--transition-normal);
}

.nav-menu a:hover::after {
    width: 100%;
}

/* ================================================================
   5. DROPDOWN LINGUA
   ================================================================ */

.dropdown {
    position: relative !important;
    z-index: 1000 !important;
}

.dropdown button {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    color: #374151 !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 8px !important;
    border: 0.5px solid rgba(55, 65, 81, 0.1) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 130px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.dropdown button:hover {
    background: #f7f8fc !important;
}

.dropdown button img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    margin-right: 8px !important;
    object-fit: cover !important;
}

.arrow-down {
    width: 0 !important;
    height: 0 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    border-style: solid !important;
    border-width: 4px 4px 0 4px !important;
    border-color: #374151 transparent transparent transparent !important;
    margin-left: 8px !important;
    transition: transform 0.3s ease !important;
}

.dropdown-content {
    display: none !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    margin-top: 8px !important;
    padding: 8px 0 !important;
    background-color: white !important;
    min-width: 180px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid rgba(226, 232, 240, 0.8) !important;
    border-radius: 12px !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
    max-height: 300px !important;
    backdrop-filter: blur(10px) !important;
}

.dropdown-content.show {
    display: block !important;
}

.dropdown-content li {
    display: flex !important;
    align-items: center !important;
    padding: 10px 15px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    color: #374151 !important;
    transition: all 0.2s ease !important;
    list-style: none !important;
}

.dropdown-content li img {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50% !important;
    margin-right: 10px !important;
    object-fit: cover !important;
}

.dropdown-content li:hover {
    background-color: #f8fafc !important;
    color: #3b82f6 !important;
}

/* ================================================================
   6. HERO SECTION CON VIDEO
   ================================================================ */

.hero {
    min-height: 100vh;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 2rem 60px;
    background: hsl(0, 0%, 0%);
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-fallback {
    background: var(--primary-gradient);
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.7;
    margin-bottom: 2.0rem;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    background: var(--cta-gradient);
    color: white;
    padding: 1.2rem 2.8rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

.hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transition: left 0.5s ease;
}

.hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    background: var(--cta-hover-gradient);
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.5), 0 8px 24px rgba(0, 0, 0, 0.15);
}

.hero-cta:hover::after {
    left: 100%;
}

.hero-cta:active {
    transform: translateY(-2px) scale(1.01);
    transition: all 0.1s ease;
}

.hero-cta:focus {
    outline: none;
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.5), 0 0 0 3px rgba(247, 147, 30, 0.4);
}

/* ================================================================
   7. CHI SIAMO SECTION
   ================================================================ */

.about-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.about-text h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-text p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(142, 94, 220, 0.2);
}

.stat-number {
    font-family: 'Nunito', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.stat-label {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ================================================================
   8. LEO SECTION
   ================================================================ */

.leo-section {
    padding: 80px 20px;
    background: white;
}

.leo-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.leo-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

.leo-text {
    /* Container per il testo della sezione Leo */
}

.leo-description {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.leo-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.leo-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.leo-feature-item i {
    font-size: 2.5rem;
    color: #8e5edc;
    flex-shrink: 0;
}

.leo-feature-item h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 8px;
}

.leo-feature-item p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
}

/* ================================================================
   9. MAIN CONTENT (STEP 1, 2, 3)
   ================================================================
   NOTA: Gli stili di questa sezione sono usati come riferimento per
   uniformare font, dimensioni e colori in tutte le altre sezioni:
   - Font family: 'Nunito'
   - Titoli: font-size 2.5rem, font-weight 800, color var(--text-primary)
   - Testi: font-size 1.2rem, font-weight 600, color var(--text-primary)
   - Line-height: 1.2 per titoli, 1.7 per testi
   ================================================================ */

.main-content {
    padding: var(--section-padding) 0 80px;
    background: var(--white);
    position: relative;
    z-index: 10;
}

.content-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--section-padding);
    opacity: 0;
    transition: var(--transition-slow);
}

.content-section.slide-in-left {
    transform: translateX(-100px);
}

.content-section.slide-in-right {
    transform: translateX(100px);
}

.content-section.visible {
    opacity: 1;
    transform: translateX(0);
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: transform var(--transition-normal);
    margin-bottom: 3rem;
    max-width: 600px;
    width: 100%;
}

.image-container:hover {
    transform: translateY(-5px);
}

.image-container img,
.image1,
.image2,
.image3 {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-width: 100%;
}

.placeholder-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-block {
    max-width: 700px;
    width: 100%;
    padding: 0 1rem;
    text-align: left;
}

.step-badge {
    background: var(--cta-gradient);
    box-shadow: var(--shadow-light);
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
    width: fit-content;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.content-description {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    display: inline-block;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-list li i {
    color: #10b981;
    font-size: 1.2rem;
    margin-right: 1rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.feature-list li img {
    width: 1.3rem;
    margin-left: 0.8rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.whatsappicon {
    display: inline;
    width: 1.3rem;
    margin-left: 0.8rem;
    margin-top: 0.3rem;
}

/* ================================================================
   10. SECTION HEADER
   ================================================================ */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-subtitle {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* ================================================================
   11. GALLERY SECTION
   ================================================================ */

.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.gallery-tab {
    font-family: 'Nunito', sans-serif;
    padding: 12px 30px;
    background: white;
    border: 2px solid #8e5edc;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    background: #8e5edc;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(142, 94, 220, 0.3);
}

.gallery-tab.active {
    background: #8e5edc;
    color: white;
    box-shadow: 0 10px 20px rgba(142, 94, 220, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(142, 94, 220, 0.2);
}

.gallery-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    color: white;
}

.gallery-info h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 10px;
}

.gallery-info p {
    font-family: 'Nunito', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    line-height: 1.7;
    margin-bottom: 15px;
}

.gallery-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.gallery-badge.monumenti {
    background: #8e5edc;
    color: white;
}

.gallery-badge.misteri {
    background: #667eea;
    color: white;
}

/* ================================================================
   12. FOOTER
   ================================================================ */

.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    text-align: center;
}

.footer-social h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8e5edc 0%, #667eea 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all var(--transition-normal);
    text-decoration: none;
    box-shadow: var(--shadow-light);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.social-icons a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
}

.social-icons a:active {
    transform: translateY(-2px) scale(1.05);
}

/* Colori specifici per ogni social network */
.social-icons a:nth-child(1):hover {
    background: #1877f2; /* Facebook blue */
}

.social-icons a:nth-child(2):hover {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); /* Instagram gradient */
}

.social-icons a:nth-child(3):hover {
    background: #000000; /* TikTok black */
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ================================================================
   13. ANIMAZIONI
   ================================================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ================================================================
   14. FOCUS STATES E ACCESSIBILITÀ
   ================================================================ */

button:focus-visible,
a:focus-visible {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ================================================================
   15. SCROLLBAR
   ================================================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: #c2c9d2;
    border-radius: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* ================================================================
   16. RIDUZIONE ANIMAZIONI PER ACCESSIBILITÀ
   ================================================================ */

@media (prefers-reduced-motion: reduce) {
    .hero-content,
    .content-section {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-cta {
        transition: none;
    }
}

/* ================================================================
   17. RESPONSIVE - TABLET
   ================================================================ */

@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h3,
    .section-title,
    .content-title {
        font-family: 'Nunito', sans-serif;
        font-size: 2.2rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .about-text p,
    .section-subtitle,
    .leo-description,
    .content-description,
    .leo-feature-item p,
    .stat-label,
    .feature-list li,
    .gallery-tab {
        font-family: 'Nunito', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.7;
    }

    .leo-feature-item h4 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .leo-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .leo-image {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .gallery-info h3 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
    }

    .gallery-info p {
        font-family: 'Nunito', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: white;
        line-height: 1.7;
    }
}

/* ================================================================
   18. RESPONSIVE - MOBILE
   ================================================================ */

@media (max-width: 768px) {
    .about-section,
    .leo-section {
        padding: 60px 20px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-family: 'Nunito', sans-serif;
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .about-text h3,
    .section-title,
    .content-title {
        font-family: 'Nunito', sans-serif;
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .about-text p,
    .section-subtitle,
    .leo-description,
    .content-description,
    .leo-feature-item p,
    .stat-label,
    .feature-list li {
        font-family: 'Nunito', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.7;
    }

    .leo-feature-item h4 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .leo-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .leo-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .gallery-section {
        padding: 60px 20px;
    }

    .gallery-tabs {
        gap: 10px;
    }

    .gallery-tab {
        font-family: 'Nunito', sans-serif;
        padding: 10px 20px;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.7;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 300px;
    }

    .gallery-info h3 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
    }

    .gallery-info p {
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: white;
        line-height: 1.7;
    }
}

/* ================================================================
   19. RESPONSIVE - SMALL MOBILE
   ================================================================ */

@media (max-width: 480px) {
    .about-section,
    .leo-section {
        padding: 40px 15px;
    }

    .about-text h3,
    .section-title,
    .content-title {
        font-family: 'Nunito', sans-serif;
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .about-text p,
    .section-subtitle,
    .leo-description,
    .content-description,
    .leo-feature-item p,
    .stat-label,
    .feature-list li,
    .gallery-tab {
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        line-height: 1.7;
    }

    .leo-feature-item h4 {
        font-family: 'Nunito', sans-serif;
        font-size: 1rem;
        font-weight: 800;
        color: var(--text-primary);
        line-height: 1.2;
    }

    .gallery-section {
        padding: 40px 15px;
    }

    .gallery-image {
        height: 250px;
    }

    .gallery-info h3 {
        font-family: 'Nunito', sans-serif;
        font-size: 1.2rem;
        font-weight: 800;
        color: white;
        line-height: 1.2;
    }

    .gallery-info p {
        font-family: 'Nunito', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: white;
        line-height: 1.7;
    }
}
