/* ===========================================
   I COLORI 2.0 - "LUCE"
   Clean, Light, Ultra-Readable Design

   - Bright, airy aesthetic
   - Maximum readability
   - Generous whitespace
   - Soft, welcoming colors
   - Clear visual hierarchy
   =========================================== */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,400;0,8..60,600;0,8..60,700;1,8..60,400&family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    /* Light, Warm Palette */
    --white: #ffffff;
    --cream: #fdfcfa;
    --sand: #f5f3ef;
    --stone: #e8e4dd;

    /* Text Colors - High Contrast for Readability */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #6b6b6b;
    --text-light: #8a8a8a;

    /* Accent Colors - Warm and Inviting */
    --primary: #d97706;
    --primary-light: #f59e0b;
    --primary-dark: #b45309;
    --primary-bg: #fef3c7;

    --secondary: #0891b2;
    --secondary-light: #22d3ee;
    --secondary-bg: #e0f7fa;

    --success: #059669;
    --success-bg: #d1fae5;

    /* Typography */
    --font-display: 'Source Serif 4', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Fluid Type Scale - Optimized for Readability */
    --text-xs: 0.8125rem;
    --text-sm: 0.9375rem;
    --text-base: 1.0625rem;
    --text-lg: 1.1875rem;
    --text-xl: 1.375rem;
    --text-2xl: 1.75rem;
    --text-3xl: clamp(1.75rem, 1.5rem + 1.25vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);
    --text-5xl: clamp(2.75rem, 2rem + 3.75vw, 4.5rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;
    --gutter: clamp(1.25rem, 1rem + 2vw, 2.5rem);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows - Soft and Subtle */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --duration: 300ms;
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
}

/* ===== ACCESSIBILITY ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 10000;
    transition: top var(--duration) var(--ease);
}

.skip-link:focus {
    top: var(--space-md);
}

:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-lg);
    max-width: 70ch;
}

a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: color var(--duration) var(--ease);
}

a:hover {
    color: var(--primary);
}

strong, b {
    font-weight: 600;
}

em, i {
    font-style: italic;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-5xl) 0;
}

.section--cream {
    background: var(--cream);
}

.section--sand {
    background: var(--sand);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--stone);
    transition: all var(--duration) var(--ease);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
}

.logo span {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text-primary);
}

/* Navigation */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    list-style: none;
}

.nav-link {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    padding: var(--space-xs) 0;
    position: relative;
    transition: color var(--duration) var(--ease);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--duration) var(--ease);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration) var(--ease);
}

.nav-close {
    display: none;
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    background: var(--sand);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.nav-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 360px;
        height: 100vh;
        background: var(--white);
        padding: var(--space-4xl) var(--space-2xl);
        box-shadow: var(--shadow-xl);
        transition: right var(--duration) var(--ease);
        z-index: 1001;
    }

    .nav.active {
        right: 0;
    }

    .nav-close {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-lg);
    }

    .nav-link {
        font-size: var(--text-lg);
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-decoration: none;
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration) var(--ease);
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration) var(--ease);
}

.btn:hover svg {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary {
    background: var(--text-primary);
    color: white;
    border-color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-secondary);
    border-color: var(--text-secondary);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--stone);
}

.btn-outline:hover {
    background: var(--sand);
    border-color: var(--text-muted);
}

.btn-lg {
    font-size: var(--text-base);
    padding: var(--space-lg) var(--space-2xl);
    border-radius: var(--radius-lg);
}

.btn-lg svg {
    width: 20px;
    height: 20px;
}

/* ===== HERO ===== */
.hero {
    padding-top: calc(72px + var(--space-4xl));
    padding-bottom: var(--space-4xl);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.hero-content {
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--primary-bg);
    color: var(--primary-dark);
    font-size: var(--text-sm);
    font-weight: 600;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-xl);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--primary);
}

.hero-title {
    margin-bottom: var(--space-xl);
    line-height: 1.1;
}

.hero-title em {
    color: var(--primary);
    font-style: normal;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 600px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

/* Hero Image */
.hero-image {
    margin-top: var(--space-4xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

@media (max-width: 640px) {
    .hero {
        padding-top: calc(72px + var(--space-2xl));
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-4xl);
}

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-title {
    margin-bottom: var(--space-lg);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    margin: 0 auto;
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
    transition: all var(--duration) var(--ease);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.feature-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-content {
    max-width: 520px;
}

.about-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.about-title {
    margin-bottom: var(--space-xl);
}

.about-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--stone);
}

.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about-content {
        max-width: 100%;
    }
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--stone);
    transition: all var(--duration) var(--ease);
}

.service-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration) var(--ease);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-xl);
}

.service-content h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.service-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--primary);
}

.service-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--duration) var(--ease);
}

.service-link:hover svg {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== VALUES ===== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.value-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
    transition: all var(--duration) var(--ease);
}

.value-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
}

.value-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.value-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--text-primary);
    color: white;
    padding: var(--space-5xl) 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    color: white;
    margin-bottom: var(--space-lg);
}

.cta-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
}

.cta-section .btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--cream);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--stone);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    max-width: 300px;
    margin-top: var(--space-lg);
    margin-bottom: 0;
}

.footer-title {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--stone);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    padding-top: calc(72px + var(--space-4xl));
    padding-bottom: var(--space-3xl);
    background: var(--cream);
    text-align: center;
}

.page-hero-badge {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.page-hero-title {
    margin-bottom: var(--space-lg);
}

.page-hero-description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== CARDS ===== */
.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
    overflow: hidden;
    transition: all var(--duration) var(--ease);
}

.card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.card-body {
    padding: var(--space-xl);
}

.card-title {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ===== LISTS ===== */
.check-list {
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.check-list li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--success-bg);
    border-radius: var(--radius-full);
    flex-shrink: 0;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23059669' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-item {
    display: flex;
    gap: var(--space-lg);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--stone);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: var(--space-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--text-primary);
    background: var(--white);
    border: 1px solid var(--stone);
    border-radius: var(--radius-md);
    transition: all var(--duration) var(--ease);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-bg);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== WHISTLEBLOWING SPECIFIC ===== */
.whistleblowing-content {
    max-width: 800px;
    margin: 0 auto;
}

.whistleblowing-intro {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: var(--space-2xl);
}

.whistleblowing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    margin-bottom: var(--space-2xl);
    border: 1px solid var(--stone);
}

.whistleblowing-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-bg);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    color: var(--primary);
}

.whistleblowing-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-md);
}

.whistleblowing-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.whistleblowing-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.whistleblowing-feature {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--stone);
}

.whistleblowing-feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-bg);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: var(--primary);
}

.whistleblowing-feature h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-xs);
}

.whistleblowing-feature p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .whistleblowing-features {
        grid-template-columns: 1fr;
    }

    .whistleblowing-card {
        padding: var(--space-2xl);
    }
}

/* ===== BILANCI SPECIFIC ===== */
.bilanci-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.bilancio-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--stone);
    transition: all var(--duration) var(--ease);
}

.bilancio-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.bilancio-year {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.bilancio-title {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.bilancio-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: 600;
    color: var(--primary);
}

.bilancio-link svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 640px) {
    .bilanci-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVIZIO CIVILE SPECIFIC ===== */
.sc-hero-image {
    margin-top: var(--space-3xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sc-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.progetti-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.progetto-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--stone);
}

.progetto-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-md);
}

.progetto-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.progetto-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.progetto-detail {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.progetto-detail svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

@media (max-width: 768px) {
    .progetti-grid {
        grid-template-columns: 1fr;
    }
}

/* Theme specific button for old pages compatibility */
.btn-colored {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-colored:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .nav-toggle,
    .skip-link {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .section {
        padding: 2rem 0;
    }
}
