:root {
    --color-bg: #181818;
    --color-text: #ffffff;
    --color-text-secondary: #a3a3a3;
    --color-text-muted: #999999;
    --color-accent: #4a90e2;
    --font-main: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --spacing-unit: 8px;
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 60px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #181818;
    border-bottom: 1px solid #555555;
    opacity: 0;
    animation: fadeIn 0.8s var(--transition-timing) forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 20px;
    width: auto;
}

/* Navigation Dropdown Styles */
.nav-item-dropdown {
    position: relative;
}

.chevron-icon {
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown.open .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--color-bg);
    border: 1px solid var(--color-text);
    border-radius: 8px;
    padding: 6px;
    min-width: 355px;
    display: none;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.nav-item-dropdown.open .dropdown-menu {
    display: flex;
}

.dropdown-item {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 8px;
    border-radius: 7px;
    text-decoration: none;
    color: var(--color-text);
    transition: background 0.2s ease;
    background: transparent;
}

.dropdown-item.active {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-item.disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: not-allowed;
}

.dropdown-item.disabled .dropdown-item-icon {
    filter: grayscale(100%);
}

.dropdown-item.disabled .dropdown-item-title,
.dropdown-item.disabled .dropdown-item-subtitle {
    color: rgba(255, 255, 255, 0.5);
}

.dropdown-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    background: #007242;
    flex-shrink: 0;
}

.dropdown-item:nth-child(1) .dropdown-item-icon {
    background: url('assets/mga-hero-art.png') center/cover;
}

.dropdown-item:nth-child(2) .dropdown-item-icon {
    background: url('assets/carriers-icon.png') center/cover;
}

.dropdown-item:nth-child(3) .dropdown-item-icon {
    background: url('assets/partners-icon.png') center/cover;
}

.dropdown-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dropdown-item-title {
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.96px;
    color: #a3a3a3;
}

.dropdown-item-subtitle {
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    letter-spacing: -0.78px;
    opacity: 0.8;
    color: #a3a3a3;
}

.nav-menu {
    display: flex;
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    align-items: center;
}

.nav-item {
    background: transparent;
    border: none;
    color: #a3a3a3;
    padding: 8px;
    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: color 0.3s var(--transition-timing);
    font-family: 'Instrument Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item:hover {
    color: white;
}

.nav-cta-wrapper {
    margin-left: auto;
    position: relative;
}

/* Nav CTA Bottom Corner Brackets */
.nav-cta-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scale(-1, 1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.nav-cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.nav-cta-wrapper:hover::before,
.nav-cta-wrapper:hover::after {
    opacity: 0.8;
}

.nav-cta {
    background: var(--color-bg);
    border: none;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: all 0.3s var(--transition-timing);
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.nav-cta-chevron {
    width: 8px;
    height: 8px;
}

/* Nav CTA Top Corner Brackets */
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scaleY(-1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-cta:hover::before,
.nav-cta:hover::after,
.nav-cta-wrapper:hover .nav-cta::before,
.nav-cta-wrapper:hover .nav-cta::after {
    opacity: 0.8;
}

.nav-cta {
    background: #181818;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: all 0.3s var(--transition-timing);
    font-family: 'Instrument Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-cta:hover {
    background: #282828;
}

.nav-cta-chevron {
    width: 8px;
    height: 8px;
    stroke: white;
}

/* Reusable Nav-Style Button with Corner Decorations */
.nav-style-button-wrapper {
    display: inline-block;
    position: relative;
}

.nav-style-button-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scale(-1, 1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.nav-style-button-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.nav-style-button-wrapper:hover::before,
.nav-style-button-wrapper:hover::after {
    opacity: 0.8;
}

.nav-style-button-dark {
    background: #181818;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: all 0.3s var(--transition-timing);
    font-family: 'Instrument Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-style-button-dark:hover {
    background: #282828;
}

.nav-style-button-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-style-button-dark::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scaleY(-1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.nav-style-button-dark:hover::before,
.nav-style-button-dark:hover::after {
    opacity: 0.8;
}

/* Light variant (opposite contrast) */
.nav-style-button-light {
    background: white;
    border: none;
    color: #181818;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: all 0.3s var(--transition-timing);
    font-family: 'Instrument Sans', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

.nav-style-button-light:hover {
    background: #f5f5f5;
}

.nav-style-button-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: invert(1);
}

.nav-style-button-light::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scaleY(-1);
    opacity: 0.5;
    transition: opacity 0.3s ease;
    filter: invert(1);
}

.nav-style-button-light:hover::before,
.nav-style-button-light:hover::after {
    opacity: 0.8;
}

/* Light variant bottom corners with inverted color */
.nav-style-button-wrapper.light::before,
.nav-style-button-wrapper.light::after {
    filter: invert(1);
}

.nav-style-button-light .chevron,
.nav-style-button-dark .chevron {
    width: 8px;
    height: 8px;
}

.mobile-nav {
    display: none;
}

.nav-item svg {
    width: 8px;
    height: 8px;
}

.nav-item:hover,
.nav-item:focus-visible {
    background: transparent;
    border: none;
    color: var(--color-text);
    outline: none;
}

.nav-item.active {
    background: transparent;
    border: none;
    color: var(--color-text);
}

.nav-item.completed {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.35);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s var(--transition-timing);
}

/* Overlay Menu (Mobile) */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-bg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s var(--transition-timing);
}

.overlay-menu.active {
    opacity: 1;
    pointer-events: all;
}

.close-menu {
    position: absolute;
    top: calc(var(--spacing-unit) * 3);
    right: calc(var(--spacing-unit) * 4);
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.overlay-menu-items {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
    width: 80%;
    max-width: 400px;
}

.overlay-nav-item {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    padding-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    font-family: var(--font-main);
    transition: color 0.3s var(--transition-timing);
}

.overlay-nav-link {
    color: var(--color-text);
    font-size: 2rem;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: calc(var(--spacing-unit) * 2);
    position: relative;
    font-family: var(--font-main);
    transition: color 0.3s var(--transition-timing);
    border-bottom: 2px solid transparent;
}

.overlay-nav-link:hover,
.overlay-nav-link:focus-visible {
    color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.overlay-nav-link.overlay-nav-cta {
    color: #00ff88;
    font-weight: 700;
}

.overlay-nav-item:hover,
.overlay-nav-item:focus-visible {
    color: rgba(255, 255, 255, 0.7);
    outline: none;
}

.progress-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--color-text);
    width: 0%;
    transition: width 0.6s var(--transition-timing);
}

.overlay-nav-item.completed .progress-underline {
    width: 100%;
    opacity: 0.5;
}

.overlay-nav-item.active .progress-underline {
    width: 100%;
    opacity: 1;
}

/* Hero Tagline */
.hero-tagline {
    position: absolute;
    top: calc(60px + var(--spacing-unit) * 2);
    width: 100%;
    text-align: center;
    z-index: 100;
    pointer-events: none;
    display: flex;
    justify-content: center;
}

.hero-tagline p {
    font-size: 1rem;
    color: white;
    margin: 0;
    opacity: 0.7;
    font-weight: 300;
    max-width: 400px;
}

/* Sections */
.section {
    min-height: 100vh;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4);
    position: relative;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: var(--color-bg);
    overflow: hidden;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
    padding-right: calc(var(--spacing-unit) * 4);
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 0;
    transition: opacity 0.6s var(--transition-timing);
}

.hero-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    min-width: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: right;
    transition: transform 0.3s ease-out;
}

.hero-logotype {
    font-size: clamp(3rem, 15vw, 12rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.8s var(--transition-timing), transform 1.2s var(--transition-timing);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
}

.hero-logotype.visible {
    opacity: 1;
    transform: translateX(0);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: calc(var(--spacing-unit) * 1);
    margin-top: calc(var(--spacing-unit) * 4);
    opacity: 0.7;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.05em;
}

.scroll-arrow {
    color: rgba(255, 255, 255, 0.8);
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
}

/* Hero Subtitle Section */
.hero-subtitle-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-color: transparent;
    overflow: hidden;
    position: relative;
    padding-left: calc(var(--spacing-unit) * 4);
    padding-right: calc(var(--spacing-unit) * 4);
}

.hero-subtitle-background {
    display: none; /* Don't show duplicate background */
}

.hero-subtitle-content {
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: right;
    transition: transform 0.3s ease-out;
}

.hero-subtitle {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--color-text);
    max-width: 1200px;
    text-align: right;
    margin-left: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* About Section */
.about-section {
    padding-top: 0;
    position: relative;
    z-index: 2;
    background-color: var(--color-bg);
}

/* About Hero */
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    opacity: 0;
    will-change: opacity;
    pointer-events: none;
}

.about-hero-svg,
.about-hero-image {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: exclusion;
    opacity: 0.6;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    transition: transform 0.3s ease-out;
}

.about-highlight {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: calc(var(--spacing-unit) * 10);
    will-change: opacity;
}

.highlight-text {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    max-width: 1200px;
    color: rgba(255, 255, 255, 0.6);
}

.highlight-line {
    display: block;
    opacity: 0.3;
    color: #666666;
    transition: opacity 0.8s var(--transition-timing), color 0.8s var(--transition-timing);
}

.highlight-line.active {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
}

/* Parallax Image */
.parallax-image-container {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: calc(var(--spacing-unit) * 10) 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s var(--transition-timing), transform 1s var(--transition-timing);
}

.parallax-image-container.reveal {
    opacity: 1;
    transform: translateY(0);
}

.parallax-image {
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transition: transform 0.1s ease-out;
}

/* Two Column Layout */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    margin: calc(var(--spacing-unit) * 15) 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.column-left {
    position: relative;
}

.column-right {
    position: relative;
}

.sticky-column {
    position: sticky;
    top: calc(30vh + var(--spacing-unit) * 10);
    align-self: start;
    height: fit-content;
}

.left-content h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: calc(var(--spacing-unit) * 4);
}

.accent-graphic {
    width: 710px;
    height: 409px;
    margin-top: calc(var(--spacing-unit) * 4);
}

.accent-graphic img {
    width: 100%;
    height: 100%;
    display: block;
}

.right-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* Vision Section */
.vision-section {
    padding: calc(var(--spacing-unit) * 15) calc(var(--spacing-unit) * 4);
    background-color: var(--color-bg);
    position: relative;
    z-index: 3;
}

.vision-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: start;
}

.vision-left {
    padding-top: 0;
}

.vision-sticky {
    position: sticky;
    top: calc(20vh);
    align-self: start;
}

.vision-right {
    padding-top: calc(var(--spacing-unit) * 30);
    padding-bottom: calc(var(--spacing-unit) * 30);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 15);
}

.vision-left h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: calc(var(--spacing-unit) * 6);
    color: var(--color-text);
}

.vision-graphic {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1440 / 1024;
    margin-top: calc(var(--spacing-unit) * 4);
}

.vision-svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vision-item {
    padding-bottom: calc(var(--spacing-unit) * 4);
}

/* First vision item (intro text) - match left column styling */
.vision-item:first-child p {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.vision-item h4 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: calc(var(--spacing-unit) * 3);
    color: var(--color-text);
}

.vision-item p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-muted);
}

/* Principles Section */
.principles-section {
    background: linear-gradient(180deg, var(--color-bg) 0%, rgba(20, 20, 30, 1) 100%);
}

.principle-graphic {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.3) 0%, transparent 70%);
    border: 2px solid rgba(74, 144, 226, 0.5);
    border-radius: 50%;
    margin-top: calc(var(--spacing-unit) * 4);
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
}

.principle-item {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s var(--transition-timing), transform 0.8s var(--transition-timing);
}

.principle-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.principle-item h4 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: calc(var(--spacing-unit) * 2);
    color: var(--color-accent);
}

.principle-item p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

/* Focus Section */
.focus-section {
    background: #181818;
    position: relative;
    z-index: 3;
}

.focus-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 10);
    align-items: start;
}

.focus-content .column-left {
    position: sticky;
    top: calc(20vh);
    align-self: start;
}

.focus-content .column-right {
    padding-top: calc(var(--spacing-unit) * 30);
    padding-bottom: calc(var(--spacing-unit) * 30);
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 6);
}

.focus-content .column-left h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.focus-content .column-right p {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: calc(var(--spacing-unit) * 4);
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: calc(var(--spacing-unit) * 4) 0;
    position: relative;
}

.marquee-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
}

/* Slower marquee on mobile as per v2 spec (15-20s) */
@media (max-width: 768px) {
    .marquee-content {
        animation-duration: 17s;
    }
}

.marquee-content:nth-child(2) {
    display: none; /* Hide duplicate row for single row display */
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content,
    .cta-marquee-content {
        animation: none;
    }
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.marquee-item {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    font-style: italic;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.6);
}

/* Bottom Section Wrapper */
.bottom-section-wrapper {
    width: 100%;
    position: relative;
    min-height: 800px;
}

/* Bottom Graphic */
.bottom-graphic {
    width: 100%;
    height: 800px;
    background-image: url('assets/bottom.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0;
    margin: 0;
    position: relative;
}

.bottom-footer-section {
    width: 100%;
    background: #000000;
    padding: calc(var(--spacing-unit) * 8) calc(var(--spacing-unit) * 4);
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3);
}

.footer-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: white;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.footer-link {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.7;
}

.footer-copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem 0 0.75rem;
}

.footer-legal-link {
    color: var(--color-light-green);
    text-decoration: none;
    font-size: 0.875rem;
    transition: opacity 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 0.7;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
}

/* Old footer styles - removed */

/* Join the Ascent Section */
.join-ascent-section {
    width: 100%;
    min-height: 600px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--spacing-unit) * 10) calc(var(--spacing-unit) * 4);
    position: relative;
    z-index: 10;
}

.join-ascent-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--spacing-unit) * 8);
    align-items: center;
}

.join-ascent-left {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 2);
}

.join-ascent-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: white;
    margin: 0;
    line-height: 1.1;
}

.join-ascent-subtitle {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
}

.join-ascent-right {
    display: flex;
    justify-content: flex-end;
}

.join-ascent-form {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 3);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: calc(var(--spacing-unit) * 0.5);
}

.form-group label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.form-group input {
    padding: calc(var(--spacing-unit) * 2);
    background: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Instrument Sans', sans-serif;
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.form-group input:focus {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.notify-button {
    padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 4);
    background: transparent;
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Instrument Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: calc(var(--spacing-unit) * 1);
}

.notify-button:hover {
    background: white;
    color: #000000;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin: 0;
    margin-top: calc(var(--spacing-unit) * 1);
}

/* Old Bottom Marquee - Removed */

/* Bottom Footer Section */
/* V2 Footer Section */
.v2-footer-section {
    background: #181818;
    width: 100%;
}

.v2-footer-main {
    display: flex;
    border-bottom: 1px solid #525252;
}

.v2-footer-logo-section {
    width: 680px;
    height: 509px;
    border-right: 1px solid #525252;
    position: relative;
    background: #181818;
}

.v2-footer-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
}

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

.v2-footer-nav-section {
    flex: 1;
    display: flex;
    gap: 16px;
    padding: 200px 100px;
    border-right: 1px solid #525252;
}

.v2-footer-nav-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-footer-nav-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    text-transform: uppercase;
    line-height: 13px;
}

.v2-footer-nav-link {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    color: white;
    text-decoration: none;
    line-height: 16px;
    transition: opacity 0.3s ease;
}

.v2-footer-nav-link:hover {
    opacity: 0.7;
}

.v2-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px 40px;
    border-left: 1px solid #525252;
    border-right: 1px solid #525252;
    border-top: 1px solid #525252;
    background: #181818;
}

.v2-footer-bottom-left {
    display: flex;
    gap: 8px;
    align-items: center;
}

.v2-footer-copyright,
.v2-footer-tagline {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    color: white;
    opacity: 0.5;
    padding: 8px;
}

.v2-footer-bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 0 20px;
}

.v2-footer-email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 31px;
    font-weight: 400;
    letter-spacing: -1.86px;
    color: white;
    text-decoration: none;
    line-height: 0.85;
    transition: opacity 0.3s ease;
}

.v2-footer-email:hover {
    opacity: 0.8;
}

.v2-footer-email svg {
    width: 24px;
    height: 34px;
}

.v2-footer-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    transition: opacity 0.3s ease;
}

.v2-footer-linkedin:hover {
    opacity: 0.8;
}

.v2-footer-linkedin svg {
    width: 36px;
    height: 36px;
}

/* V2 Footer Mobile Responsive Styles */
@media (max-width: 968px) {
    .v2-footer-main {
        flex-direction: column;
    }

    .v2-footer-logo-section {
        width: 100%;
        height: 300px;
        border-right: none;
        border-bottom: 1px solid #525252;
    }

    .v2-footer-nav-section {
        padding: 80px 40px;
        border-right: none;
    }

    .v2-footer-bottom {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        align-items: flex-start;
    }

    .v2-footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .v2-footer-bottom-right {
        padding: 0;
        width: 100%;
        justify-content: space-between;
    }

    .v2-footer-email {
        font-size: 24px;
        letter-spacing: -1.44px;
    }

    .v2-footer-email svg {
        width: 18px;
        height: 26px;
    }
}

@media (max-width: 768px) {
    .v2-footer-logo-section {
        height: 200px;
    }

    .v2-footer-logo-container {
        width: 80px;
        height: 80px;
    }

    .v2-footer-nav-section {
        flex-direction: column;
        padding: 60px 24px;
        gap: 32px;
    }

    .v2-footer-nav-column {
        gap: 12px;
    }

    .v2-footer-bottom {
        padding: 24px;
        gap: 32px;
        border-left: none;
        border-right: none;
    }

    .v2-footer-copyright,
    .v2-footer-tagline {
        font-size: 14px;
        letter-spacing: -0.84px;
        padding: 0;
    }

    .v2-footer-email {
        font-size: 20px;
        letter-spacing: -1.2px;
    }

    .v2-footer-email svg {
        width: 16px;
        height: 22px;
    }

    .v2-footer-linkedin {
        width: 32px;
        height: 32px;
    }

    .v2-footer-linkedin svg {
        width: 32px;
        height: 32px;
    }
}

/* Old footer styles - removed */

/* CTA Section */
.cta-section {
    background: linear-gradient(180deg, rgba(20, 20, 30, 1) 0%, var(--color-bg) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cta-marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: calc(var(--spacing-unit) * 8);
}

.cta-marquee-content {
    display: flex;
    gap: calc(var(--spacing-unit) * 12);
    animation: marqueeScroll 12s linear infinite;
    white-space: nowrap;
}

/* Slower marquee on mobile as per v2 spec (15-20s) */
@media (max-width: 768px) {
    .cta-marquee-content {
        animation-duration: 17s;
    }
}

.cta-marquee-item {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s var(--transition-timing);
    letter-spacing: -0.02em;
}

.cta-marquee-item:hover,
.cta-marquee-item:focus-visible {
    color: var(--color-accent);
    outline: none;
}

.cta-marquee-item:active {
    opacity: 0.7;
}

.footer-microcopy {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    opacity: 0;
    animation: fadeIn 1s var(--transition-timing) 0.5s forwards;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .two-column-layout {
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .sticky-column {
        top: calc(25vh + var(--spacing-unit) * 8);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-nav {
        display: flex;
    }

    .hero-tagline {
        top: calc(50px + var(--spacing-unit));
        padding: 0 var(--spacing-unit);
    }

    .hero-tagline p {
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .section {
        padding: calc(var(--spacing-unit) * 5) calc(var(--spacing-unit) * 3);
        min-height: 80vh;
    }
    
    .hero-section {
        justify-content: center;
        padding-left: calc(var(--spacing-unit) * 2);
        padding-right: calc(var(--spacing-unit) * 2);
        min-height: 80vh;
    }
    
    .hero-content {
        text-align: center;
        width: 100%;
    }
    
    .hero-svg {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    
    .about-section {
        padding-top: calc(var(--spacing-unit) * 6);
    }
    
    .hero-logotype {
        font-size: clamp(4rem, 16vw, 12rem);
        transform: translateX(0);
        white-space: nowrap;
    }
    
    .highlight-text {
        font-size: clamp(3rem, 10vw, 5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }
    
    .vision-content h3 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .focus-content h3 {
        font-size: clamp(2.5rem, 8vw, 4.5rem);
    }
    
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 3);
        margin: calc(var(--spacing-unit) * 5) 0;
    }
    
    .sticky-column {
        position: static;
    }
    
    .parallax-image-container {
        height: 50vh;
        margin: calc(var(--spacing-unit) * 4) 0;
    }
    
    .marquee-content {
        animation-duration: 18s;
    }
    
    .cta-marquee-content {
        animation-duration: 15s;
    }
    
    .overlay-menu-items {
        width: 90%;
    }
    
    .overlay-nav-item {
        font-size: 1.75rem;
    }
    
    /* Vision Section - Mobile: Stack top to bottom */
    .vision-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .vision-sticky {
        position: static; /* Remove sticky on mobile */
    }
    
    .vision-right {
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .vision-graphic {
        max-width: 100%;
    }
    
    /* Remove max-width constraints on mobile for full-width content */
    .hero-subtitle,
    .highlight-text,
    .about-content,
    .vision-content,
    .vision-content h3,
    .focus-content,
    .focus-content h3 {
        max-width: 100%;
        width: 100%;
    }
    
    /* Stack focus section vertically on mobile */
    .focus-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }
    
    .focus-content .column-left {
        position: static;
        padding-top: 0;
    }
    
    .focus-content .column-right {
        padding-top: 0;
    }
    
    .hero-subtitle-content,
    .about-hero-content,
    .vision-left,
    .vision-right {
        max-width: 100%;
    }

    /* Join the Ascent - Mobile */
    .join-ascent-content {
        grid-template-columns: 1fr;
        gap: calc(var(--spacing-unit) * 6);
    }

    .join-ascent-right {
        justify-content: center;
    }

    .join-ascent-form {
        max-width: 100%;
    }

    .join-ascent-title {
        text-align: center;
    }

    .join-ascent-subtitle {
        text-align: center;
    }

    /* Footer - Mobile */
    .footer-links {
        gap: calc(var(--spacing-unit) * 4);
    }

    .footer-link {
        font-size: 1.125rem;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* ========================================
   V2 Homepage Styles
   ======================================== */

/* V2 Hero Section */
.v2-hero-section {
    min-height: 100vh;
    padding: 120px 40px 80px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-bg);
}

.v2-hero-graphic {
    position: absolute;
    right: 8%;
    top: 55%;
    transform: translateY(-50%);
    width: 554px;
    height: 554px;
    object-fit: contain;
    z-index: 1;
}

.v2-hero-content {
    max-width: 785px;
    z-index: 2;
    position: relative;
}

.v2-hero-title {
    font-size: 95px;
    font-weight: 600;
    line-height: 0.85;
    margin-bottom: 40px;
    letter-spacing: -5.7px;
}

.v2-hero-title em {
    font-family: 'Calluna', serif;
    font-style: italic;
    font-weight: 400;
}

.v2-hero-subtitle {
    font-size: 25px;
    line-height: 1.0;
    color: #d9d9d9;
    margin-bottom: 60px;
    max-width: 745px;
    letter-spacing: -1.5px;
}

.v2-hero-actions {
    display: flex;
    gap: 24px;
    align-items: flex-end;
    justify-content: space-between;
}

/* V2 Button Styles */
.v2-accent-button {
    background: linear-gradient(135deg, #004d2e 0%, #008059 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    letter-spacing: -0.96px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.v2-accent-button:hover {
    background: linear-gradient(135deg, #005a36 0%, #009466 100%);
    transform: translateY(-1px);
}

/* Hero CTA with corners like nav */
.v2-hero-cta-wrapper {
    position: relative;
    display: inline-block;
}

.v2-hero-cta-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scale(-1, 1);
    opacity: 0.8;
    filter: invert(48%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(91%) contrast(101%);
    transition: opacity 0.3s ease, filter 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.v2-hero-cta-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    opacity: 0.8;
    filter: invert(48%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(91%) contrast(101%);
    transition: opacity 0.3s ease, filter 0.3s ease;
    pointer-events: none;
    z-index: 2;
}

.v2-hero-cta-wrapper:hover::before,
.v2-hero-cta-wrapper:hover::after {
    opacity: 1;
    filter: invert(58%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(101%) contrast(101%);
}

.v2-hero-cta {
    background: #181818;
    border: none;
    color: #008059;
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 1;
}

.v2-hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    opacity: 0.8;
    filter: invert(48%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(91%) contrast(101%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.v2-hero-cta::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: scaleY(-1);
    opacity: 0.8;
    filter: invert(48%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(91%) contrast(101%);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.v2-hero-cta:hover {
    background: #181818;
    color: #00a36d;
}

.v2-hero-cta:hover::before,
.v2-hero-cta:hover::after,
.v2-hero-cta-wrapper:hover .v2-hero-cta::before,
.v2-hero-cta-wrapper:hover .v2-hero-cta::after {
    opacity: 1;
    filter: invert(58%) sepia(79%) saturate(506%) hue-rotate(115deg) brightness(101%) contrast(101%);
}

.v2-text-link {
    color: #a3a3a3;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-main);
    letter-spacing: -0.96px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.v2-text-link:hover {
    color: var(--color-text);
}

.v2-text-button {
    background: none;
    border: none;
    color: var(--color-text);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-main);
    transition: color 0.3s ease;
}

.v2-text-button:hover {
    color: var(--color-text-muted);
}

.v2-primary-button {
    background: #ffffff;
    border: none;
    color: #1c1c1c;
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    margin: 8px;
}

/* Button corner decorations */
.v2-primary-button::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    top: -6px;
    left: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    opacity: 0.5;
}

.v2-primary-button::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    top: -6px;
    right: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    opacity: 0.5;
}

/* Bottom corners using a wrapper approach via box-shadow hack */
.v2-primary-button {
    box-shadow: 
        -6px calc(100% + 6px) 0 -6px transparent,
        calc(100% + 6px) calc(100% + 6px) 0 -6px transparent;
}

.v2-audience-card {
    position: relative;
}

.v2-audience-card .v2-primary-button::after {
    box-shadow: none;
}

/* Create pseudo-elements for bottom corners on parent */
.v2-audience-card:has(.v2-primary-button)::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: 2px;
    left: 2px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg) scaleY(-1);
    opacity: 0.5;
    pointer-events: none;
}

.v2-audience-card:has(.v2-primary-button)::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: 2px;
    right: 2px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    opacity: 0.5;
    pointer-events: none;
}

.v2-primary-button .chevron {
    width: 8px;
    height: 8px;
    background-image: url('assets/button-chevron.svg');
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.v2-primary-button:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
}

.v2-primary-button:hover::before,
.v2-primary-button:hover::after {
    opacity: 0.8;
}

.v2-audience-card:has(.v2-primary-button:hover)::before,
.v2-audience-card:has(.v2-primary-button:hover)::after {
    opacity: 0.8;
}

/* V2 Section Styles */
.v2-section-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.v2-section-content {
    margin-top: 150px;
}

.v2-section-title {
    font-size: 39px;
    font-weight: 500;
    line-height: 1.0;
    margin-bottom: 24px;
    letter-spacing: -2.34px;
    max-width: 700px;
}

.v2-section-subtitle {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
    margin-bottom: 48px;
    max-width: 507px;
}

/* V2 Problem Section */
.v2-problem-section {
    padding: 40px 80px;
    background-color: #ccdbd5;
}

.v2-problem-section .v2-section-label {
    color: #181818;
}

.v2-problem-section .v2-section-title {
    color: #181818;
    letter-spacing: -2.34px;
    margin-bottom: 60px;
}

.v2-problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 0;
}

.v2-problem-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.0;
    letter-spacing: -1.2px;
    color: #181818;
}

.v2-problem-card p {
    font-size: 16px;
    line-height: 1.0;
    letter-spacing: -0.96px;
    color: #373737;
}

/* V2 Solution Section */
.v2-solution-section {
    padding: 100px 80px 80px;
    background-color: var(--color-bg);
    position: relative;
}

.v2-solution-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background-color: #ccdbd5;
}

.v2-solution-section .v2-section-title {
    letter-spacing: -2.34px;
    margin-bottom: 60px;
}

.v2-solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-top: 0;
    margin-bottom: 40px;
}

.v2-solution-card h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.0;
    letter-spacing: -1.2px;
}

.v2-solution-card p {
    font-size: 16px;
    line-height: 1.0;
    letter-spacing: -0.96px;
    color: rgba(255, 255, 255, 0.8);
}

.v2-solution-graphic {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 60px;
    display: block;
}

/* V2 How It Works Section */
.v2-how-section {
    padding: 100px 80px 40px;
    background: linear-gradient(90deg, #ccdbd5 0%, #ccdbd5 100%);
}

.v2-how-section .v2-section-label {
    color: #1e1e1e;
}

.v2-how-section .v2-section-title {
    color: #1e1e1e;
    letter-spacing: -2.34px;
    margin-bottom: 20px;
}

.v2-how-section .v2-section-subtitle {
    color: rgba(30, 30, 30, 0.8);
    letter-spacing: -0.96px;
    margin-bottom: 60px;
}

.v2-how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    margin-top: 0;
    margin-bottom: 40px;
}

.v2-how-step h3 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.0;
    letter-spacing: -1.2px;
    color: #1e1e1e;
}

.v2-how-step p {
    font-size: 16px;
    line-height: 1.0;
    letter-spacing: -0.96px;
    color: rgba(30, 30, 30, 0.8);
}

.v2-how-diagram {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 40px;
    display: block;
}

/* V2 Audiences Section */
.v2-audiences-section {
    padding: 100px 80px;
    background-color: #ffffff;
}

.v2-audiences-section .v2-section-label {
    color: #1e1e1e;
}

.v2-audiences-section .v2-section-title {
    color: #1e1e1e;
}

.v2-audiences-section .v2-section-subtitle {
    color: rgba(30, 30, 30, 0.8);
}

.v2-audiences-grid {
    display: grid;
    grid-template-columns: repeat(4, 260px);
    gap: 80px;
    margin-top: 107px;
}

.v2-audience-card {
    display: flex;
    flex-direction: column;
}

.v2-audience-image {
    width: 260px;
    height: 200px;
    margin-bottom: 16px;
}

.v2-audience-card h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -1.2px;
    color: #1e1e1e;
    margin-bottom: 16px;
}

.v2-audience-card p {
    font-size: 16px;
    line-height: 1.0;
    letter-spacing: -0.96px;
    color: rgba(30, 30, 30, 0.8);
    margin-bottom: 16px;
    flex-grow: 1;
}

/* V2 Approach Section */
.v2-approach-section {
    padding: 100px 80px;
    background-color: #ccdbd5;
}

.v2-approach-section .v2-section-label {
    color: #1e1e1e;
}

.v2-approach-section .v2-section-title {
    color: #1e1e1e;
}

.v2-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    margin-top: 99px;
}

.v2-approach-card {
    display: flex;
    flex-direction: column;
    background-color: rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 8px;
    position: relative;
}

/* Approach Card Corner Brackets */
.v2-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    transform: rotate(180deg);
    opacity: 1;
}

.v2-approach-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 14px;
    background: url('assets/button-corner.svg') no-repeat center;
    background-size: contain;
    opacity: 1;
}

.v2-approach-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
}

.v2-approach-icon-image {
    width: 100%;
    height: 100%;
    display: block;
}

.v2-approach-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1e1e1e;
}

.v2-approach-card p {
    font-size: 16px;
    line-height: 1.5;
    color: #1e1e1e;
}

/* V2 Principles Section */
.v2-principles-section {
    padding: 100px 80px;
    background-color: var(--color-bg);
}

.v2-principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 99px;
}

.v2-principle-card {
    display: flex;
    flex-direction: column;
}

.v2-principle-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.v2-principle-icon-image {
    width: 100%;
    height: 100%;
    display: block;
}

.v2-principle-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.v2-principle-card p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--color-text);
}

/* V2 Insights Section */
.v2-insights-section {
    padding: 100px 80px;
    background-color: var(--color-bg);
}

.v2-insights-grid {
    display: grid;
    grid-template-columns: 600px 600px;
    gap: 80px;
    margin-top: 91px;
}

.v2-insight-card-large,
.v2-insight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.v2-insight-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.v2-insight-image-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.v2-insight-card-large h3,
.v2-insight-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.v2-insight-author {
    font-size: 16px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

/* Insight button styling - simpler approach with just top corners */
.v2-insight-card-large,
.v2-insight-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.v2-insight-button {
    background: transparent;
    border: none;
    color: var(--color-text);
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.96px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    margin: 0;
}

/* Override primary button styles for insights */
.v2-insight-button.v2-primary-button {
    background: transparent;
    border: none;
    color: var(--color-text);
    margin: 0;
}

.v2-insight-button.v2-primary-button:hover {
    background: transparent;
}

/* Top corner decorations on button */
.v2-insight-button.v2-primary-button::before {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.v2-insight-button.v2-primary-button::after {
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.v2-insight-button.v2-primary-button:hover::before,
.v2-insight-button.v2-primary-button:hover::after {
    opacity: 0.8;
}

/* Button wrapper for corner positioning */
.v2-button-wrapper {
    position: relative;
    display: inline-block;
}

/* Bottom corner decorations on button wrapper */
.v2-button-wrapper::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: -6px;
    left: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg) scaleY(-1);
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.v2-button-wrapper::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: -6px;
    right: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.v2-button-wrapper:has(.v2-insight-button:hover)::before,
.v2-button-wrapper:has(.v2-insight-button:hover)::after {
    opacity: 0.8;
}

/* Remove old parent corner decorations */
.v2-insight-card-large:has(.v2-insight-button)::before,
.v2-insight-card:has(.v2-insight-button)::before,
.v2-insight-card-large:has(.v2-insight-button)::after,
.v2-insight-card:has(.v2-insight-button)::after {
    display: none;
}

/* V2 Final CTA Section */
.v2-final-cta-section {
    padding: 150px 80px;
    text-align: center;
    position: relative;
    background: linear-gradient(180deg, #004d2e 0%, #008059 100%);
    overflow: hidden;
}

.v2-final-cta-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transform: rotate(45deg);
    pointer-events: none;
}

.v2-final-cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 800px;
    height: 800px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
    transform: rotate(45deg);
    pointer-events: none;
}

.v2-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.v2-cta-content h2 {
    font-size: 39px;
    font-weight: 500;
    line-height: 39px;
    letter-spacing: -2.34px;
    color: white;
    margin: 0;
}

.v2-cta-content p {
    font-size: 20px;
    line-height: 20px;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 500px;
}

/* CTA Button with corner decorations */
.v2-cta-button-wrapper {
    position: relative;
    display: inline-block;
}

.v2-cta-accent-button {
    position: relative;
    background: transparent;
    color: white;
}

.v2-cta-accent-button:hover {
    background: transparent;
}

/* Top corners on button */
.v2-cta-accent-button::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    top: -6px;
    left: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
    opacity: 0.5;
}

.v2-cta-accent-button::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    top: -6px;
    right: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleY(-1);
    opacity: 0.5;
}

/* Bottom corners on wrapper */
.v2-cta-button-wrapper::before {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: -6px;
    left: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg) scaleY(-1);
    opacity: 0.5;
    pointer-events: none;
}

.v2-cta-button-wrapper::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 14px;
    bottom: -6px;
    right: -6px;
    background-image: url('assets/button-corner.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: none;
    opacity: 0.5;
    pointer-events: none;
}

/* Hover state for corner decorations */
.v2-cta-accent-button:hover::before,
.v2-cta-accent-button:hover::after {
    opacity: 0.8;
}

.v2-cta-button-wrapper:has(.v2-cta-accent-button:hover)::before,
.v2-cta-button-wrapper:has(.v2-cta-accent-button:hover)::after {
    opacity: 0.8;
}

/* Responsive Styles for V2 */
@media (max-width: 1200px) {
    .v2-hero-title {
        font-size: 70px;
        letter-spacing: -4.2px;
    }
    
    .v2-hero-subtitle {
        font-size: 20px;
        letter-spacing: -1.2px;
    }
    
    .v2-solution-section {
        padding: 100px 80px;
    }
    
    .v2-how-section {
        padding: 100px 80px;
    }
    
    .v2-solution-grid,
    .v2-how-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v2-audiences-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .v2-insights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .v2-hero-section {
        padding: 100px 20px 60px;
    }
    
    .v2-hero-title {
        font-size: 50px;
        letter-spacing: -3px;
        line-height: 1.0;
    }
    
    .v2-hero-subtitle {
        font-size: 18px;
        letter-spacing: -1px;
    }
    
    .v2-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .v2-problem-section,
    .v2-solution-section,
    .v2-how-section,
    .v2-audiences-section,
    .v2-approach-section,
    .v2-principles-section,
    .v2-insights-section,
    .v2-final-cta-section {
        padding: 60px 20px;
    }
    
    .v2-problem-grid,
    .v2-solution-grid,
    .v2-how-grid,
    .v2-audiences-grid,
    .v2-approach-grid,
    .v2-principles-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .v2-section-title {
        font-size: 31px;
    }
    
    .v2-solution-section::before {
        width: 0;
    }
    
    .v2-hero-graphic {
        display: none;
    }
    
    .v2-solution-graphic,
    .v2-how-diagram {
        margin-top: 30px;
    }
}

/* Contact Page Styles */
.contact-hero {
    padding: 160px 80px 80px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    text-align: center;
}

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

.contact-hero-title {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -2.34px;
    margin-bottom: 24px;
    color: white;
}

.contact-hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.96px;
}

.contact-form-section {
    padding: 120px 80px;
    background: white;
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-group label {
    font-size: 16px;
    font-weight: 500;
    color: #1e1e1e;
    letter-spacing: -0.64px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    font-family: 'Instrument Sans', sans-serif;
    font-size: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
    letter-spacing: -0.64px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #004d2e;
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%231e1e1e' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

/* Insights Page Styles */
.insights-hero {
    padding: 160px 80px 80px;
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    text-align: center;
}

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

.insights-hero-title {
    font-size: 72px;
    font-weight: 600;
    letter-spacing: -2.34px;
    margin-bottom: 24px;
    color: white;
}

.insights-hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -0.96px;
}

.insights-grid-section {
    padding: 120px 80px;
    background: white;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.insight-card:hover {
    border-color: #004d2e;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 77, 46, 0.12);
}

.insight-card-date {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.insight-card-title {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.2px;
    color: #1e1e1e;
    line-height: 1.3;
}

.insight-card-excerpt {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    letter-spacing: -0.64px;
    flex-grow: 1;
}

.insight-card-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #ccdbd5;
    color: #1e1e1e;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    letter-spacing: -0.56px;
    align-self: flex-start;
}

/* Responsive styles for contact and insights pages */
@media (max-width: 768px) {
    .contact-hero,
    .insights-hero {
        padding: 120px 24px 60px;
    }
    
    .contact-hero-title,
    .insights-hero-title {
        font-size: 48px;
        letter-spacing: -1.8px;
    }
    
    .contact-hero-subtitle,
    .insights-hero-subtitle {
        font-size: 18px;
    }
    
    .contact-form-section,
    .insights-grid-section {
        padding: 80px 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .insight-card {
        padding: 24px;
    }
    
    .insight-card-title {
        font-size: 24px;
    }
}

/* Insights Page V2 Styles */
.v2-insights-page {
    padding: 120px 80px;
}

.v2-insights-grid-expanded {
    display: grid;
    grid-template-columns: 600px 600px;
    gap: 80px;
    margin-top: 91px;
}

.v2-insights-grid-expanded .v2-insight-card-large,
.v2-insights-grid-expanded .v2-insight-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.v2-insights-grid-expanded .v2-insight-card-large:hover,
.v2-insights-grid-expanded .v2-insight-card:hover {
    transform: translateY(-4px);
}

/* Blog Post Styles */
.blog-post {
    background: #181818;
    min-height: 100vh;
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 60px;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: -0.96px;
    margin-bottom: 40px;
    transition: opacity 0.3s ease;
}

.blog-post-back:hover {
    opacity: 0.7;
}

.blog-post-back svg {
    width: 20px;
    height: 20px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.blog-post-date,
.blog-post-reading-time {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: -0.84px;
}

.blog-post-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -3.84px;
    color: white;
    margin-bottom: 24px;
}

.blog-post-author {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: -1.2px;
    margin-bottom: 40px;
}

.blog-post-featured-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 60px;
}

.blog-post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 120px;
    color: white;
}

.blog-post-intro {
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: -1.44px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    font-weight: 500;
}

.blog-post-content h2 {
    font-size: 39px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -2.34px;
    color: white;
    margin-top: 60px;
    margin-bottom: 24px;
}

.blog-post-content p {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.blog-post-content h3 {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -1.68px;
    color: white;
    margin-top: 48px;
    margin-bottom: 20px;
}

.blog-post-content ul {
    margin: 24px 0;
    padding-left: 24px;
}

.blog-post-content li {
    font-size: 20px;
    line-height: 1.6;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 12px;
}

.blog-post-cta {
    background: linear-gradient(135deg, #004d2e 0%, #008059 100%);
    border-radius: 12px;
    padding: 60px 48px;
    text-align: center;
    margin-top: 80px;
}

.blog-post-cta h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1.92px;
    color: white;
    margin-top: 0;
    margin-bottom: 16px;
}

.blog-post-cta p {
    font-size: 20px;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.blog-post-cta button {
    margin: 0 auto;
}

/* Blog Post Responsive */
@media (max-width: 1200px) {
    .v2-insights-grid-expanded {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 968px) {
    .v2-insights-page {
        padding: 80px 40px;
    }
    
    .blog-post-title {
        font-size: 42px;
        letter-spacing: -2.52px;
    }
    
    .blog-post-featured-image {
        height: 300px;
    }
    
    .blog-post-content h2 {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
}

@media (max-width: 768px) {
    .blog-post-header,
    .blog-post-content {
        padding-left: 24px;
        padding-right: 24px;
    }
    
    .blog-post-title {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
    
    .blog-post-intro {
        font-size: 20px;
        letter-spacing: -1.2px;
    }
    
    .blog-post-content h2 {
        font-size: 28px;
        letter-spacing: -1.68px;
    }
    
    .blog-post-content p {
        font-size: 18px;
        letter-spacing: -1.08px;
    }
    
    .blog-post-cta {
        padding: 40px 24px;
    }
}

/* 404 Error Page Styles */
.error-404-section {
    background: #181818;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px;
}

.error-404-content {
    text-align: center;
    max-width: 600px;
}

.error-404-title {
    font-size: 120px;
    font-weight: 700;
    letter-spacing: -7.2px;
    color: white;
    margin-bottom: 24px;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 48px;
    font-weight: 600;
    letter-spacing: -2.88px;
    color: white;
    margin-bottom: 16px;
}

.error-404-text {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .error-404-title {
        font-size: 80px;
        letter-spacing: -4.8px;
    }
    
    .error-404-subtitle {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
}

/* Company Page V2 Styles */
.company-hero-v2 {
    background: #181818;
    padding: 150px 120px 80px;
    border-bottom: 1px solid #525252;
    text-align: center;
}

.company-hero-v2-title {
    font-size: 95px;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -5.7px;
    color: white;
    max-width: 920px;
    margin: 0 auto;
}

.company-mission-v2 {
    background: #181818;
    padding: 100px 120px;
    border-bottom: 1px solid #525252;
    position: relative;
    overflow: hidden;
}

.company-mission-v2-bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.geo-shape-fill {
    transition: fill 0.8s ease;
}

.company-mission-v2-bg-lines.filled .geo-shape-fill {
    fill: rgba(255, 255, 255, 0.03);
}

.company-mission-v2-text {
    font-size: 39px;
    line-height: 1.2;
    letter-spacing: -2.34px;
    color: white;
    max-width: 434px;
    position: relative;
    z-index: 2;
}

.company-beliefs-v2 {
    background: #181818;
    padding: 100px 120px;
    border-top: 1px solid #525252;
    border-bottom: 1px solid #525252;
    overflow: hidden;
    position: relative;
}

.company-beliefs-v2-bg-lines-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(270deg);
    width: 1525px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    --fill-0: #1c1c1c;
    --stroke-0: #525252;
}

.company-beliefs-v2-bg-lines-2 {
    position: absolute;
    right: -200px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg);
    width: 1525px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    --fill-0: #1c1c1c;
    --stroke-0: #525252;
}

.company-beliefs-v2-bg-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
}

.company-beliefs-v2-bg-lines.filled .geo-shape-fill {
    fill: rgba(255, 255, 255, 0.03);
}

.company-beliefs-v2-wrapper {
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.company-belief-v2-text {
    font-size: 61px;
    line-height: 0.85;
    letter-spacing: -3.66px;
    color: white;
    text-align: center;
}

.company-belief-v2-text em {
    font-family: 'Calluna', serif;
    font-style: italic;
}

.company-team-v2 {
    background: #181818;
    padding: 200px 120px;
    border-bottom: 1px solid #525252;
}

.company-team-v2-wrapper {
    max-width: 1360px;
    margin: 0 auto;
}

.company-team-v2-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    margin-bottom: 40px;
}

.company-team-v2-title {
    font-size: 49px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -2.94px;
    color: white;
}

.company-team-v2-subtitle {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -1.2px;
    color: white;
}

.company-team-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.company-founder-v2-card {
    background: #1c1c1c;
    border-radius: 7px;
    padding: 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.company-founder-v2-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.company-founder-v2-card:hover .company-founder-v2-image {
    filter: grayscale(0%);
}

.company-founder-v2-linkedin {
    position: absolute;
    top: 40px;
    right: 40px;
}

.company-founder-v2-linkedin a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 7px;
    transition: background 0.3s ease;
}

.company-founder-v2-linkedin a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.company-founder-v2-linkedin svg {
    width: 24px;
    height: 24px;
}

.company-founder-v2-name {
    font-size: 39px;
    line-height: 1.2;
    letter-spacing: -2.34px;
    color: white;
    font-weight: 400;
}

.company-founder-v2-title {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -1.2px;
    color: white;
}

.company-cta-v2 {
    background: linear-gradient(180deg, #004d2e 0%, #008059 100%);
    padding: 150px 80px;
    position: relative;
    overflow: hidden;
}

.company-cta-v2-bg-lines-1 {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(270deg) scaleY(-1);
    width: 1525px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    --fill-0: rgba(255, 255, 255, 0.05);
    --stroke-0: rgba(255, 255, 255, 0.3);
}

.company-cta-v2-bg-lines-2 {
    position: absolute;
    right: -300px;
    bottom: -200px;
    transform: rotate(90deg) scaleY(-1);
    width: 1525px;
    height: auto;
    opacity: 1;
    pointer-events: none;
    --fill-0: rgba(255, 255, 255, 0.05);
    --stroke-0: rgba(255, 255, 255, 0.3);
}

.company-cta-v2-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.company-cta-v2-title {
    font-size: 39px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -2.34px;
    color: white;
}

.company-cta-v2-subtitle {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -1.2px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
}

.company-cta-v2-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: transparent;
    border: 1px solid white;
    border-radius: 7px;
    font-size: 16px;
    letter-spacing: -0.96px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.company-cta-v2-button:hover {
    background: white;
    color: #004d2e;
}

/* Fade-in on scroll animation */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.6s ease, transform 1.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles for company page V2 */
@media (max-width: 968px) {
    .company-hero-v2 {
        padding: 100px 40px 50px;
    }
    
    .company-hero-v2-title {
        font-size: 56px;
        letter-spacing: -3.36px;
    }
    
    .company-mission-v2,
    .company-beliefs-v2,
    .company-team-v2 {
        padding: 80px 40px;
    }
    
    .company-mission-v2-text {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
    
    .company-belief-v2-text {
        font-size: 39px;
        letter-spacing: -2.34px;
    }
    
    .company-team-v2 {
        padding: 120px 40px;
    }
    
    .company-team-v2-title {
        font-size: 39px;
        letter-spacing: -2.34px;
    }
    
    .company-team-v2-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .company-founder-v2-card {
        padding: 24px;
    }
    
    .company-founder-v2-name {
        font-size: 28px;
        letter-spacing: -1.68px;
    }
    
    .company-cta-v2 {
        padding: 100px 40px;
    }
    
    .company-cta-v2-title {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
}

@media (max-width: 768px) {
    .company-hero-v2-title {
        font-size: 42px;
        letter-spacing: -2.52px;
    }
    
    .company-mission-v2-text {
        font-size: 24px;
        letter-spacing: -1.44px;
    }
    
    .company-belief-v2-text {
        font-size: 32px;
        letter-spacing: -1.92px;
    }
    
    .company-team-v2-grid {
        grid-template-columns: 1fr;
    }
    
    .company-founder-v2-name {
        font-size: 24px;
        letter-spacing: -1.44px;
    }
    
    .company-founder-v2-title {
        font-size: 16px;
        letter-spacing: -0.96px;
    }
}

/* OLD Company Page Styles - Can be removed */

@media (max-width: 968px) {
    .company-hero-content {
        padding: 160px 60px 100px;
    }
    
    .company-hero-subtitle {
        font-size: 18px;
        letter-spacing: -0.72px;
    }
    
    .company-hero-title {
        font-size: 72px;
        letter-spacing: -4.32px;
        margin-bottom: 40px;
    }
    
    .company-hero-tagline {
        font-size: 36px;
        letter-spacing: -2.16px;
    }
    
    .company-content-wrapper,
    .company-empowers-wrapper {
        grid-template-columns: 1fr;
        padding: 0 40px;
        gap: 40px;
    }
    
    .company-main-text,
    .company-secondary-text,
    .company-empowers-heading {
        font-size: 24px;
        letter-spacing: -1.2px;
    }
    
    .company-diff-title {
        font-size: 20px;
        letter-spacing: -1px;
    }
    
    .company-diff-text,
    .company-empowers-item {
        font-size: 18px;
        letter-spacing: -0.9px;
    }
    
    .company-differentiators-wrapper {
        margin: 0 auto;
        padding: 20px 40px;
    }
    
    .company-newsletter-wrapper {
        flex-direction: column;
        padding: 0 40px;
        gap: 60px;
    }
    
    .company-newsletter-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .company-hero-content {
        padding: 140px 24px 80px;
    }
    
    .company-hero-subtitle {
        font-size: 16px;
        letter-spacing: -0.64px;
    }
    
    .company-hero-title {
        font-size: 56px;
        letter-spacing: -3.36px;
    }
    
    .company-hero-tagline {
        font-size: 28px;
        letter-spacing: -1.68px;
    }
    
    .company-content-section,
    .company-differentiators-section,
    .company-empowers-section {
        padding: 80px 0;
    }
    
    .company-content-wrapper,
    .company-empowers-wrapper,
    .company-differentiators-wrapper {
        padding: 0 24px;
    }
    
    .company-main-text,
    .company-secondary-text,
    .company-empowers-heading {
        font-size: 20px;
        letter-spacing: -1px;
    }
    
    .company-diff-title {
        font-size: 18px;
        letter-spacing: -0.9px;
    }
    
    .company-diff-text,
    .company-empowers-item {
        font-size: 16px;
        letter-spacing: -0.8px;
    }
    
    .company-newsletter-section {
        padding: 120px 0 100px;
    }
    
    .company-newsletter-wrapper {
        padding: 0 24px;
    }
    
    .company-newsletter-title {
        font-size: 36px;
        letter-spacing: -1.8px;
    }
    
    .company-newsletter-subtitle {
        font-size: 18px;
        letter-spacing: -0.9px;
    }
    
    .company-peaks-graphic {
        width: 400px;
        height: 230px;
        top: -40px;
        left: -50px;
    }
}

/* Contact V2 Styles */
.contact-v2-section {
    background: #181818;
    padding: 140px 120px 100px;
    min-height: 100vh;
    border-left: 1px solid #525252;
    border-right: 1px solid #525252;
}

.contact-v2-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 66px 60px;
}

.contact-v2-title {
    font-size: 49px;
    font-weight: 400;
    line-height: 0.85;
    letter-spacing: -2.94px;
    color: white;
    margin: 0 0 82px 0;
}

.contact-v2-form {
    max-width: 785px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 200px;
    transition: opacity 0.3s ease;
}

.contact-v2-form.hidden {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.contact-v2-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.contact-v2-full {
    display: flex;
}

.contact-v2-form input {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: -0.96px;
    height: 36px;
}

.contact-v2-form input::placeholder {
    color: white;
    opacity: 1;
}

.contact-v2-form input:focus {
    outline: none;
    border-color: white;
}

.contact-v2-full input {
    width: 100%;
}

.contact-v2-privacy {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.96px;
    color: #d9d9d9;
    margin: 24px 0 0 0;
}

.contact-v2-submit {
    background: #181818;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: -0.96px;
    border-radius: 7px;
    cursor: pointer;
    width: fit-content;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.contact-v2-submit:hover {
    background: white;
    color: #181818;
}

.contact-v2-email {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 31px;
    line-height: 0.85;
    letter-spacing: -1.86px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-v2-email:hover {
    opacity: 0.8;
}

.contact-v2-email svg {
    width: 24px;
    height: 34px;
}

.contact-v2-newsletter {
    background: linear-gradient(180deg, #004d2e 0%, #008059 100%);
    padding: 80px 40px;
}

.contact-v2-newsletter-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-v2-newsletter-title {
    font-size: 39px;
    font-weight: 500;
    line-height: 39px;
    letter-spacing: -2.34px;
    color: white;
    margin: 0;
}

.contact-v2-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 555px;
    max-width: 100%;
}

.contact-v2-newsletter-input-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-v2-newsletter-form input {
    flex: 1;
    background: #004d2e;
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: -0.96px;
    height: 36px;
}

.contact-v2-newsletter-form input::placeholder {
    color: white;
    opacity: 1;
}

.contact-v2-newsletter-form input:focus {
    outline: none;
    border-color: white;
}

.contact-v2-newsletter-form button {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 16px;
    font-size: 16px;
    font-family: 'Instrument Sans', sans-serif;
    letter-spacing: -0.96px;
    border-radius: 7px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-v2-newsletter-form button:hover {
    background: white;
    color: #004d2e;
}

.contact-v2-newsletter-privacy {
    font-size: 16px;
    line-height: 16px;
    letter-spacing: -0.96px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

@media (max-width: 768px) {
    .contact-v2-section {
        padding: 100px 24px 60px;
    }
    .contact-v2-container {
        padding: 40px 20px;
    }
    .contact-v2-title {
        font-size: 39px;
        margin-bottom: 40px;
    }
    .contact-v2-form {
        margin-bottom: 80px;
    }
    .contact-v2-row {
        grid-template-columns: 1fr;
    }
    .contact-v2-newsletter-container {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-v2-newsletter-form {
        width: 100%;
    }
    .contact-v2-newsletter-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .contact-v2-newsletter-form button {
        width: 100%;
    }
}

/* Contact Form Success Message */
.contact-v2-success {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    letter-spacing: -1.2px;
    color: #008059;
    margin-top: 0;
    margin-bottom: 200px;
    animation: fadeIn 0.5s ease;
    max-width: 785px;
}

.contact-v2-newsletter-success {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    letter-spacing: -0.96px;
    color: white;
    margin-top: 0;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button loading states */
.button-loading {
    opacity: 0.7;
}

.contact-v2-submit:disabled,
.contact-v2-newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Contact Form Error Message */
.contact-v2-error {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    letter-spacing: -1.08px;
    color: #ff4444;
    margin-top: 24px;
    padding: 16px;
    background: rgba(255, 68, 68, 0.1);
    border: 1px solid rgba(255, 68, 68, 0.3);
    border-radius: 7px;
    animation: fadeIn 0.5s ease;
}

.contact-v2-newsletter-error {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    letter-spacing: -0.9px;
    color: white;
    margin-top: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 7px;
    animation: fadeIn 0.5s ease;
}

.error-message {
    flex: 1;
}

/* ===================================
   AUDIENCE PAGES (V2)
   ================================= */

/* Hero Section */
.audience-hero-section {
    background: white;
    padding: 0;
    border-bottom: 1px solid #525252;
    display: flex;
    min-height: 600px;
    position: relative;
    margin-top: 60px;
    border-right: 1px solid #525252;
}

.audience-hero-content {
    width: 100%;
    display: flex;
    align-items: center;
}

.audience-hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 150px 140px 100px 80px;
    align-items: flex-start;
}

.audience-hero-text .v2-section-title {
    color: #1e1e1e;
}

.audience-hero-text .v2-section-subtitle {
    color: rgba(30, 30, 30, 0.8);
}

.audience-hero-visual {
    flex: 1;
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.audience-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Problem Section (Dark) */
.audience-problem-section {
    background: #181818;
    padding: 100px 140px;
    border-left: 40px solid #181818;
    border-right: 1px solid #525252;
    border-bottom: 1px solid #525252;
}

.audience-problem-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.audience-problem-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audience-problem-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.audience-problem-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-problem-text .v2-body-title {
    color: white;
}

.audience-problem-text .v2-body-copy {
    color: rgba(255,255,255,0.8);
}

/* Solution Section (White) */
.audience-solution-section {
    background: white;
    padding: 100px 80px 40px 80px;
    border-left: 40px solid #181818;
    border-right: 1px solid #525252;
    border-bottom: 1px solid #525252;
}

.audience-solution-content {
    max-width: 1200px;
    margin: 0 auto;
}

.audience-solution-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.audience-solution-title {
    font-size: 39px;
    font-weight: 500;
    line-height: 1.0;
    letter-spacing: -2.34px;
    color: #1e1e1e;
    max-width: 700px;
}

.audience-solution-subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -0.96px;
    color: rgba(30, 30, 30, 0.8);
    max-width: 700px;
}

.audience-features-list {
    display: flex;
    flex-direction: row;
    gap: 80px;
    align-items: flex-start;
}

.audience-feature-item {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.0;
    letter-spacing: -1.2px;
    color: #1e1e1e;
    width: 220px;
    flex-shrink: 0;
}

/* Process Section (Dark) */
.audience-process-section {
    background: #181818;
    padding: 100px 140px;
    border-left: 40px solid #181818;
    border-right: 1px solid #525252;
    border-bottom: 1px solid #525252;
}

.audience-process-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.audience-process-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.audience-process-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.audience-process-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.audience-process-text .v2-body-title {
    color: white;
    margin-bottom: 20px;
}

.audience-process-text .v2-body-copy {
    color: rgba(255,255,255,0.8);
}

/* Stats Section (Light Green) */
.audience-stats-section {
    background: linear-gradient(90deg, #ccdbd5 0%, #ccdbd5 100%);
    padding: 100px 140px;
}

.audience-stats-content {
    max-width: 1440px;
    margin: 0 auto;
}

.audience-stats-content .v2-body-title {
    color: #1e1e1e;
}

.audience-stats-content .v2-small-copy {
    color: #1e1e1e;
}

.audience-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.audience-stat-card {
    background: rgba(24,24,24,0.03);
    border-radius: 7px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.stat-icon-placeholder {
    width: 50px;
    height: 50px;
    background: rgba(24,24,24,0.1);
    border-radius: 4px;
}

.audience-stat-card h3 {
    margin: 0;
    color: #1e1e1e;
}

.audience-stat-card p {
    margin: 0;
    color: #1e1e1e;
}

/* CTA Section (Green Gradient) */
.audience-cta-section {
    background: linear-gradient(180deg, #004d2e 0%, #008059 100%);
    padding: 150px 140px;
    position: relative;
    overflow: hidden;
}

.audience-cta-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .audience-hero-section,
    .audience-problem-section,
    .audience-solution-section,
    .audience-process-section,
    .audience-stats-section,
    .audience-cta-section {
        padding: 60px 40px;
    }

    .audience-hero-section {
        margin-top: 60px;
        min-height: auto;
        border-left: 0;
    }

    .audience-hero-content,
    .audience-problem-content,
    .audience-process-content {
        flex-direction: column;
        gap: 40px;
    }

    .audience-hero-text {
        padding: 40px;
        gap: 30px;
    }

    .audience-problem-section,
    .audience-process-section {
        border-left: 0;
    }

    .audience-solution-section {
        border-left: 0;
    }

    .audience-stats-grid {
        grid-template-columns: 1fr;
    }

    .audience-features-list {
        flex-direction: column;
        gap: 40px;
    }

    .audience-feature-item {
        width: 100%;
    }

    .audience-solution-title,
    .audience-solution-subtitle {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .audience-hero-section,
    .audience-problem-section,
    .audience-solution-section,
    .audience-process-section,
    .audience-stats-section,
    .audience-cta-section {
        padding: 40px 20px;
        border-left: 0;
    }

    .audience-hero-section {
        margin-top: 60px;
        min-height: auto;
    }

    .audience-hero-content {
        flex-direction: column-reverse;
    }

    .audience-hero-text {
        padding: 20px;
        gap: 20px;
    }

    .audience-hero-text .v2-section-title {
        font-size: 49px;
        letter-spacing: -2.94px;
    }

    .audience-hero-text .v2-section-subtitle {
        font-size: 16px;
        letter-spacing: -0.96px;
    }

    .audience-hero-visual {
        min-height: 300px;
    }

    .audience-problem-text,
    .audience-process-text {
        gap: 20px;
    }

    .audience-problem-text .v2-body-title,
    .audience-process-text .v2-body-title {
        font-size: 39px;
        letter-spacing: -2.34px;
    }

    .audience-solution-section {
        padding: 60px 20px 40px 20px;
    }

    .audience-solution-header {
        margin-bottom: 40px;
    }

    .audience-solution-title {
        font-size: 39px;
        letter-spacing: -2.34px;
    }

    .audience-stats-content .v2-body-title {
        font-size: 39px;
        letter-spacing: -2.34px;
    }

    .audience-stat-card {
        padding: 30px 20px;
    }

    .audience-cta-section {
        padding: 80px 20px;
    }

    .audience-cta-content .v2-body-title {
        font-size: 39px;
        letter-spacing: -2.34px;
    }

    .audience-cta-content .v2-body-copy {
        font-size: 16px;
    }

    /* Make CTA button full width on mobile */
    .nav-style-button-wrapper.light {
        width: 100%;
    }

    .nav-style-button-light {
        width: 100%;
        justify-content: center;
    }

    .v2-cta-button-wrapper {
        width: 100%;
    }

    .v2-cta-button-wrapper .v2-accent-button {
        width: 100%;
        justify-content: center;
    }
}
