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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #0d0d0d;
    background-color: #fcfcfd;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

/* Navigation Menu */
.nav-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background-color: #ececf9;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Actions on the right for main page */
    max-width: 1392px;
    width: 100%;
}

.nav-logo {
    display: none; /* Hidden on desktop for main page */
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    width: 204px;
}

/* Team page navigation - show logo on desktop */
.nav-menu-team .nav-logo {
    display: flex;
}

.nav-menu-team .nav-container {
    justify-content: space-between; /* Logo left, actions right */
}

/* Team page mobile styles - show logo on mobile */
@media (max-width: 768px) {
    .nav-menu-team .nav-logo {
        display: flex !important; /* Show logo on mobile for team page */
    }
    
    .nav-menu-team .nav-container {
        justify-content: space-between; /* Logo left, hamburger right on mobile */
    }
}

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

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    height: 48px;
}

/* Hamburger button now uses the button component classes */
.nav-hamburger {
    display: none; /* Hidden on desktop */
}

/* Hide icon-only buttons on desktop (hamburger menu) */
.btn-icon-only {
    display: none !important;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
    height: 16px;
}

.hamburger-icon span {
    width: 100%;
    height: 2px;
    background-color: #423ba5;
    transition: all 0.3s ease;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fcfcfd;
    z-index: 1000;
    display: none;
    flex-direction: column;
    padding: 24px;
}

.mobile-menu-overlay.active {
    display: flex;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 402px;
    margin: 0 auto;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 48px;
    margin-bottom: 56px;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 48px;
    width: 204px;
}

/* Mobile menu close button now uses the button component classes */

.close-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.close-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #423ba5;
    transform-origin: center;
}

.close-icon span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.close-icon span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

/* Mobile navigation buttons now use the button component classes */

/* Navigation buttons now use the button component classes */

/* Typography */
h2 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 29px;
    line-height: 36px;
    letter-spacing: 0.0018px;
    color: #423ba5;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0.0018px;
    color: #210124;
}

p {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #0d0d0d;
}

/* Hero + Intro Combined Section */
.hero-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 64px);
    padding: 0 48px 112px;
    background-color: #ececf9;
}

.hero-intro-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
    gap: 72px; /* Same spacing as before between logo and intro content */
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo {
    position: relative;
    height: 128px;
    width: 544px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invictus-ai-brand {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 544px;
    height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

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

.logo-symbol {
    position: absolute;
    top: 50%;
    left: calc(50% - 210.884px);
    transform: translate(-50%, -50%);
    width: 58.273px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.logo-text {
    position: absolute;
    top: 50%;
    left: calc(50% + 38.87px);
    transform: translate(-50%, -50%);
    width: 418.496px;
    height: 64px;
    display: flex;
    align-items: center;
    gap: 0;
}

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

/* Intro Content (now part of hero-intro section) */
.intro-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 800px;
    width: 100%;
}

/* Main Heading - Hidden for visual design but kept for SEO */
.main-heading {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    margin: 0;
    padding: 0;
}

.intro-content p {
    margin-bottom: 0;
}

/* AI Statement Section */
.ai-statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 80px;
    background-color: #ececf9;
}

.ai-statement-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: 800px;
    width: 100%;
    gap: 8px;
}

.subtitle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 8px;
    width: 100%;
}

.ai-statement-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0 0 16px;
    width: 100%;
}

.ai-statement-content p {
    margin-bottom: 0;
}

.signature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.signature p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
}

.signature-name {
    font-family: 'Pacifico', cursive;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
}

.meet-team-button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    margin-top: 32px;
}

.meet-team-button .btn {
    background-color: #423ba5 !important;
    color: #efebf5 !important;
    border: 1px solid #423ba5 !important;
}

.meet-team-button .btn:hover {
    background-color: #352f84 !important;
    border-color: #352f84 !important;
}

.meet-team-button .btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Verena Section */
.verena {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    height: 100vh; /* Fixed height for video section */
    background: radial-gradient(ellipse at center, rgba(125, 53, 233, 1) 0%, rgba(123, 52, 228, 1) 4.71%, rgba(121, 51, 224, 1) 8.97%, rgba(118, 49, 219, 1) 12.93%, rgba(116, 48, 213, 1) 16.78%, rgba(112, 46, 206, 1) 20.68%, rgba(108, 44, 197, 1) 24.80%, rgba(104, 41, 188, 1) 29.31%, rgba(99, 38, 176, 1) 34.38%, rgba(92, 35, 163, 1) 40.19%, rgba(85, 31, 148, 1) 46.91%, rgba(77, 26, 131, 1) 54.70%, rgba(68, 21, 111, 1) 63.73%, rgba(58, 15, 89, 1) 74.18%, rgba(46, 8, 64, 1) 86.21%, rgba(33, 1, 36, 1) 100%);
}

/* Video Section - Full Viewport Height */
.verena-video-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Verena Logo Section - Overlay on Video */
.verena-logo-section {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
    width: 100%;
}

.verena-logo {
    height: 143px;
    width: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.desktop-verena-logo {
    display: block;
}

.mobile-verena-logo {
    display: none;
}


.verena-video-mask {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    background-color: transparent !important;
}

/* Video-specific styling - Full width on all screen sizes */
.verena-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: transparent !important;
    border: none;
    outline: none;
}

/* Ensure fallback image has transparent background */
.verena-video-img[src*="verena-animation-phone.png"] {
    background: transparent !important;
    background-color: transparent !important;
}

/* Video styling - background now included in video files */
.verena-video-img {
    background: transparent;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.animate-fade-in.animated {
    opacity: 1;
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Parallax Effects */
.parallax-slow {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.parallax-medium {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    transform: translateY(0);
    transition: transform 0.1s ease-out;
}

/* Staggered Animation Delays */
.animate-delay-100 {
    transition-delay: 0.1s;
}

.animate-delay-200 {
    transition-delay: 0.2s;
}

.animate-delay-300 {
    transition-delay: 0.3s;
}

.animate-delay-400 {
    transition-delay: 0.4s;
}

.animate-delay-500 {
    transition-delay: 0.5s;
}

.animate-delay-600 {
    transition-delay: 0.6s;
}


/* Video play overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.video-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

/* Content Section */
.verena-content-section {
    background-color: #efebf5;
    width: 100%;
    padding: 128px 164px;
    position: relative;
    z-index: 10;
}

.verena-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 64px;
}

.verena-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 24px;
}

.verena-title {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 38px;
    line-height: 48px;
    letter-spacing: 0.0015px;
    color: #210124;
    text-align: center;
    margin: 0;
}

.verena-subtitle {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 29px;
    line-height: 48px;
    letter-spacing: 0.0018px;
    color: #210124;
    text-align: center;
    margin: 0;
}

.verena-cta {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 29px;
    line-height: 48px;
    letter-spacing: 0.0018px;
    color: #210124;
    text-align: center;
    margin: 0;
}

/* Form Styles */
.verena-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 203px 57px 0px rgba(0,0,0,0), 0px 130px 52px 0px rgba(0,0,0,0), 0px 73px 44px 0px rgba(0,0,0,0.02), 0px 32px 32px 0px rgba(0,0,0,0.03), 0px 8px 18px 0px rgba(0,0,0,0.03);
    padding: 24px 32px 32px;
    width: 576px;
}

.verena-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 16px;
    width: 100%;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
    width: 100%;
}

.form-label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #210124;
    margin: 0;
    min-height: 28px;
    display: flex;
    align-items: center;
}

.form-input,
.form-select {
    background-color: #fcfcfd;
    border: 1px solid #cbaef6;
    border-radius: 0;
    padding: 12px 24px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #210124;
    height: 48px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.form-input::placeholder {
    color: #8c8c8c;
    opacity: 1;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #7d35e9;
    box-shadow: none; /* Updated to match Figma - no box shadow */
}

.form-select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3e%3cpath d='M1 1L6 6L11 1' stroke='%238c8c8c' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px top 50%;
    background-size: 12px 10px;
    padding: 12px 36px 12px 24px;
}

.form-submit {
    display: flex;
    justify-content: center;
    padding-top: 16px;
}

/* Footer - New Figma Design */
.footer {
    background-color: #fcfcfd;
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-container {
    max-width: 1392px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Footer Elements Section */
.footer-elements {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    width: 100%;
    height: 112px;
}

.footer-spacer {
    width: 230px;
    height: 32px;
    flex-shrink: 0;
}

.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    flex-shrink: 0;
}

.footer-logo {
    position: relative;
    height: 32px;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.invictus-ai-symbol {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Social Media Section */
.footer-social-media {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    height: 32px;
    width: 230px;
    padding: 4px 0;
    flex-shrink: 0;
}

.social-text {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #0d0d0d;
    white-space: nowrap;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    height: 24px;
    flex-shrink: 0;
}

.social-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon-x {
    width: auto;
    height: 20px;
}

.social-icon-linkedin {
    width: auto;
    height: 20px;
}

.social-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Ensure anchor tags in social icons don't affect sizing */
.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Divider */
.footer-divider {
    width: 100%;
    height: 1px;
    background-color: #cdcce9;
    flex-shrink: 0;
}

/* Footer Signature Section */
.footer-signature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    width: 100%;
    height: 52px;
    flex-shrink: 0;
}

.footer-copyright {
    flex-shrink: 0;
}

.footer-copyright p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.2777px;
    color: #0d0d0d;
    margin: 0;
    white-space: nowrap;
}

.footer-policies {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.policy-link {
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0.2777px;
    color: #423ba5;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease;
    text-decoration: none;
}

.policy-link:hover {
    color: #352f84;
    text-decoration: underline;
}

.policy-separator {
    width: 4px;
    height: 4px;
    background-color: #0d0d0d;
    flex-shrink: 0;
}

/* Footer Logo Mobile Fix - Force correct dimensions for new design */
.footer .footer-logo,
.footer .footer-logo *,
.footer .footer-logo .invictus-ai-symbol,
.footer .footer-logo .footer-logo-img {
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .verena-logo-section {
        height: 200px;
    }
    
    .verena-logo {
        height: 120px;
        width: 400px;
    }
    
    .verena-video-mask {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .verena-content-section {
        padding: 88px 24px;
        position: relative;
        z-index: 10;
        background-color: #efebf5;
    }
    
    .verena-content {
        gap: 48px;
    }
    
    .verena-intro {
        gap: 20px;
    }
    
    .verena-title {
        font-size: 32px;
        line-height: 40px;
    }
    
    .verena-subtitle,
    .verena-cta {
        font-size: 24px;
        line-height: 36px;
    }
    
    .verena-form-container {
        width: 100%;
        max-width: 576px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        padding: 20px 16px;
    }
    
    .nav-container {
        justify-content: flex-end; /* Only hamburger on the right for main page mobile */
    }
    
    .nav-logo {
        display: none !important; /* Hidden on mobile for main page */
        width: 160px;
    }
    
    .nav-actions {
        display: none;
    }
    
    .nav-hamburger {
        display: flex;
    }
    
    .nav-logo {
        display: flex;
    }
    
    .btn-icon-only {
        display: flex !important;
    }
    
    
    /* Mobile video positioning - updated to match revised Figma design */
    .verena-video-section {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
    
    .verena-video-mask {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Verena logo updates */
    .verena-logo {
        width: 100%;
        max-width: 354px;
        height: auto;
        min-height: 105px;
    }
    
    .verena-logo-img {
        max-width: 354px;
        width: 100%;
        height: auto;
    }
    
    /* Mobile form layout updates */
    .verena-form-container {
        width: 100%;
        max-width: 354px;
        padding: 24px 32px 32px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-field {
        width: 100%;
    }
    
    /* Mobile Verena content section */
    .verena-content-section {
        padding: 88px 24px !important;
        position: relative !important;
        z-index: 10 !important;
        background-color: #efebf5 !important;
    }
    
    /* Mobile verena-info section styling */
    .verena-content {
        gap: 64px !important;
    }
    
    .verena-intro {
        gap: 24px !important;
    }
    
    .hero-intro {
        min-height: calc(100vh - 64px);
        padding: 0 24px 80px;
    }
    
    .hero-intro-container {
        gap: 48px; /* Reduced spacing on mobile */
    }
    
    .ai-statement {
        padding: 0 0 60px;
    }
    
    .logo {
        height: 96px;
        width: 400px;
    }
    
    .invictus-ai-brand {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure footer logo is not affected by main logo mobile styles */
    .footer .invictus-ai-symbol {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .logo-symbol {
        width: 40px;
        height: 44px;
        left: calc(50% - 120px);
    }
    
    .logo-symbol .symbol-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .logo-text {
        width: 280px;
        height: 44px;
        left: calc(50% + 20px);
    }
    
    .logo-text .text-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .intro-container,
    .ai-statement-container {
        max-width: 100%;
        padding: 0 24px;
    }
    
    
    .verena {
        padding: 0;
    }
    
    .verena-logo-section {
        height: 180px;
    }
    
    .verena-logo {
        height: 100px;
        width: 320px;
    }
    
    .desktop-verena-logo {
        display: none;
    }
    
    .mobile-verena-logo {
        display: block;
    }
    
    .verena-video-mask {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .verena-content-section {
        padding: 88px 24px;
        position: relative;
    }
    
    .verena-content {
        gap: 40px;
    }
    
    .verena-intro {
        gap: 18px;
    }
    
    .verena-title {
        font-size: 28px;
        line-height: 36px;
    }
    
    .verena-subtitle,
    .verena-cta {
        font-size: 20px;
        line-height: 28px;
    }
    
    .verena-form-container {
        padding: 20px 24px 24px;
        width: 100%;
        max-width: 576px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }
    
    /* InputButton component responsive styles are now handled by the component library */
    
    .footer {
        padding: 32px 24px 16px;
    }
    
    .footer-elements {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        height: auto;
        width: 100%;
        max-width: 354px;
        margin: 0 auto;
    }
    
    .footer-spacer {
        display: none;
    }
    
    .footer-logo-container {
        gap: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo {
        height: 32px !important;
        width: 32px !important;
    }
    
    .footer-logo .invictus-ai-symbol {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-logo .footer-logo-img {
        height: 100% !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .footer-social-media {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: center;
        width: 230px;
        height: 32px;
        padding: 4px 2px;
    }
    
    .social-text {
        text-align: center;
        white-space: nowrap;
    }
    
    .social-icons {
        justify-content: center;
        gap: 16px;
    }
    
    .footer-signature {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        justify-content: flex-start;
        padding: 16px 0;
        height: auto;
        width: 100%;
        max-width: 354px;
        margin: 0 auto;
    }
    
    .footer-copyright {
        order: 2;
        width: 100%;
    }
    
    .footer-copyright p {
        text-align: center;
        width: 100%;
    }
    
    .footer-policies {
        order: 1;
        justify-content: center;
        width: auto;
    }
}

/* Mobile logo styles */
.mobile-logo {
    display: none;
}

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

@media (max-width: 480px) {
    .nav-menu {
        padding: 16px 12px;
    }
    
    .nav-logo {
        width: 140px;
    }
    
    .mobile-menu-overlay {
        padding: 16px 12px;
    }
    
    .mobile-menu-content {
        max-width: 100%;
    }
    
    .hero-intro {
        min-height: calc(100vh - 64px);
        padding: 0 16px 64px;
    }
    
    .hero-intro-container {
        gap: 32px; /* Further reduced spacing on small mobile */
    }
    
    .logo {
        height: 80px;
        width: 320px;
    }
    
    .invictus-ai-brand {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: 100%;
    }
    
    /* Ensure footer logo is not affected by main logo mobile styles */
    .footer .invictus-ai-symbol {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Show mobile logo on mobile */
    .mobile-logo {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 320px !important;
        height: 75px !important;
        position: relative;
        min-height: 75px !important;
        max-height: 75px !important;
        flex-shrink: 0;
    }
    
    .mobile-logo-img {
        width: 320px !important;
        height: 75px !important;
        object-fit: contain;
        display: block !important;
        min-height: 75px !important;
        max-height: 75px !important;
        flex-shrink: 0;
        object-position: center;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
    
    
    .intro-container,
    .ai-statement-container {
        padding: 0 16px;
    }
    
    .verena-container {
        padding: 0 16px;
    }
    
    
    .verena {
        padding: 0;
    }
    
    .verena-logo-section {
        height: 160px;
    }
    
    .verena-logo {
        height: 80px;
        width: 280px;
    }
    
    .desktop-verena-logo {
        display: none;
    }
    
    .mobile-verena-logo {
        display: block;
    }
    
    .verena-video-mask {
        width: 100%;
        height: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .verena-content-section {
        padding: 88px 16px;
        position: relative;
        z-index: 10;
        background-color: #efebf5;
    }
    
    .verena-content {
        gap: 32px;
    }
    
    .verena-intro {
        gap: 16px;
    }
    
    .verena-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .verena-subtitle,
    .verena-cta {
        font-size: 18px;
        line-height: 24px;
    }
    
    .verena-form-container {
        padding: 16px 20px 20px;
        width: 100%;
    }
    
    .form-input,
    .form-select {
        height: 44px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .footer {
        padding: 24px 16px 12px;
    }
    
    .footer-elements {
        padding: 32px 0;
        gap: 24px;
        max-width: 320px;
    }
    
    .footer-logo {
        height: 32px !important;
        width: 32px !important;
    }
    
    .footer-logo .invictus-ai-symbol {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .footer-logo .footer-logo-img {
        height: 100% !important;
        width: auto !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .footer-social-media {
        width: 200px;
        gap: 12px;
    }
    
    .social-text {
        font-size: 14px;
    }
    
    .footer-signature {
        gap: 12px;
        padding: 12px 0;
        max-width: 320px;
    }
    
    h2 {
        font-size: 24px;
        line-height: 30px;
    }
    
    h3 {
        font-size: 18px;
        line-height: 24px;
    }
    
    p {
        font-size: 14px;
        line-height: 20px;
    }
    
    /* Improve mobile touch targets */
    .inputbutton-button {
        min-height: 48px;
    }
    
    .social-icon {
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
    }
    
    .policy-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 8px 0;
    }
}

/* ========================================
   Policy Overlay Styles
   ======================================== */



.removed-policy-overlay-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.removed-policy-overlay-content {
    position: relative;
    background-color: #fcfcfd;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.removed-policy-overlay-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    border-bottom: 1px solid #cdcce9;
    flex-shrink: 0;
    width: 100%;
    box-sizing: border-box;
}

.removed-policy-overlay-header-content {
    max-width: 800px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.removed-policy-overlay-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #210124;
    margin: 0;
}

.removed-policy-overlay-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.removed-policy-overlay-close:hover {
    background-color: #f3f4f6;
}

.removed-policy-overlay-close:focus {
    outline: 2px solid #7d35e9;
    outline-offset: 2px;
}

.removed-policy-overlay-close .close-icon {
    position: relative;
    width: 16px;
    height: 16px;
}

.removed-policy-overlay-close .close-icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #423ba5;
    transform-origin: center;
}

.removed-policy-overlay-close .close-icon span:first-child {
    transform: translate(-50%, -50%) rotate(45deg);
}

.removed-policy-overlay-close .close-icon span:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.removed-policy-overlay-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #0d0d0d;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.removed-policy-overlay-body-content {
    max-width: 800px;
    width: 100%;
}

.removed-policy-overlay-body-content h2 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    color: #210124;
    margin: 0 0 24px 0;
}

.removed-policy-overlay-body-content h3 {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #210124;
    margin: 24px 0 12px 0;
}

.removed-policy-overlay-body-content h3:first-child {
    margin-top: 0;
}

.removed-policy-overlay-body-content p {
    margin: 0 0 16px 0;
}

.removed-policy-overlay-body-content ul {
    margin: 0 0 16px 0;
    padding-left: 24px;
}

.removed-policy-overlay-body-content li {
    margin: 0 0 8px 0;
}

.removed-policy-overlay-body-content strong {
    font-weight: 600;
    color: #210124;
}

/* Policy Overlay Mobile Responsive */
@media (max-width: 768px) {
    .removed-policy-overlay-header {
        padding: 20px 24px;
    }
    
    .removed-policy-overlay-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .removed-policy-overlay-body {
        padding: 24px;
        font-size: 14px;
        line-height: 20px;
    }
    
    .removed-policy-overlay-body-content h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 480px) {
    .removed-policy-overlay-header {
        padding: 16px 20px;
    }
    
    .removed-policy-overlay-title {
        font-size: 18px;
        line-height: 24px;
    }
    
    .removed-policy-overlay-body {
        padding: 20px;
    }
}

/* ========================================
   Meet Our Team Page Styles
   ======================================== */

/* Menu/Navigation */
.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background-color: #fcfcfd;
}

.menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1392px;
    width: 100%;
}

.menu-elements {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.menu-logo {
    position: relative;
    height: 48px;
    width: 204px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-logo a {
    text-decoration: none;
    display: block;
    width: 100%;
    height: 100%;
}

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

/* Override the main page logo size for menu */
.menu .invictus-ai-brand {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    height: 100%;
}

/* Team Title Section */
.team-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 0 40px;
    background-color: #ececf9;
}

.team-title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 800px;
    width: 100%;
    gap: 8px;
}

.team-title-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    width: 100%;
}

.team-title-heading {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 600;
    font-size: 51px;
    line-height: 60px;
    letter-spacing: 0.011px;
    color: #0d0d0d;
    text-align: center;
    margin: 0;
}

.team-title-description {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #0d0d0d;
    text-align: center;
    margin: 0;
}

/* Team Members Section */
.team-members {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 80px;
    background-color: #ececf9;
}

.team-members-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 960px;
    width: 100%;
    gap: 40px;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    width: 280px;
    flex-shrink: 0;
}

.team-member-photo {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 6px;
    overflow: hidden;
}

.member-photo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #7d818d;
    border-radius: 6px;
}

.member-photo-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.team-member-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    width: 100%;
}

.member-name {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 500;
    font-size: 21px;
    line-height: 28px;
    letter-spacing: 0.0296px;
    color: #161c2d;
    margin: 0;
}

.member-title {
    font-family: 'Fira Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #161c2d;
    opacity: 0.7;
    margin: 0 0 12px 0;
}

.member-bio {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.1024px;
    color: #161c2d;
    opacity: 0.7;
    margin: 0 0 16px 0;
}

.bio-link {
    color: #423ba5;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    cursor: pointer;
}

.bio-link:hover {
    color: #2d2a7a;
}

.member-linkedin {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 4px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.member-linkedin:hover {
    opacity: 0.7;
}

.linkedin-icon {
    width: 14.931px;
    height: 15px;
    object-fit: contain;
    display: block;
}

/* Responsive Design for Meet Our Team */
@media (max-width: 1024px) {
    .team-members-container {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    
    .team-member {
        align-items: center;
        text-align: center;
    }
    
    .team-member-info {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu {
        padding: 24px 16px;
    }
    
    .team-title {
        padding: 60px 0 32px;
    }
    
    .team-title-container {
        max-width: 100%;
        padding: 0 24px;
    }
    
    .team-title-heading {
        font-size: 36px;
        line-height: 44px;
    }
    
    .team-members {
        padding: 0 0 60px;
    }
    
    .team-members-container {
        max-width: 100%;
        padding: 0 24px;
        gap: 40px;
    }
    
    .team-member {
        width: 100%;
        max-width: 280px;
    }
    
    .team-member-photo {
        width: 100%;
        max-width: 280px;
        height: 280px;
    }
}

@media (max-width: 480px) {
    .menu {
        padding: 20px 16px;
    }
    
    /* Title Section - Mobile */
    .team-title {
        padding: 80px 0 40px;
    }
    
    .team-title-container {
        padding: 0 24px;
        max-width: 402px;
        margin: 0 auto;
    }
    
    .team-title-heading {
        font-size: 38px;
        line-height: 48px;
    }
    
    .team-title-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Team Members Section - Mobile */
    .team-members {
        padding: 0 0 80px;
    }
    
    .team-members-container {
        padding: 0 24px;
        gap: 48px;
        max-width: 402px;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
    }
    
    .team-member {
        width: 100%;
        max-width: 354px;
    }
    
    .team-member-photo {
        width: 100%;
        height: 354px;
    }
    
    .member-name {
        font-size: 21px;
        line-height: 28px;
    }
    
    .member-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    /* Footer - Mobile */
    .footer {
        padding: 40px 24px 16px;
    }
    
    .footer-elements {
        flex-direction: column;
        gap: 32px;
        align-items: center;
        justify-content: center;
        padding: 40px 0;
        height: auto;
        width: 100%;
        max-width: 354px;
        margin: 0 auto;
    }
    
    .footer-spacer {
        display: none;
    }
    
    .footer-logo-container {
        gap: 24px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .footer-logo {
        height: 48px;
        width: 360px;
    }
    
    .footer-social-media {
        flex-direction: row;
        gap: 16px;
        align-items: center;
        justify-content: center;
        width: 230px;
        height: 32px;
        padding: 4px 2px;
    }
    
    .footer-signature {
        flex-direction: column;
        gap: 16px;
        align-items: center;
        justify-content: flex-start;
        padding: 16px 0;
        height: auto;
        width: 100%;
        max-width: 354px;
        margin: 0 auto;
    }
    
    .footer-copyright {
        order: 2;
        width: 100%;
    }
    
    .footer-copyright p {
        text-align: center;
        width: 100%;
    }
    
    .footer-policies {
        order: 1;
        justify-content: center;
        width: auto;
    }
}

/* Mobile Verena Content - Specific Fix */
@media (max-width: 768px) {
    .verena-content-section {
        padding: 88px 24px !important;
        position: relative !important;
        z-index: 10 !important;
        background-color: #efebf5 !important;
    }
}