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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Serif Pro', serif;
    background: #ffffff;
    color: #000000;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography Variables */
:root {
    --header-1: 'Source Serif Pro', serif;
    --header-2: 'Radio Canada', sans-serif;
    --paragraph: 'Source Serif Pro', serif;
    --button-text: 'Geist Mono', monospace;
    --nav-link: 'Radio Canada', sans-serif;
    
    /* Updated Colors to match Vaatsa logo */
    --primary-blue: #3B82C8;
    --primary-teal: #5EC4BC;
    --accent-blue: #2563EB;
    --text-headline: #000000;
    --text-button: #FFFFFF;
    --text-paragraph-2: #6C6C6C;
    --text-paragraph-3: #2C5282;
    --background-1: #FFFFFF;
    --background-2: #F7FAFC;
    --background-3: transparent;
    --background-4: #EBF8FF;
    --background-5: #1A365D;
    --divider: #E2E8F0;
    --sticker: #3B82C8;
    --gradient-start: #5EC4BC;
    --gradient-end: #3B82C8;
}

/* Navigation */
.navigation {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navigation .logo {
    height: 45px;
    width: auto;
    flex-shrink: 0;
}

.navigation .logo img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
}

.nav-items {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-items a {
    font-family: var(--nav-link);
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    color: #000000;
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
}

.nav-items a:hover {
    color: var(--primary-blue);
}

.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

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

.nav-link-cta {
    display: flex;
    gap: 6px;
    align-items: center;
    cursor: pointer;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white !important;
    border-radius: 6px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.nav-link-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 200, 0.3);
}

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

.arrow-icon {
    width: 12px;
    height: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.arrow-icon svg {
    width: 100%;
    height: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #000;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.gradient-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 850px;
    background: linear-gradient(180deg, #E0F2FE 0%, #F0F9FF 50%, #FFFFFF 100%);
    z-index: 0;
}

.intro-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    padding: 160px 40px 80px;
    z-index: 1;
}

.intro-content {
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}

.header-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    width: 100%;
    text-align: center;
    color: #000000;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 72px;
    line-height: 1.1;
    padding-bottom: 10px;
}

.header h1 {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: -2.5px;
    width: 100%;
    background: linear-gradient(135deg, var(--gradient-end), var(--gradient-start));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.header h2 {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 400;
    letter-spacing: -3.5px;
    width: 100%;
    color: var(--background-5);
}

.subheader {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    letter-spacing: -0.5px;
    width: 100%;
    max-width: 800px;
    color: #334155;
}

.button-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 200, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 200, 0.35);
}

.btn-primary .bullet {
    width: 5px;
    height: 5px;
    background: #ffffff;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-primary,
.btn-secondary {
    font-family: 'Geist Mono', monospace;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
}

.hero-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    aspect-ratio: 960/608;
    border: 2px solid #E2E8F0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.features-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 100px 40px;
    z-index: 1;
}

.section-title {
    display: block;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-align: center;
    max-width: 700px;
    width: 100%;
    color: var(--background-5);
}

.content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1400px;
    width: 100%;
}

.feature-image {
    flex: 1;
    width: 100%;
    max-width: 650px;
    aspect-ratio: 693/502;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.feature-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    flex: 1;
    max-width: 550px;
}

.item-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    list-style: none;
}

.list-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    padding: 28px 0;
    border-top: 1px solid var(--divider);
    border-bottom: 0;
    transition: background 0.3s ease;
}

.list-item:hover {
    background: rgba(94, 196, 188, 0.03);
}

.list-item.last {
    border-bottom: 1px solid var(--divider);
}

.item-header {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    line-height: 1;
}

.item-header h3 {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: -0.3px;
    color: var(--primary-blue);
    flex: 1;
}

.item-number {
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    text-align: right;
    color: var(--primary-teal);
    background: rgba(94, 196, 188, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.item-description {
    display: block;
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: -0.3px;
    color: #475569;
    width: 100%;
}

.values-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 100px 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    opacity: 0.3;
}

.values-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1400px;
    width: 100%;
    font-size: 68px;
    line-height: 1.1;
    text-align: center;
    padding-bottom: 10px;
    position: relative;
    z-index: 1;
}

.values-header h2:first-child {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    letter-spacing: -2.5px;
    width: 100%;
    color: var(--primary-blue);
}

.values-header h2:last-child {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 400;
    letter-spacing: -3px;
    width: 100%;
    color: var(--background-5);
}

.value-modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.value-card {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    min-height: 280px;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--divider);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(59, 130, 200, 0.15);
    border-color: var(--primary-teal);
}

.value-card .icon {
    width: 48px;
    height: 48px;
    position: relative;
}

.value-card .icon img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    width: 100%;
    font-size: 18px;
    color: #000000;
}

.card-content h3 {
    display: block;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    width: 100%;
    color: var(--background-5);
}

.card-content p {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
    width: 100%;
    color: #475569;
}

.case-study-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 40px;
}

.case-study-module {
    background: var(--background-2);
    display: flex;
    gap: 50px;
    align-items: center;
    max-width: 1100px;
    width: 100%;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--divider);
}

.case-study-image {
    flex: 1;
    max-width: 500px;
    aspect-ratio: 498/280;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.case-study-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
    flex: 1;
    max-width: 450px;
}

.case-study-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    width: 100%;
    font-size: 18px;
    color: #000000;
}

.case-study-text h3 {
    display: block;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3;
    letter-spacing: -0.3px;
    width: 100%;
    color: var(--background-5);
}

.case-study-text p {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.2px;
    width: 100%;
    color: #475569;
}

.btn-secondary {
    background: var(--background-5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 200, 0.3);
}

.blog-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 80px 40px;
}

.article-body {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 700px;
    width: 100%;
}

.journal-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.journal-item {
    border-top: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 0;
    transition: background 0.3s ease;
}

.journal-item:hover {
    background: rgba(94, 196, 188, 0.03);
}

.journal-item:not(:first-child) {
    border-top: 0;
}

.journal-content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
    width: 100%;
}

.journal-image {
    width: 180px;
    height: 120px;
    flex-shrink: 0;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.journal-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.journal-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    flex: 1;
}

.journal-details h3 {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.3px;
    color: var(--background-5);
}

.journal-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-family: 'Geist Mono', monospace;
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
    color: var(--primary-blue);
}

.testimonial-section {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 100px 40px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F0F9FF 100%);
}

.testimonial-content {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    width: 100%;
}

.testimonial-image {
    flex: 1;
    max-width: 600px;
    aspect-ratio: 612/700;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-quote {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
    justify-content: center;
    flex: 1;
    max-width: 650px;
}

.quotation-mark {
    width: 32px;
    height: 28px;
    position: relative;
    color: var(--primary-teal);
}

.quotation-mark svg {
    display: block;
    width: 100%;
    height: 100%;
}

.testimonial-quote h2 {
    display: block;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.4;
    letter-spacing: -0.5px;
    color: var(--background-5);
    width: 100%;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
    font-size: 18px;
}

.author-name {
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.2px;
    color: var(--primary-blue);
    width: 100%;
}

.author-role {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.2px;
    color: #64748B;
    width: 100%;
}

.cta-section {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
    align-items: center;
    padding: 100px 40px;
}

.cta-section h4 {
    display: block;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 600;
    font-size: 40px;
    line-height: 1.3;
    letter-spacing: -0.8px;
    text-align: center;
    color: #ffffff;
    max-width: 1000px;
    width: 100%;
}

.btn-cta {
    background: #ffffff;
    color: var(--primary-blue) !important;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 18px 32px;
    transition: all 0.3s ease;
}

.btn-cta .bullet {
    background: var(--primary-blue);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.footer {
    background: var(--background-5);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    padding: 60px 40px 40px;
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    font-size: 16px;
    color: #ffffff;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    font-family: 'Radio Canada', sans-serif;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.2px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s;
}

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

.copyright {
    font-family: 'Source Serif Pro', serif;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.2px;
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
}

.footer-image {
    width: 100%;
    max-width: 1400px;
    height: 250px;
    position: relative;
    mix-blend-mode: soft-light;
    opacity: 0.3;
    border-radius: 12px;
    overflow: hidden;
}

.footer-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1400px;
}

.footer-logo {
    width: 100%;
    max-width: 200px;
    height: auto;
    position: relative;
}

.footer-logo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1200px) {
    .content {
        gap: 40px;
    }
    
    .testimonial-content {
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .navigation {
        padding: 15px 30px;
    }
    
    .header {
        font-size: 56px;
    }
    
    .values-header {
        font-size: 52px;
    }
    
    .content {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-image,
    .feature-list {
        max-width: 100%;
    }
    
    .case-study-module {
        flex-direction: column;
        gap: 30px;
    }
    
    .case-study-image,
    .case-study-content {
        max-width: 100%;
    }
    
    .testimonial-content {
        flex-direction: column;
    }
    
    .testimonial-image,
    .testimonial-quote {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .navigation {
        padding: 15px 20px;
        height: 60px;
    }
    
    .navigation .logo {
        height: 35px;
    }
    
    .nav-items {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 20px;
        padding: 40px 20px;
        align-items: flex-start;
        transition: left 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .nav-items.active {
        left: 0;
    }
    
    .nav-items a {
        font-size: 20px;
        width: 100%;
        padding: 15px 0;
        border-bottom: 1px solid var(--divider);
    }
    
    .nav-link-cta {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .intro-section {
        padding: 120px 20px 60px;
        gap: 40px;
    }
    
    .header {
        font-size: 40px;
    }
    
    .header h1,
    .header h2 {
        letter-spacing: -1.5px;
    }
    
    .subheader {
        font-size: 18px;
        line-height: 1.6;
    }
    
    .button-row {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 300px;
    }
    
    .gradient-background {
        height: 650px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-section,
    .values-section,
    .case-study-section,
    .blog-section,
    .testimonial-section,
    .cta-section {
        padding: 60px 20px;
    }
    
    .values-header {
        font-size: 36px;
    }
    
    .value-modules {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-card {
        padding: 30px;
        min-height: auto;
    }
    
    .case-study-module {
        padding: 25px;
        gap: 25px;
    }
    
    .journal-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .journal-image {
        width: 100%;
        height: 180px;
    }
    
    .journal-details {
        width: 100%;
    }
    
    .testimonial-quote h2 {
        font-size: 26px;
    }
    
    .cta-section h4 {
        font-size: 28px;
    }
    
    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .copyright {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .header {
        font-size: 32px;
    }
    
    .values-header {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .cta-section h4 {
        font-size: 24px;
    }
}
