:root {
    --primary: #097bc0;
    --primary-dark: #0a5a8a;
    --secondary: #2b4a72;
    --accent: #4fc3f7;
    --light: #fafbfc;
    --white: #ffffff;
    --text-dark: #1a2332;
    --text-light: #64748b;
    --border: #e2e8f0;
    --success: #10b981;
    --warning: #f59e0b;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 6px 12px -2px rgb(0 0 0 / 0.12);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light);
    overflow-x: hidden;
}

a {
    color: inherit;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1rem, 3vw, 1.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 1rem;
}

.logo {
    height: clamp(35px, 8vw, 45px);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: clamp(1rem, 3vw, 2rem);
    list-style: none;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

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

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.cta-nav {
    background: var(--gradient);
    color: white;
    padding: clamp(0.6rem, 1.5vw, 0.75rem) clamp(1rem, 2.5vw, 1.5rem);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow);
    white-space: nowrap;
    font-size: clamp(0.85rem, 1.8vw, 1rem);
}

.cta-nav:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: clamp(70px, 15vw, 80px);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.5rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.2;
}

.hero-text p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
    opacity: 0.9;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 4vw, 2rem);
    margin: clamp(1.5rem, 4vw, 2rem) 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    opacity: 0.8;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-15deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Sections */
.services {
    padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 3vw, 1.5rem);
    background: white;
}

.services-light {
    background: #f8fafc;
}

.services-gradient {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.container {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    color: var(--primary);
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
}

.section-title-primary {
    color: var(--primary);
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(280px, 45vw, 300px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.service-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    color: white;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
}

.service-title {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    color: var(--text-dark);
}

.service-desc {
    color: var(--text-light);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.service-link:hover {
    color: var(--primary-dark);
}

.service-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.premium-service {
    border: 2px solid var(--primary);
}

.premium-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
}

.premium-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Member info box */
.member-info-box {
    background: linear-gradient(135deg, #e0f2fe, #f0f9ff);
    border: 2px solid #097bc0;
    border-radius: 12px;
    padding: clamp(1.5rem, 3vw, 2rem);
    margin: 2rem auto 0;
    max-width: 600px;
    text-align: center;
}

.member-info-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.member-info-title h3 {
    color: #097bc0;
    margin: 0;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
}

.member-info-box p {
    color: #0c4a6e;
    margin: 0 0 1rem 0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.member-info-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #097bc0;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    transition: var(--transition);
}

.member-info-cta:hover {
    background: var(--primary-dark);
}

.member-cta {
    background: linear-gradient(135deg, #097bc0, #0a5a8a);
    margin-top: clamp(3rem, 6vw, 4rem);
    border-radius: 16px;
    padding: clamp(2rem, 5vw, 3rem);
    color: white;
    text-align: center;
}

.member-cta h3 {
    color: white;
    margin: 0 0 1.5rem 0;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 700;
}

.member-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem auto;
    max-width: 600px;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    line-height: 1.6;
}

.member-cta-actions {
    display: flex;
    gap: clamp(1rem, 2.5vw, 1.5rem);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.member-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #097bc0;
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.member-cta-btn:hover {
    transform: translateY(-2px);
}

.member-cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: clamp(0.8rem, 2vw, 1rem);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: clamp(1.5rem, 4vw, 2rem);
}

.btn {
    padding: clamp(0.8rem, 2vw, 1rem) clamp(1.2rem, 3vw, 2rem);
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: clamp(160px, 35vw, 200px);
    justify-content: center;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Stats Section */
.stats-section {
    background: var(--light);
    padding: clamp(2.5rem, 6vw, 4rem) clamp(1rem, 3vw, 1.5rem);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(180px, 35vw, 200px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    padding: clamp(1.5rem, 4vw, 2rem);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-card .stat-number {
    color: var(--primary);
}

/* Partners Section */
.partners-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.partner-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border);
    text-decoration: none;
    display: block;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(9, 123, 192, 0.02), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.partner-card:hover::before {
    left: 100%;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(9, 123, 192, 0.2);
}

.card-header,
.partner-header {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.partner-logo {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 2px solid white;
    background: white;
    object-fit: cover;
}

.partner-logo-icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fef2f2;
    color: #e11d48;
    font-size: 2rem;
}

.partner-logo-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d97706;
    font-size: 2rem;
}

.partner-card:hover .partner-logo {
    transform: scale(1.05);
}

.member-badge,
.partner-badge {
    background: var(--primary);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(9, 123, 192, 0.3);
    white-space: nowrap;
}

.member-badge {
    background: var(--success);
}

.badge-storico {
    background: #10b981;
}

.badge-socio {
    background: #6b21a8;
}

.badge-tech {
    background: #d97706;
}

.badge-Vella {
    background: #fa3653;
}

.badge-marketing {
    background: #223a53;
}
.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
    background: white;
}

.partner-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.partner-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.partner-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-light);
    background: var(--light);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.stat-item i {
    color: var(--primary);
    font-size: 0.8rem;
}

.partner-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.tag {
    background: rgba(9, 123, 192, 0.08);
    color: var(--primary);
    padding: 0.35rem 0.8rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(9, 123, 192, 0.15);
    transition: var(--transition);
}

.partner-card:hover .tag {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(9, 123, 192, 0.3);
}

.partner-card:hover .partner-link {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(9, 123, 192, 0.4);
}

.placeholder-card {
    border: 2px dashed rgba(9, 123, 192, 0.4);
    background: white;
}

.placeholder-card:hover {
    border-color: var(--primary);
}

.placeholder-header {
    height: 140px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #64748b;
    gap: 0.5rem;
    font-weight: 600;
}

.placeholder-header i {
    font-size: 3rem;
    opacity: 0.6;
    transition: var(--transition);
}

.placeholder-card:hover .placeholder-header i {
    transform: scale(1.1);
    color: var(--primary);
}

.placeholder-content {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
}

.placeholder-content h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.placeholder-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.placeholder-content a {
    background: var(--primary);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(9, 123, 192, 0.3);
}

.placeholder-content a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 123, 192, 0.4);
}

.partner-cta {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 2.5rem;
}

.partner-cta-content {
    position: relative;
    z-index: 1;
}

.partner-cta-content i {
    font-size: 2rem;
    color: #4fc3f7;
    margin-bottom: 1rem;
}

.partner-cta-content h3 {
    color: white;
    margin: 0 0 1rem 0;
    font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.3;
}

.partner-cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0 auto 2rem auto;
    max-width: 500px;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.5;
}

.partner-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #4fc3f7, #097bc0);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(79, 195, 247, 0.3);
}

.partner-cta-button:hover {
    transform: translateY(-2px);
}

/* Transparency */
.transparency-section {
    background: #f1f5f9;
    border-top: 3px solid var(--primary);
    border-bottom: 3px solid var(--primary);
}

.transparency-title {
    color: #1e293b;
}

.transparency-grid {
    grid-template-columns: repeat(auto-fit, minmax(clamp(300px, 45vw, 400px), 1fr));
    gap: clamp(2rem, 5vw, 3rem);
}

.transparency-card {
    background: white;
    position: relative;
}

.info-card {
    border: 2px solid #64748b;
}

.aia-card {
    border: 2px solid var(--primary);
}

.transparency-logo {
    text-align: center;
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.logo-img {
    width: clamp(60px, 15vw, 80px);
    height: clamp(60px, 15vw, 80px);
    object-fit: contain;
}

.info-title {
    color: #64748b;
    text-align: center;
}

.aia-title {
    color: var(--primary);
    text-align: center;
}

.transparency-badge {
    padding: clamp(0.8rem, 2vw, 1rem);
    border-radius: 8px;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
}

.info-badge {
    background: #f8fafc;
}

.info-badge strong {
    color: #1e293b;
}

.aia-badge {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.aia-badge strong {
    color: #0c4a6e;
}

.transparency-list {
    list-style: none;
    padding: 0;
    color: #475569;
    line-height: 1.8;
}

.transparency-list li {
    margin-bottom: clamp(0.6rem, 1.5vw, 0.8rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.transparency-list a {
    color: var(--primary);
    text-decoration: none;
}

.transparency-list a:hover {
    text-decoration: underline;
}

.transparency-clarification {
    background: white;
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: clamp(1.5rem, 4vw, 2rem);
    margin-top: clamp(2rem, 5vw, 3rem);
    text-align: center;
}

.clarification-title {
    color: #0c4a6e;
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.clarification-title i {
    margin-right: 0.5rem;
}

.clarification-text {
    color: var(--text-light);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.6;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.clarification-actions {
    display: flex;
    justify-content: center;
}

.clarification-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    border: 1px solid var(--primary);
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(1rem, 2.5vw, 1.2rem);
    border-radius: 6px;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.clarification-link:hover {
    background: var(--primary);
    color: white;
}

/* Resources Banner */
.resources-banner {
    padding: clamp(4rem, 8vw, 6rem) 0;
    background: white;
    position: relative;
}

.resources-banner::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(9, 123, 192, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.resources-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.resources-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.resources-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.resource-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.25rem;
    align-items: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

.resource-card:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.resource-badge {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    transition: var(--transition);
    flex-shrink: 0;
    border: 2px solid transparent;
}

.resource-card:hover .resource-badge {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.eventi-badge { background: linear-gradient(135deg, #f59e0b, #d97706); }
.assemblee-badge { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.verbali-badge { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.statuti-badge { background: linear-gradient(135deg, #ef4444, #dc2626); }
.fiscalita-badge { background: linear-gradient(135deg, #10b981, #059669); }
.volontari-badge { background: linear-gradient(135deg, #ec4899, #db2777); }
.assicurazioni-badge { background: linear-gradient(135deg, #097bc0, #0a5a8a); }
.costituzione-badge { background: linear-gradient(135deg, #ffea00, #ffd700); color: #6b4f00; }

.resource-content {
    flex: 1;
    min-width: 0;
}

.resource-category-tag {
    display: inline-flex;
    padding: 0.25rem 0.7rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.category-costituzione { background: rgba(255, 234, 0, 0.1); color: #d4a800; }
.category-eventi { background: rgba(245, 158, 11, 0.1); color: #d97706; }
.category-gestione { background: rgba(139, 92, 246, 0.1); color: #7c3aed; }
.category-documenti { background: rgba(6, 182, 212, 0.1); color: #0891b2; }
.category-legale { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.category-contabilita { background: rgba(16, 185, 129, 0.1); color: #059669; }
.category-risorse { background: rgba(236, 72, 153, 0.1); color: #db2777; }
.category-protezione { background: rgba(9, 123, 192, 0.1); color: #0a5a8a; }

.resource-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 0.4rem 0;
    line-height: 1.3;
}

.resource-desc {
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0;
}

.resource-arrow {
    width: 40px;
    height: 40px;
    background: rgba(9, 123, 192, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.resource-card:hover .resource-arrow {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.resource-cta-card {
    border: 2px dashed rgba(9, 123, 192, 0.3);
    background: linear-gradient(135deg, rgba(9, 123, 192, 0.03), rgba(79, 195, 247, 0.03));
    display: flex;
    cursor: default;
    padding: 2rem 1.5rem;
}

.resource-cta-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(9, 123, 192, 0.12);
}

.resource-cta-inner {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.resource-cta-icon {
    font-size: 2.5rem;
    color: var(--primary);
}

.resource-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
}

.resource-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 123, 192, 0.3);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 3rem auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: var(--light);
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(9, 123, 192, 0.05);
}

.faq-question:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background: var(--white);
}

.faq-answer.active {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.faq-answer ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.faq-answer strong {
    color: var(--primary);
}

.faq-cta {
    background: linear-gradient(135deg, var(--light) 0%, rgba(9, 123, 192, 0.05) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 4rem;
    border: 1px solid var(--border);
}

.faq-cta h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.faq-cta p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.cta-buttons-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 200px;
    text-align: center;
    cursor: pointer;
    border: 2px solid var(--primary);
    background: var(--primary);
    color: var(--white);
}

.cta-button + .cta-button {
    background: transparent;
    color: var(--primary);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 123, 192, 0.3);
}

/* Donation */
.donation-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 1rem;
}

.donation-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.donation-container h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.donation-container p {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.bank-box {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.bank-box h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.qr-link {
    margin-top: 1rem;
}

.qr-link a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.or-divider {
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.or-divider hr {
    flex: 1;
    border: none;
    border-top: 1px solid var(--border);
}

.or-divider span {
    color: var(--text-light);
    font-weight: 500;
}

.btn-donate {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    margin-top: 1rem;
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow);
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.donation-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 1rem;
    position: relative;
    overflow: hidden;
}

.newsletter-box {
    background: linear-gradient(135deg, white, #f0f9ff);
    border: 2px solid #097bc0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(79, 195, 247, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-box h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin: 0 0 0.8rem 0;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
}

.newsletter-box h3 i {
    font-size: 2.5rem;
    color: #097bc0;
}

.newsletter-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #097bc0, #0a5a8a);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(9, 123, 192, 0.2);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

.newsletter-content p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
    max-width: 400px;
}

.newsletter-content span {
    color: #94a3b8;
    font-size: 0.8rem;
}

/* Footer */
footer {
    background: var(--text-dark);
    color: white;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 3vw, 1.5rem) clamp(1rem, 2vw, 1rem);
}

.footer-content {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(clamp(220px, 40vw, 250px), 1fr));
    gap: clamp(1.5rem, 4vw, 2rem);
}

.footer-section h3 {
    margin-bottom: clamp(0.8rem, 2vw, 1rem);
    color: var(--accent);
    font-size: clamp(1.1rem, 2.5vw, 1.2rem);
}

.footer-section a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-section a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-contact {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link-button {
    background: none;
    border: none;
    color: white;
    opacity: 0.8;
    cursor: pointer;
    text-align: left;
    font-size: clamp(0.9rem, 2vw, 1rem);
    padding: 0;
    transition: var(--transition);
}

.footer-link-button:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-meta {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: clamp(1.5rem, 4vw, 2rem);
    padding-top: clamp(0.8rem, 2vw, 1rem);
    text-align: center;
    opacity: 0.6;
    font-size: clamp(0.8rem, 1.8vw, 0.9rem);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    color: white;
    padding: clamp(1rem, 3vw, 1.5rem);
    z-index: 10000;
    backdrop-filter: blur(15px);
    border-top: 2px solid #097bc0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: clamp(320px, 90vw, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
}

.cookie-message {
    flex: 1;
    min-width: 0;
}

.cookie-title {
    color: #4fc3f7;
    margin: 0 0 0.5rem 0;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    font-weight: 600;
}

.cookie-message p {
    margin: 0;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-message a {
    color: #4fc3f7;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-message a:hover {
    color: #097bc0;
}

.cookie-actions {
    display: flex;
    gap: clamp(0.5rem, 1.2vw, 0.7rem);
    flex-shrink: 0;
}

.cookie-btn {
    padding: clamp(0.6rem, 1.5vw, 0.8rem) clamp(0.8rem, 2vw, 1rem);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    font-size: clamp(0.8rem, 1.6vw, 0.85rem);
    border: none;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.cookie-accept {
    background: #097bc0;
    color: white;
}

.cookie-accept:hover {
    background: #0a5a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(9, 123, 192, 0.4);
}

.cookie-decline {
    background: #64748b;
    color: white;
}

.cookie-decline:hover {
    background: #475569;
    transform: translateY(-2px);
}

.cookie-settings {
    background: transparent;
    color: white;
    border: 1px solid #64748b;
}

.cookie-settings:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #4fc3f7;
    color: #4fc3f7;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    padding: clamp(1rem, 3vw, 2rem);
    backdrop-filter: blur(5px);
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    padding: 0;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2rem);
    border-bottom: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cookie-modal-header h3 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #64748b;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #1e293b;
}

.cookie-categories {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    max-height: 50vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    padding: clamp(1rem, 2.5vw, 1.2rem);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: border-color 0.3s ease;
}

.cookie-category:hover {
    border-color: #097bc0;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.category-header h4 {
    margin: 0;
    color: #1e293b;
    font-size: clamp(1rem, 2.2vw, 1.1rem);
}

.category-description {
    margin: 0 0 0.8rem 0;
    color: #64748b;
    font-size: clamp(0.85rem, 1.8vw, 0.9rem);
    line-height: 1.5;
}

.cookie-details {
    padding-top: 0.5rem;
    border-top: 1px solid #f1f5f9;
}

.cookie-details small {
    color: #94a3b8;
    font-size: clamp(0.75rem, 1.6vw, 0.8rem);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    background-color: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.toggle-slider:before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #097bc0;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #10b981;
}

.cookie-modal-footer {
    padding: clamp(1rem, 2.5vw, 1.5rem);
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-save {
    background: #097bc0;
    color: white;
}

/* Responsive */
@media (min-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .resources-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .partners-grid {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
        z-index: 1002;
    }

    .nav-menu.active {
        display: flex;
    }

    .cta-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: clamp(2rem, 6vw, 3rem);
    }

    .hero-visual {
        order: -1;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer.active {
        padding: 1rem;
    }

    .faq-cta {
        padding: 2rem 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: left;
    }

    .cookie-actions {
        justify-content: stretch;
        flex-wrap: wrap;
    }

    .cookie-btn {
        flex: 1;
        min-width: 0;
        justify-content: center;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: clamp(1rem, 4vw, 1.5rem);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        gap: 1.5rem;
    }

    .card-header,
    .partner-header {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .partner-logo,
    .partner-logo-icon {
        width: 60px;
        height: 60px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .partner-stats {
        flex-direction: column;
        gap: 0.6rem;
    }

    .partner-tags {
        justify-content: center;
    }

    .partner-name {
        font-size: 1.3rem;
    }

    .partner-description {
        font-size: 0.95rem;
    }

    .resource-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.25rem;
    }

    .resource-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .resource-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .resource-arrow {
        margin: 0 auto;
    }

    .resource-card:hover {
        transform: translateY(-5px);
    }
}

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

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

    .cookie-btn {
        width: 100%;
        padding: 1rem;
    }

    .cookie-modal {
        padding: 1rem;
    }

    .cookie-categories {
        padding: 1rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

.partner-card:focus-visible,
.resource-card:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
}

/* Print */
@media print {
    .resources-banner::before {
        display: none;
    }

    .resource-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #000;
        page-break-inside: avoid;
    }

    .resource-cta-card {
        display: none;
    }
}
