/* Base styles */
:root {
    --primary-color: #999DF2;
    --black: #000000;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Alte Haas Grotesk', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.2;
    overflow-x: hidden;
}

/* Hero Section */
.hero-mentalite {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
}

.brain-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 40px;
}

.brain-icon img {
    width: 220px;
    height: 220px;
    object-fit: contain;
    /* filter: drop-shadow(0 0 20px rgba(153, 157, 242, 0.5)); */
    transform: translateY(-40%);
}

.hero-mentalite h1 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 180px;
    text-align: center;
    line-height: 0.9;
    letter-spacing: -2px;
}

/* Sider to Outsider Section */
.sider-outsider {
    padding: 120px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.text-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    text-align: left;
    display: inline-block;
}

.sider-outsider h2 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 120px;
    margin-bottom: 40px;
    line-height: 1;
    display: inline-block;
}

.purple {
    color: var(--primary-color);
}

.arrow {
    margin: 0 20px;
    font-family: sans-serif;
}

.sider-outsider p {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.4;
}

.italic {
    font-style: italic;
}

/* Logo Incarnation Section */
.logo-incarnation {
    padding: 120px 0;
    background-color: var(--black);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 0 40px;
}

.text-side h2 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 99px;
    line-height: 0.9;
    margin-bottom: 40px;
}

.text-side p {
    font-family: 'Mulish', sans-serif;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.logo-side {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-side img {
    width: 80%;
    height: auto;
}

/* Quote Section */
.quote-points-section {
    background: #fff;
    padding: 80px 0 100px 0;
    width: 100%;
}

.quote-section {
    text-align: center;
    color: #000;
    margin-bottom: 80px;
}

.quote-section .subtitle {
    color: #000;
    font-size: 22px;
    margin-bottom: 24px;
}

.quote-section h2 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 56px;
    color: #111;
    font-weight: bold;
    line-height: 1.1;
    margin: 0 auto;
    display: inline-block;
}

.quote-mark {
    color: #bbb;
    /* font-size: 70px; */
    vertical-align: top;
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
}

.points-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-start;
}

.point-1 { grid-column: 1; grid-row: 1; }
.point-2 { grid-column: 2; grid-row: 1; }
.point-3 { grid-column: 1 / span 2; grid-row: 2; justify-self: center; }

.point {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.point-svg {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.point-text {
    font-family: 'Mulish', sans-serif;
    color: #111;
    font-size: 22px;
    line-height: 1.4;
    font-weight: normal;
    margin-top: 8px;
}

/* Also Sider Section */
.also-sider {
    padding: 120px 0;
    text-align: center;
    background-color: var(--white);
}

.also-sider h2 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 110px;
    line-height: 0.9;
    margin-bottom: 80px;
    color: var(--black);
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 0 40px;
}

.card {
    display: flex;
    flex-direction: column;
    border-radius: 32px;
    overflow: hidden;
    background: transparent;
    min-height: 520px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.08);
    width: 100%;
    max-width: 480px;
    padding: 0 !important;
    margin: 0 !important;
}

.card-img {
    width: 100%;
    display: block;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 340px;
    object-fit: cover;
    background: none !important;
}

.card-content {
    background: #111;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 28px 28px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.card-header {
    display: flex;
    align-items: flex-start;
    width: 100%;
    gap: 24px;
    margin-bottom: 4px;
}

.card-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-top: 0;
}

.card-header-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.card-title {
    font-family: 'Alte Haas Grotesk Bold', sans-serif;
    font-size: 22px;
    color: #fff;
    font-weight: bold;
    margin-left: 0;
    margin-right: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 0;
    margin-bottom: 8px;
    margin-top: 4px;
}

.social-icons img {
    width: 22px;
    height: 22px;
}

.card-content p {
    font-family: 'Mulish', sans-serif !important;
    color: #fff;
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-mentalite h1 {
        font-size: 140px;
    }

    .sider-outsider h2 {
        font-size: 100px;
    }

    .text-side h2 {
        font-size: 90px;
    }

    .quote-section h2 {
        font-size: 70px;
    }

    .also-sider h2 {
        font-size: 90px;
    }
}

@media (max-width: 768px) {
    .hero-mentalite {
        min-height: 60vh;
        padding-top: 60px;
        align-items: center;
        justify-content: center;
    }
    .brain-icon img {
        width: 120px;
        height: 120px;
        transform: translateY(-10%);
    }
    .hero-mentalite h1 {
        font-size: 44px;
        line-height: 1.1;
        padding: 0 1rem;
        margin-top: 0;
        text-align: center;
    }

    .sider-outsider {
        padding: 40px 0 24px 0;
        min-width: 0;
    }

    .sider-outsider h2 {
        font-size: 28px;
        line-height: 1.1;
        word-break: break-word;
        white-space: normal;
        margin-bottom: 18px;
        display: block;
    }

    .text-container {
        padding: 0 1rem;
        width: 100%;
        min-width: 0;
    }

    .sider-outsider p {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 10px;
        padding: 0;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    .text-side h2 {
        font-size: 60px;
    }

    .text-side p {
        font-size: 18px;
    }

    .quote-section {
        padding: 80px 20px;
    }

    .quote-section h2 {
        font-size: 40px;
    }

    .points-grid {
        display: flex;
        flex-direction: column;
        gap: 40px;
        max-width: 100%;
        padding: 0 20px;
    }
    
    .point-1, .point-2, .point-3 { 
        grid-column: unset;
        grid-row: unset;
        justify-self: unset;
        width: 100%;
    }
    
    .point {
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
        width: 100%;
    }
    
    .point-svg {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
    }
    
    .point-text {
        font-size: 16px;
        line-height: 1.4;
        color: #000;
        flex: 1;
    }

    .also-sider {
        padding: 80px 20px;
    }

    .also-sider h2 {
        font-size: 60px;
        margin-bottom: 40px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 1rem;
    }

    .card {
        max-width: 100%;
    }

    .card-img {
        height: 180px;
    }

    .card-content {
        padding: 18px 16px 16px 16px;
    }

    .card-logo {
        width: 36px;
        height: 36px;
    }

    .card-header {
        gap: 12px;
    }

    .card-title {
        font-size: 17px;
    }

    .social-icons img {
        width: 18px;
        height: 18px;
    }

    .card-content p {
        font-size: 15px;
    }

    .navbar {
        padding: 1rem 1.5rem;
    }
    .logo img {
        width: 120px;
        height: auto;
    }
    .nav-links {
        display: none !important;
    }
    .navbar .cta-button {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
        padding: 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: #FFFFFF;
        margin: 3px 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 2px;
    }
    .navbar.on-white .hamburger span {
        background-color: #000000;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        backdrop-filter: blur(10px);
        display: flex !important;
        flex-direction: column;
        padding: 80px 2rem 2rem;
        z-index: 1000;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
        border-left: 1px solid rgba(153, 157, 242, 0.2);
    }
    .mobile-menu.active {
        right: 0;
    }
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: block !important;
    }
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 50px;
    }
    .mobile-menu-logo {
        height: 40px;
        width: auto;
        object-fit: contain;
    }
    .mobile-menu-close {
        background: none;
        border: none;
        color: #FFFFFF;
        font-size: 24px;
        cursor: pointer;
        padding: 10px;
    }
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        width: 100%;
        margin-bottom: 30px;
    }
    .mobile-menu-nav a {
        color: #FFFFFF;
        text-decoration: none;
        font-size: 24px;
        font-family: 'Alte Haas Grotesk', sans-serif;
        transition: all 0.3s ease;
        opacity: 0.8;
        text-align: left;
        width: 100%;
    }
    .mobile-menu-nav a:hover {
        opacity: 1;
        transform: translateX(10px);
    }
    .mobile-menu-cta {
        margin-top: 30px;
    }
    .mobile-menu-cta .cta-button {
        padding: 15px 30px;
        font-size: 20px;
        background-color: #999DF2;
        color: #FFFFFF;
        border: none;
        border-radius: 15px;
        text-align: center;
        width: auto;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo-incarnation {
        padding: 40px 0;
    }
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 1rem;
    }
    .text-side h2 {
        font-size: 32px;
        margin-bottom: 18px;
    }
    .logo-side img {
        width: 120px;
        height: auto;
        margin: 0 auto;
    }
    .text-side p {
        font-size: 15px;
        margin-bottom: 10px;
    }
    .quote-points-section {
        padding: 40px 0 40px 0;
    }
    .quote-section h2 {
        font-size: 24px;
    }
    .points-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 24px;
        max-width: 100%;
    }
    .point-svg {
        width: 40px;
        height: 40px;
    }
    .point-text {
        font-size: 15px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        padding: 24px 1rem;
    }
    .footer-left, .footer-right {
        width: 100%;
        text-align: center;
        margin-bottom: 18px;
    }
    .footer-logo {
        width: 120px;
        margin: 0 auto 12px auto;
    }
    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .links-column {
        align-items: center;
        margin-bottom: 10px;
    }
    .partner-logos img {
        width: 60px;
        margin: 0 8px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .legal {
        font-size: 12px;
    }
}

@media (max-width: 900px) {
    .points-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 32px;
    }
    .point-3 { grid-column: 1; justify-self: start; }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-mentalite, .sider-outsider, .logo-incarnation, .quote-section, .points-section, .also-sider {
    animation: fadeIn 1s ease-out forwards;
}

h1, h2, h3, h4 {
    font-family: 'Alte Haas Grotesk', sans-serif !important;
    font-weight: normal;
}

/* For extra bold titles, override with Bold where needed */
.hero-mentalite h1,
.sider-outsider h2,
.text-side h2,
.quote-section h2,
.also-sider h2,
.card h3 {
    font-family: 'Alte Haas Grotesk Bold', sans-serif !important;
    font-weight: bold;
}

@font-face {
    font-family: 'Alte Haas Grotesk';
    src: url('../fonts/AlteHaasGrotesk-Regular.woff2') format('woff2'),
         url('../fonts/AlteHaasGrotesk-Regular.woff') format('woff'),
         url('../fonts/AlteHaasGrotesk-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Alte Haas Grotesk Bold';
    src: url('../fonts/AlteHaasGrotesk-Bold.woff2') format('woff2'),
         url('../fonts/AlteHaasGrotesk-Bold.woff') format('woff'),
         url('../fonts/AlteHaasGrotesk-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Mulish';
    src: url('../fonts/Mulish-Regular.woff2') format('woff2'),
         url('../fonts/Mulish-Regular.woff') format('woff'),
         url('../fonts/Mulish-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.card-content p,
.card-content .social-icons,
.card-content a,
.card-content span {
    font-family: 'Mulish', sans-serif !important;
    font-weight: normal;
} 