:root {
    --gray-950-ink: #0a0a0a;
    --gray-900: #171717;
    --gray-800: #262626;
    --gray-600: #525252;
    --gray-500: #737373;
    --gray-400: #a3a3a3;
    --gray-200: #e5e5e5;
    --gray-50-ivory: #fafaf9;
    --primary: black;
    --primary-inverse: white;
    --secondary: #ffffff;
    --light-oxford: #f8f9fa;
    --muted: #9ca3af;
}


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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-950-ink);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles - Fixed for mobile */
header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: var(--gray-950-ink);
    transition: box-shadow 0.5s linear;
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header[data-scrolled="true"] {
    box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.55);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 1rem;
    width: 100%;
    height: 100%;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 1001;
}

.logo {
    font-family: serif;
    font-size: 1.125rem;
    font-weight: normal;
    color: var(--primary);
    text-decoration: none;
}

.nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.125rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    height: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

.nav-link svg {
    margin-left: 0.25rem;
    width: 1rem;
    height: 1rem;
    transition: transform 0.3s;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    z-index: 1001;
}

/* Dropdown Menus */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border-radius: 0.5rem;
    background: var(--gray-900);
    padding: 1rem;
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    height: 1rem;
    width: 100%;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1);
}

.dropdown-menu li {
    width: 100%;
    display: flex;
    justify-content: center;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.5rem 0.75rem;
    height: 2rem;
    font-size: 0.875rem;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    gap: 0.5rem;
}

.dropdown-menu a:hover {
    color: var(--secondary);
}

.dropdown-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.dropdown:hover .dropdown-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Flag icons for login */
.flag-icon {
    width: 1rem;
    height: 1rem;
}

/* Mobile menu - Fixed */
.mobile-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    height: 100vh;
    width: 100%;
    overflow-y: auto;
    background: var(--gray-950-ink);
    padding-top: 60px;
    display: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-content {
    display: flex;
    height: calc(100vh - 60px);
    flex-direction: column;
    justify-content: space-between;
    padding: 0 1rem;
    width: 100%;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding-top: 2rem;
    list-style: none;
}

.mobile-nav-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-800);
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 0;
}

.mobile-nav-link svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s;
}

.mobile-submenu {
    overflow: hidden;
    height: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-submenu.active {
    height: auto;
    visibility: visible;
    margin-top: 0.5rem;
}

.mobile-submenu ul {
    list-style: none;
    margin-top: 0.5rem;
}

.mobile-submenu li {
    display: flex;
    align-items: flex-start;
}

.mobile-submenu a {
    display: flex;
    width: 100%;
    max-width: none;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    background: transparent;
    color: var(--gray-400);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    padding-left: 1rem;
}

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

.mobile-menu-bottom {
    position: relative;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.mobile-menu-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.login-dropdown {
    display: none;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    background: var(--gray-50-ivory);
    color: var(--gray-950-ink);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

.cta-button:hover {
    background: var(--gray-200);
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
}

.mobile-menu-button svg {
    width: 24px;
    height: 24px;
}

/* Main Content */
main {
    padding-top: 60px;
    background: var(--gray-950-ink);
}

/* Hero Section - Mobile optimized */
.hero {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem 0;
    text-align: center;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.1;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: normal;
    color: var(--gray-400);
    max-width: 400px;
    text-wrap: balance;
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1.5rem;
    background: var(--gray-50-ivory);
    color: var(--gray-950-ink);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.hero-cta:hover {
    background: var(--gray-200);
}

/* Video Section - Mobile optimized */
.video-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1728px;
    margin-top: 2rem;
}

.video-grid {
    margin: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem;
    background: black;
}

.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    border-radius: 3rem;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    transition: all 0.5s ease;
    overflow: hidden;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.play-button-content {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding-left: 0.75rem;
    transition: transform 0.5s ease;
}

.play-button svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #d1d5db;
    transition: fill 0.3s;
}

.play-button:hover svg {
    fill: white;
}

.play-button-text {
    white-space: nowrap;
    color: white;
    font-weight: 500;
    font-size: 0.75rem;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Customer Logos Section - Mobile optimized */
.customers-section {
    overflow: hidden;
    padding: 3rem 0;
}

.customers-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
}

.customers-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
}

.logos-container {
    position: relative;
    display: flex;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.logos-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 10;
    height: 60px;
    width: 30vw;
    background: linear-gradient(to right, var(--gray-950-ink), transparent);
}

.logos-container::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    z-index: 10;
    height: 60px;
    width: 30vw;
    background: linear-gradient(to left, var(--gray-950-ink), transparent);
}

.logos-scroll {
    position: relative;
    max-width: 2000px;
    overflow: hidden;
}

.logos-track {
    display: flex;
    width: max-content;
    gap: 1rem;
    animation: scroll 60s linear infinite;
}

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

.logo-item {
    margin: 0 1rem;
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0.8);
}

.customers-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.customers-link:hover {
    color: var(--gray-50-ivory);
}

.customers-link svg {
    width: 0.75rem;
    height: 0.75rem;
    fill: currentColor;
}

/* Products Section - Mobile optimized */
.products-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

.products-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.products-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
    line-height: 1.2;
}

.products-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1728px;
}

.products-grid {
    margin: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.products-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    background: var(--gray-950-ink);
    border-radius: 0.5rem;
    overflow: hidden;
}

.product-image {
    position: relative;
    aspect-ratio: 16/10;
    width: 100%;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-content {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gray-900);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 2rem 1rem;
}

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

.product-label {
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
    color: var(--gray-400);
}

.product-title {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
    margin-bottom: 1rem;
}

.product-description {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.product-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: var(--gray-500);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-link:hover {
    color: var(--gray-50-ivory);
}

.product-link svg {
    width: 1rem;
    height: 1rem;
}

/* Case Studies Carousel - Mobile optimized */
.case-studies {
    margin: 0 auto;
    width: 100%;
    max-width: 1728px;
    padding: 0 1rem;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.carousel-slide {
    flex-shrink: 0;
    width: 100%;
    margin-right: 1rem;
}

.case-study-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: var(--gray-950-ink);
    border-radius: 0.5rem;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}

.case-study-image {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem 0.5rem 0 0;
    aspect-ratio: 16/9;
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.case-study-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gray-950-ink));
    transition: transform 0.6s ease;
}

.case-study-card:hover .case-study-overlay {
    transform: scale(1.05);
}

.case-study-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-height: 80px;
    object-fit: contain;
}

.case-study-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    z-index: 10;
    background: var(--gray-950-ink);
}

.case-study-quote {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--primary);
}

.case-study-author {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.case-study-author .name {
    font-weight: 500;
}

.case-study-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    padding: 0 1rem;
    background: var(--gray-50-ivory);
    color: var(--gray-950-ink);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    border-radius: 0.25rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    align-self: flex-start;
    margin-top: 1rem;
}

.case-study-button:hover {
    background: var(--gray-200);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.carousel-dot {
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
}

.carousel-dot svg {
    width: 0.75rem;
    height: 0.75rem;
    color: var(--muted);
}

.carousel-dot.active svg circle {
    fill: currentColor;
    stroke: currentColor;
}

.carousel-dot:not(.active) svg circle {
    fill: none;
    stroke: currentColor;
}

/* Benefits Section - Mobile optimized */
.benefits-section {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 3rem 0;
}

.benefits-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 0 1rem;
}

.benefits-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    max-width: 500px;
    text-wrap: balance;
}

.benefits-grid {
    margin: 0 auto;
    width: 100%;
    max-width: 1728px;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 300px;
    margin: 0 auto;
}

.benefit-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 0.125rem;
    object-fit: contain;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-title {
    font-size: 1rem;
    font-weight: 600;
}

.benefit-description {
    font-weight: 400;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Quote Section - Mobile optimized */
.quote-section {
    background: var(--light-oxford);
    padding: 3rem 0;
    color: var(--gray-950-ink);
}

.quote-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1728px;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.quote-image {
    aspect-ratio: 1;
    width: 100%;
    max-width: 300px;
    border-radius: 0.5rem;
    background: var(--gray-800);
    order: 2;
}

.quote-image img {
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    object-fit: cover;
}

.quote-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    order: 1;
}

.quote-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.quote-text {
    position: relative;
}

.quote-text::before {
    content: '"';
    position: absolute;
    left: -0.75rem;
    top: 0;
    font-size: 1.5rem;
}

.quote-text blockquote {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.3;
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author-name {
    font-size: 0.875rem;
    font-weight: 600;
}

.quote-author-title {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-600);
}

/* Footer - Mobile optimized */
footer {
    background: var(--gray-900);
    color: var(--primary);
}

.footer-container {
    margin: 0 auto;
    max-width: 1920px;
    padding: 0 1rem;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 0;
    text-align: center;
}

.footer-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    text-wrap: balance;
}

.footer-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid var(--gray-800);
    padding: 3rem 0;
}

.footer-brand {
    display: none;
}

.footer-logo {
    height: 2rem;
    width: 2.8125rem;
    margin-bottom: 2rem;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.footer-copyright {
    max-width: 268px;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--gray-600);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
    width: 100%;
    margin-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column-title {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.footer-column a {
    display: flex;
    align-items: flex-start;
    text-align: left;
    font-size: 0.875rem;
    background: transparent;
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    width: max-content;
}

.footer-column a:hover {
    color: var(--secondary);
}

.footer-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    align-items: start;
}

.footer-mobile .footer-logo {
    margin-bottom: 0.5rem;
}

.footer-mobile .footer-copyright {
    font-size: 0.75rem;
    max-width: 200px;
    text-wrap: balance;
    color: var(--gray-600);
}

/* Responsive Design */
@media (min-width: 640px) {
    .header-container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-text {
        padding: 0 1.5rem;
    }
    
    .video-grid {
        margin: 0 1.5rem;
    }
    
    .products-grid {
        margin: 0 1.5rem;
    }
    
    .case-studies {
        padding: 0 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .quote-container {
        padding: 0 1.5rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    header {
        height: 80px;
    }
    
    main {
        padding-top: 80px;
    }
    
    .mobile-menu {
        padding-top: 80px;
    }
    
    .mobile-menu-content {
        height: calc(100vh - 80px);
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .nav-center {
        display: block;
    }
    
    .login-dropdown {
        display: block;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .video-grid {
        margin: 0 2rem;
        grid-template-columns: repeat(6, 1fr);
        gap: 1rem;
    }
    
    .video-wrapper {
        grid-column: span 6;
    }
    
    .play-button {
        width: 3.5rem;
        height: 3.5rem;
    }
    
    .play-button:hover {
        width: 9rem;
    }
    
    .play-button-content {
        padding-left: 1rem;
    }
    
    .play-button svg {
        width: 1.5rem;
        height: 1.5rem;
    }
    
    .play-button-text {
        font-size: 0.875rem;
    }
    
    .logos-container::before,
    .logos-container::after {
        width: 15vw;
        height: 78px;
    }
    
    .logo-item {
        height: 78px;
    }
    
    .customers-header h3 {
        font-size: 2rem;
    }
    
    .products-header h3 {
        font-size: 2rem;
    }
    
    .product-card {
        flex-direction: row;
    }
    
    .product-card.reverse {
        flex-direction: row-reverse;
    }
    
    .product-image {
        flex: 1;
        aspect-ratio: 1;
        border-radius: 0.5rem 0 0 0.5rem;
    }
    
    .product-card.reverse .product-image {
        border-radius: 0 0.5rem 0.5rem 0;
    }
    
    .product-content {
        flex: 1;
        aspect-ratio: 1;
        border-radius: 0 0.5rem 0.5rem 0;
        padding: 2rem;
    }
    
    .product-card.reverse .product-content {
        border-radius: 0.5rem 0 0 0.5rem;
    }
    
    .product-content-inner {
        text-align: left;
        padding: 0 2rem;
    }
    
    .product-title {
        font-size: 2rem;
    }
    
    .product-description {
        max-width: 337px;
        font-size: 1rem;
    }
    
    .product-link {
        justify-content: flex-start;
    }
    
    .carousel-slide {
        width: 70%;
        margin-right: 3rem;
    }
    
    .case-study-content {
        flex-direction: row;
        padding: 1.5rem;
        align-items: center;
        justify-content: space-between;
    }
    
    .case-study-text {
        flex: 1;
    }
    
    .case-study-quote {
        font-size: 1rem;
    }
    
    .case-study-author {
        font-size: 0.875rem;
    }
    
    .case-study-button {
        flex-shrink: 0;
        margin-left: 1rem;
        margin-top: 0;
        height: 3rem;
        padding: 0 1.25rem;
        font-size: 1rem;
        font-weight: 500;
    }
    
    .benefits-header h3 {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 4rem 2rem;
    }
    
    .benefit-item {
        align-items: flex-start;
        text-align: left;
        max-width: none;
        margin: 0;
    }
    
    .benefit-icon {
        width: 2.25rem;
        height: 2.25rem;
    }
    
    .benefit-description {
        font-size: 1rem;
    }
    
    .quote-container {
        padding: 0 4rem;
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
        align-items: center;
        flex-direction: row;
    }
    
    .quote-image {
        order: 0;
        max-width: none;
    }
    
    .quote-content {
        order: 0;
    }
    
    .quote-inner {
        text-align: left;
    }
    
    .quote-text blockquote {
        font-size: 2rem;
    }
    
    .quote-author-name {
        font-size: 1rem;
    }
    
    .quote-author-title {
        font-size: 1rem;
    }
    
    .footer-cta h3 {
        font-size: 2rem;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 4rem;
    }
    
    .footer-logo {
        margin-bottom: 4rem;
    }
    
    .footer-copyright {
        font-size: 0.875rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem 0;
    }
    
    .footer-column-title {
        font-size: 0.875rem;
    }
    
    .footer-column a {
        justify-content: center;
        text-align: center;
    }
    
    .footer-mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .header-container {
        padding: 0 2.25rem;
    }
    
    .hero-text {
        padding: 0 2.25rem;
    }
    
    .video-grid {
        margin: 0 2.25rem;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.125rem;
    }
    
    .video-wrapper {
        grid-column: 1 / 13;
    }
    
    .customers-header {
        padding: 0 2.25rem;
    }
    
    .products-header {
        padding: 0 2.25rem;
    }
    
    .products-grid {
        margin: 0 2.25rem;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.125rem;
    }
    
    .products-content {
        grid-column: 2 / 12;
    }
    
    .case-studies {
        padding: 0 2.25rem;
    }
    
    .benefits-header {
        padding: 0 2.25rem;
    }
    
    .benefits-grid {
        padding: 0 2.25rem;
    }
    
    .quote-container {
        padding: 0 2.25rem;
    }
    
    .footer-container {
        padding: 0 2.25rem;
    }
}

@media (min-width: 1280px) {
    .hero h1 {
        font-size: 4.5rem;
    }
    
    .header-container {
        padding: 0 2.5rem;
    }
    
    .hero-text {
        padding: 0 2.5rem;
    }
    
    .video-grid {
        margin: 0 2.5rem;
        gap: 1.25rem;
    }
    
    .customers-header {
        padding: 0 2.5rem;
    }
    
    .products-header {
        padding: 0 2.5rem;
    }
    
    .products-grid {
        margin: 0 2.5rem;
        gap: 1.25rem;
    }
    
    .case-studies {
        padding: 0 2.5rem;
    }
    
    .benefits-header {
        padding: 0 2.5rem;
    }
    
    .benefits-grid {
        padding: 0 2.5rem;
    }
    
    .quote-container {
        padding: 0 2.5rem;
    }
    
    .footer-container {
        padding: 0 2.5rem;
    }
}

@media (min-width: 1536px) {
    .hero h1 {
        font-size: 5rem;
    }
}

/* Utility Classes */
.text-balance {
    text-wrap: balance;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile menu interaction fixes */
@media (max-width: 767px) {
    .mobile-menu-button {
        display: flex !important;
    }
    
    .nav-center,
    .login-dropdown {
        display: none !important;
    }
    
    .dropdown-menu {
        display: none !important;
    }
}

/* Additional mobile optimizations */
@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .logo {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .hero-text {
        padding: 0 0.75rem;
    }
    
    .video-grid,
    .products-grid {
        margin: 0 0.75rem;
    }
    
    .case-studies {
        padding: 0 0.75rem;
    }
    
    .benefits-grid {
        padding: 0 0.75rem;
    }
    
    .quote-container {
        padding: 0 0.75rem;
    }
    
    .footer-container {
        padding: 0 0.75rem;
    }
    
    .customers-header,
    .products-header,
    .benefits-header {
        padding: 0 0.75rem;
    }
}



        /* Header Styles */
        header {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: var(--gray-950-ink);
            transition: box-shadow 0.5s linear;
            height: 60px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        header[data-scrolled="true"] {
            box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.55);
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 0 auto;
            max-width: 1920px;
            padding: 0 1rem;
            width: 100%;
            height: 100%;
            position: relative;
        }

        .header-left {
            display: flex;
            align-items: center;
            flex-shrink: 0;
            z-index: 1001;
        }

        .logo {
            font-family: serif;
            font-size: 1.125rem;
            font-weight: normal;
            color: var(--primary);
            text-decoration: none;
        }

        .nav-center {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: none;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.125rem;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-links > li {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            height: 2rem;
            font-size: 0.875rem;
            font-weight: 500;
            color: var(--primary);
            text-decoration: none;
            transition: color 0.3s ease;
            background: transparent;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

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

        .nav-link svg {
            margin-left: 0.25rem;
            width: 1rem;
            height: 1rem;
            transition: transform 0.3s;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-shrink: 0;
            z-index: 1001;
        }

        /* Dropdown Menus */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 3rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 50;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            border-radius: 0.5rem;
            background: var(--gray-900);
            padding: 1rem;
            min-width: 160px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) scale(0.95);
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -1rem;
            left: 0;
            right: 0;
            height: 1rem;
            width: 100%;
        }

        .dropdown:hover .dropdown-menu,
        .dropdown-menu:hover {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
        }

        .dropdown-menu li {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .dropdown-menu a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.5rem 0.75rem;
            height: 2rem;
            font-size: 0.875rem;
            background: transparent;
            color: white;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            gap: 0.5rem;
        }

        .dropdown-menu a:hover {
            color: var(--secondary);
        }

        .dropdown-overlay {
            position: fixed;
            inset: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.3);
            transition: opacity 0.3s ease;
            opacity: 0;
            pointer-events: none;
        }

        .dropdown:hover .dropdown-overlay {
            opacity: 1;
            pointer-events: auto;
        }

        /* Flag icons for login */
        .flag-icon {
            width: 1rem;
            height: 1rem;
        }

        .login-dropdown {
            display: none;
        }

        .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            height: 2.5rem;
            padding: 0 1rem;
            background: var(--gray-50-ivory);
            color: var(--gray-950-ink);
            font-size: 0.875rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.25rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            white-space: nowrap;
        }

        .cta-button:hover {
            background: var(--gray-200);
        }

        .mobile-menu-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border: none;
            color: var(--primary);
            cursor: pointer;
            padding: 0.5rem;
            width: 40px;
            height: 40px;
        }

        .mobile-menu-button svg {
            width: 24px;
            height: 24px;
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            left: 0;
            top: 0;
            z-index: 999;
            height: 100vh;
            width: 100%;
            overflow-y: auto;
            background: var(--gray-950-ink);
            padding-top: 60px;
            display: none;
            opacity: 0;
            transform: translateY(-100%);
            transition: all 0.3s ease;
        }

        .mobile-menu.active {
            display: flex;
            opacity: 1;
            transform: translateY(0);
        }

        .mobile-menu-content {
            display: flex;
            height: calc(100vh - 60px);
            flex-direction: column;
            justify-content: space-between;
            padding: 0 1rem;
            width: 100%;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            padding-top: 2rem;
            list-style: none;
        }

        .mobile-nav-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--gray-800);
        }

        .mobile-nav-link {
            font-size: 1rem;
            font-weight: 600;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 0.75rem 0;
        }

        .mobile-nav-link svg {
            width: 1.25rem;
            height: 1.25rem;
            transition: transform 0.3s;
        }

        .mobile-submenu {
            overflow: hidden;
            height: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .mobile-submenu.active {
            height: auto;
            visibility: visible;
            margin-top: 0.5rem;
        }

        .mobile-submenu ul {
            list-style: none;
            margin-top: 0.5rem;
        }

        .mobile-submenu li {
            display: flex;
            align-items: flex-start;
        }

        .mobile-submenu a {
            display: flex;
            width: 100%;
            max-width: none;
            padding: 0.75rem 0;
            font-size: 0.875rem;
            background: transparent;
            color: var(--gray-400);
            font-weight: 500;
            text-decoration: none;
            transition: color 0.3s ease;
            padding-left: 1rem;
        }

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

        .mobile-menu-bottom {
            position: relative;
            padding-bottom: 2rem;
            padding-top: 2rem;
        }

        .mobile-menu-actions {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 1rem;
            width: 100%;
        }

        /* Responsive */
        @media (min-width: 768px) {
            header {
                height: 80px;
            }

            .nav-center {
                display: block;
            }

            .login-dropdown {
                display: block;
            }

            .mobile-menu-button {
                display: none;
            }

            .header-container {
                padding: 0 2rem;
            }
        }

        @media (max-width: 767px) {
            .mobile-menu-button {
                display: flex !important;
            }
            
            .nav-center,
            .login-dropdown {
                display: none !important;
            }
        }

        /* Demo styles for visibility */
        main {
            padding-top: 80px;
            min-height: 200vh;
            background: black;
            color: white;
        }


        
        .header {
            height: 80px;
            position: fixed;
            left: 0;
            top: 0;
            z-index: 1000;
            width: 100%;
            background: black;
            color: white;
            padding: 0.5rem 0;
            transition: box-shadow 0.5s ease-linear;
        }

        .header.scrolled {
            box-shadow: 0px 10px 30px -10px rgba(0,0,0,0.55);
        }

        .header-container {
            display: flex;
            align-items: center;
            margin: 0 auto;
            max-width: 1920px;
            padding: 0 1.75rem;
            height: 100%;
        }

        @media (min-width: 768px) {
            .header-container {
                padding: 0 2rem;
            }
        }

        @media (min-width: 1024px) {
            .header-container {
                padding: 0 2.25rem;
            }
        }

        @media (min-width: 1280px) {
            .header-container {
                padding: 0 2.5rem;
            }
        }

        .header-content {
            position: relative;
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
        }

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

        .logo {
            color: white;
            text-decoration: none;
            font-family: serif;
            font-size: 1.25rem;
            font-weight: normal;
        }

        @media (min-width: 1024px) {
            .logo {
                font-size: 1.5rem;
            }
        }

        @media (min-width: 1280px) {
            .logo {
                font-size: 1.75rem;
            }
        }

        @media (min-width: 1536px) {
            .logo {
                font-size: 2.5rem;
                line-height: 2.5rem;
            }
        }

        .main-nav {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            display: none;
        }

        .nav-list {
            display: flex;
            align-items: center;
            gap: 1.125rem;
            list-style: none;
        }

        .nav-item {
            position: relative;
        }

        .nav-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem;
            height: 2rem;
            font-size: 0.875rem;
            background: transparent;
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 500;
            gap: 0.25rem;
            border-radius: 4px;
            transition: color 0.3s ease-out;
            text-decoration: none;
        }

        .nav-button:hover {
            color: var(--gray-500);
        }

        .dropdown-arrow {
            width: 16px;
            height: 16px;
            transition: transform 0.3s ease;
        }

        .dropdown-menu {
            position: absolute;
            top: 4rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            border-radius: 6px;
            background: var(--gray-900);
            padding: 1rem;
            min-width: 120px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(-50%) scale(0.95);
            transition: all 0.3s ease-in-out;
        }

        .dropdown-menu::before {
            content: '';
            position: absolute;
            top: -2rem;
            left: 50%;
            transform: translateX(-50%);
            height: 2rem;
            width: 100%;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) scale(1);
        }

        .dropdown-item {
            width: 100%;
            text-align: center;
        }

        .dropdown-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem;
            height: 2rem;
            font-size: 0.875rem;
            background: transparent;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            gap: 0.5rem;
            transition: color 0.3s ease-out;
        }

        .dropdown-link:hover {
            color: var(--secondary);
        }

        .login-section {
            display: flex;
            align-items: center;
            margin-left: auto;
        }

        .login-dropdown {
            position: relative;
            margin-right: 1.5rem;
        }

        .login-menu {
            position: absolute;
            top: 4rem;
            right: 0;
            z-index: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            border-radius: 6px;
            background: var(--gray-900);
            padding: 0.5rem;
            min-width: 100px;
            opacity: 0;
            visibility: hidden;
            transform: scale(0.95);
            transition: all 0.3s ease-in-out;
        }

        .login-dropdown:hover .login-menu {
            opacity: 1;
            visibility: visible;
            transform: scale(1);
        }

        .login-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 0.75rem;
            height: 2rem;
            font-size: 0.875rem;
            background: transparent;
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
            gap: 0.5rem;
            transition: color 0.3s ease-out;
        }

        .login-link:hover {
            color: var(--secondary);
        }

        .flag-icon {
            width: 1rem;
            height: 1rem;
        }

        .demo-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 0.75rem;
            height: 2rem;
            background: var(--gray-50-ivory);
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 0.875rem;
            font-weight: 500;
            text-decoration: none;
            transition: all 0.3s ease-out;
            opacity: 0;
            transform: translateX(100%);
            visibility: hidden;
            width: 0;
            margin-left: 0;
        }

        .demo-button:hover {
            background: var(--gray-500);
        }

        .mobile-menu-button {
            display: block;
            cursor: pointer;
            color: white;
            background: none;
            border: none;
            padding: 0.5rem;
        }

        .mobile-menu-icon {
            width: 24px;
            height: 24px;
        }

        /* Responsive Design */
        @media (min-width: 768px) {
            .main-nav {
                display: block;
            }

            .mobile-menu-button {
                display: none;
            }

            .login-section {
                display: flex;
            }
        }