/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary: #3C1A5B;
    --primary-dark: #2A1241;
    --primary-light: #5A2E7A;
    --accent: #FFF748;
    --accent-hover: #FFE600;
    
    /* Neutrals */
    --text-primary: #211E23;
    --text-secondary: #4A4A4A;
    --text-light: #6A6A6A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-lighter: #FAFBFC;
    --border: #E5E7EB;
    
    /* Typography */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Radio Canada Big', sans-serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-cta::after {
    display: none;
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: calc(80px + var(--space-3xl)) 0 var(--space-3xl);
    background: linear-gradient(135deg, var(--bg-lighter) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(100px);
}

.hero-graphic {
    position: absolute;
    top: 50%;
    right: -5%;
    transform: translateY(-50%);
    width: 400px;
    height: auto;
    opacity: 0.15;
    z-index: 0;
}

.hero-graphic img {
    width: 100%;
    height: auto;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    animation: badgePulse 3s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(60, 26, 91, 0.3);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    animation-play-state: paused;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(60, 26, 91, 0.4);
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(60, 26, 91, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(60, 26, 91, 0.5);
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-bottom: var(--space-xl);
}

/* Hero Client Logos */
.hero-clients {
    text-align: center;
    margin-bottom: var(--space-md);
}

.clients-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    font-weight: 500;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.client-logo {
    height: 60px;
    width: auto;
    opacity: 0.7;
    filter: grayscale(100%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* CTA Section Button */
.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    font-weight: 700;
}

.cta-section .btn-primary:hover {
    background: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

.footer-links .social-links a {
    color: white;
    opacity: 0.8;
}

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

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: white;
    opacity: 0.9;
    margin: 0;
}

.footer-links {
    text-align: right;
}

.footer-links > a {
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-links > a:hover {
    opacity: 1;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-2px);
    color: var(--primary);
}

.social-links i {
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: white;
    opacity: 0.8;
    margin: 0;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-display);
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Expertise Section */
.expertise {
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.expertise-graphic {
    position: absolute;
    top: 20%;
    left: -8%;
    width: 350px;
    height: auto;
    opacity: 0.08;
    z-index: 0;
}

.expertise-graphic img {
    width: 100%;
    height: auto;
    transform: rotate(10deg);
}

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.expertise-card {
    background: var(--bg-light);
    padding: var(--space-xl);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.expertise-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.expertise-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.expertise-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: var(--space-3xl) 0;
    background: var(--bg-lighter);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: var(--space-xl);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-card.featured {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(60, 26, 91, 0.15);
    overflow: visible;
}

.service-header {
    margin-bottom: var(--space-lg);
}

.service-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.service-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.service-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    text-align: left;
}

.service-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    margin-right: var(--space-sm);
}

.service-cta {
    text-align: center;
    margin-top: auto;
}

/* Tools Section */
.tools {
    padding: var(--space-3xl) 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
}

.tool-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.3s ease;
}

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

.tool-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary);
}

.tool-card h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.tool-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

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

/* CTA Section */
.cta-section {
    padding: var(--space-3xl) 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.cta-buttons {
    margin-top: 0;
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
}

.cta-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.secondary-btn {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.secondary-btn:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.cta-note {
    margin-top: var(--space-md);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Footer */
.basic-footer {
    background: white;
    border-top: 1px solid #E5E7EB;
    padding: 1.5rem 0;
    margin-top: 4rem;
    width: 100%;
}

.basic-footer .container,
.basic-footer .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    width: 100%;
}

.basic-footer-left {
    color: #6B7280;
    font-size: 0.875rem;
}

.basic-footer-left span {
    color: var(--primary);
    font-weight: 500;
}

.basic-footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.basic-footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.basic-footer-links a:hover {
    color: var(--primary-dark);
    transform: translateY(-1px);
}

.basic-footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.basic-footer-links a:hover::after {
    width: 100%;
}

.basic-footer-social {
    display: flex;
    gap: 1.5rem;
}

.basic-footer-social a {
    color: #6B7280;
    font-size: 1.25rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

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

/* Keep old footer styles for existing pages */
.footer {
    background: var(--bg-light);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    color: var(--text-secondary);
}

.footer-links h4 {
    margin-bottom: var(--space-md);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: var(--space-sm);
    transition: color 0.2s ease;
}

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

.social-links {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: var(--space-lg);
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .nav-menu {
        gap: var(--space-md);
    }
    
    .nav-link:not(.nav-cta) {
        display: none;
    }
    
    .hero {
        padding: calc(80px + var(--space-xl)) 0 var(--space-xl);
        text-align: center;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .services-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }
    
    .basic-footer .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .basic-footer-left {
        align-items: center;
    }
    
    .basic-footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .basic-footer-social {
        justify-content: center;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Form optimizations */
    .resource-form {
        flex-direction: column;
    }
    
    .resource-form input,
    .resource-form button {
        width: 100%;
    }
    
    /* Navigation improvements */
    .nav-wrapper {
        padding: 0.75rem 0;
    }
    
    .logo img {
        height: 50px;
    }
    
    /* Typography scaling */
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Free Resource Section */
.resources {
    padding: var(--space-3xl) 0;
    background: var(--bg-light);
}

.resource-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

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

.resource-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.resource-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.resource-list {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.resource-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    color: var(--text-secondary);
}

.resource-list i {
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.resource-form {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.resource-form input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.resource-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.resource-form button {
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.resource-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.resource-note {
    font-size: 0.875rem;
    color: var(--text-light);
}

.resource-image {
    background: var(--bg-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: var(--space-2xl);
}

.resource-image img {
    max-width: 100%;
    height: auto;
}

/* FAQ Section */
.faq {
    padding: var(--space-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: var(--space-lg);
    transition: all 0.3s ease;
}

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

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-lighter);
    border-radius: 12px;
}

.faq-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--space-md);
    color: var(--text-secondary);
}

/* Industry Insights Section */
.insights {
    padding: var(--space-3xl) 0;
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.insights::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.05;
    filter: blur(100px);
}

.insights .section-title,
.insights .section-subtitle {
    color: white;
}

.insights .section-subtitle {
    opacity: 0.9;
}

.insights-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    justify-content: center;
}

.insight-card {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    flex: 0 1 calc(25% - var(--space-xl));
    min-width: 250px;
    max-width: 300px;
}

.insight-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.insight-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--accent);
    margin-bottom: var(--space-sm);
    font-family: var(--font-display);
}

.insight-label {
    font-size: 1.125rem;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.insight-detail {
    font-size: 0.875rem;
    opacity: 0.8;
}

.insights-source {
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* Responsive updates for new sections */
@media (max-width: 768px) {
    .resource-card {
        grid-template-columns: 1fr;
    }
    
    .resource-image {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        justify-items: center; /* center items horizontally */
    }

    /* Ensure cards use full available width on small screens */
    .insight-card {
        flex: 1 1 100%;
        max-width: 100%;
        width: 100%;
    }
    
    .insight-card {
        padding: 24px 20px;
    }
    
    .insight-number {
        font-size: 2rem;
    }
    
    .download-card {
        padding: 32px 24px;
    }
    
    .download-card h2 {
        font-size: 2rem;
    }
    
    .feature-item {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .download-form-wrapper {
        max-width: 100%;
    }
    
    .download-graphic {
        width: 250px;
        height: 250px;
        opacity: 0.06;
        left: -10%;
        transform: rotate(15deg);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn, .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .hero-graphic {
        width: 350px;
        height: 350px;
        opacity: 0.08;
        top: 50%;
        right: -12%;
        transform: translateY(-50%) rotate(-15deg);
    }
    
    .cta-graphic {
        width: 200px;
        height: 200px;
        opacity: 0.06;
        right: -15%;
        transform: rotate(-15deg);
    }
}

/* Insights Section */
.insights {
    padding: var(--space-3xl) 0;
    background: #f8fafc;
}

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

.insights .section-subtitle {
    color: var(--text-secondary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.insights-source {
    margin-top: 40px;
    text-align: center;
}

.insights-source p {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.insight-card {
    background: var(--primary);
    color: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(60, 26, 91, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.insight-card:hover {
    background: white;
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(60, 26, 91, 0.15);
}

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

.insight-card:hover .insight-label {
    color: var(--primary);
}

.insight-card:hover .insight-detail {
    color: var(--text-primary);
    opacity: 1;
}

.insight-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.1;
    word-break: break-word;
    overflow-wrap: break-word;
}

.insight-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.insight-detail {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Download Section */
.download-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.download-graphic {
    position: absolute;
    top: 20%;
    left: -5%;
    width: 400px;
    height: 400px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    transform: rotate(15deg);
}

.download-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.download-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.download-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.download-card h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.download-card > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.checklist-features {
    margin-bottom: 40px;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--text-secondary);
}

.feature-item i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.download-form-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.download-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: var(--font-body);
    background: white;
    color: var(--text-primary);
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input[type="email"]::placeholder {
    color: #94a3b8;
}

.consent-group {
    margin-bottom: 24px;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.consent-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

.consent-text a:hover {
    color: #2d1346;
}

.download-btn {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: #2d1346;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 26, 91, 0.3);
}

.download-note {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #2d1346;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(60, 26, 91, 0.3);
}

.secondary-btn {
    display: inline-block;
    padding: 16px 32px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Logo Styling */
.hero-graphic {
    position: absolute;
    top: 50%;
    right: -8%;
    width: 500px;
    height: 500px;
    opacity: 0.05;
    z-index: 0;
    transform: translateY(-50%) rotate(-15deg);
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* reCAPTCHA Badge Fix */
.grecaptcha-badge {
    z-index: 9999 !important;
}

/* CTA Graphic Styling */
.cta-graphic {
    position: absolute;
    top: 15%;
    right: -8%;
    width: 350px;
    height: 350px;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}

.cta-graphic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Privacy Policy & Terms Pages */
.privacy-content + .basic-footer {
    /* Reduce default 4rem margin-top on footer when following legal pages */
    margin-top: 1.5rem !important;
}

/* Privacy Policy Page */
.privacy-content {
    /* Reduced bottom padding to minimize whitespace before footer */
    padding: 120px 0 24px;
    background: white;
}

.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2rem;
    text-align: center;
}

.privacy-content h2 {
    font-family: 'Radio Canada Big', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin: 2rem 0 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 0.5rem;
}

.privacy-content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.privacy-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.privacy-content li {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.privacy-content strong {
    color: var(--primary);
    font-weight: 600;
}

.back-to-home {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.back-to-home .btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-to-home .btn:hover {
    background: #2d1345;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-content h2 {
        font-size: 1.3rem;
    }
    
    .privacy-content {
        /* Mobile: lighter bottom padding */
        padding: 100px 0 24px;
    }
}
