/* =========================================
   1. Reset & Variables
   ========================================= */
:root {
    --color-mmg-dark: #000000;
    --color-mmg-pink: #ff6fb5;
    --color-mmg-blue: #3a86ff;
    --color-mmg-green: #00e89e;
    --color-mmg-lightgreen: #defcf2;
    --color-mmg-darkblue: #001478;
    --color-mmg-lightblue: #e2edff;
    --color-mmg-lightpink: #ffeaf4;
    --color-mmg-bordlightblue: #5966a7;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Helvetica', 'Arial', sans-serif;

    --container-width: 1280px;
    --section-padding: 6rem 1rem;
    --border-color: #e5e7eb;
}

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

body {
    font-family: var(--font-body);
    color: #1f2937; /* slate-900 */
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 0.5em;
    position: relative;
    z-index: 1;
}

a {
    width: fit-content;
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

p {
    font-size: 1.1rem;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

section {
    overflow: hidden;
}

nav {
    /* Base styles */
    background-color: rgba(255, 255, 255, 0.9);
    /* Scroll-driven animation */
    animation: nav-scroll linear both;
    animation-timeline: scroll();
    animation-range: 0px 100px;
    padding: 0.8rem 0;
}

@keyframes nav-scroll {
    from {
        background-color: rgba(255, 255, 255, 0);
        border-bottom: 0px solid var(--color-mmg-dark);
    }
    to {
        background-color: rgb(255, 255, 255);
        border-bottom: 1px solid var(--color-mmg-dark);
    }
}

img {
    max-width: 100%;
    display: block;
}

.hero-main h1, footer h1 {
    font-size: 4.9rem;
    line-height: 5.5rem;
    font-weight: 500;
}

.hero-main p, .main-title p, .end-cta p{
    font-weight: 600;
}

.nav-desk a {
    font-size: 0.85rem;
}

footer a ,footer p{
    font-size: 0.95rem;
    font-weight: 400;
}

.slide-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);

}

.green-icon{
    max-width: 100%;
}


/* =========================================
   2. Utilities
   ========================================= */


.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.hidden {
    display: none !important;
}

.gradient-text {
    background: linear-gradient(to right, var(--color-mmg-pink), var(--color-mmg-blue), var(--color-mmg-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.text-center { text-align: center; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.pt-0 { padding-top: 0 !important; }

/* =========================================
   3. Navigation
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    height: 80px;
}

.navbar-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    cursor: pointer;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    color: #000;
}

.logo-sub {
    display: flex;
    flex-direction: column;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #6b7280;
    line-height: 1;
}

/* Desktop Menu */
.desktop-menu {
    display: none;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #4b5563;
    font-family: var(--font-heading);
}

.nav-link:hover {
    color: #000;
}

.btn-contact {
    background-color: #000;
    color: #fff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.2s;
}

.btn-contact:hover {
    background-color: #374151;
}

/* Mobile Toggle */
.mobile-toggle {
    display: block;
    color: #4b5563;
}

/* Mobile Menu Dropdown */
.mobile-menu {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.mobile-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    border-radius: 0.375rem;
    font-family: var(--font-heading);
}

.mobile-link:hover {
    background-color: #f3f4f6;
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero-section {
    padding: 8rem 1rem 6rem 1rem;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1rem;
    color: #6b7280;
    max-width: 42rem;
    margin: 0 auto;
}

/* =========================================
   5. Value Props Section
   ========================================= */
.value-props-section {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
}

.value-card {
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.2s;
}

.value-card:hover {
    background-color: #f9fafb;
}

.value-icon-wrapper {
    height: 10rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    width: 100%;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.75rem;
    color: #6b7280;
    max-width: 18rem;
    line-height: 1.6;
}

/* =========================================
   6. Focus Areas (Slider)
   ========================================= */
.focus-section {
    padding: var(--section-padding);
    background: linear-gradient(to bottom, rgba(239, 246, 255, 0.5), rgba(250, 245, 255, 0.3), rgba(255, 241, 242, 0.2));
}

.focus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.focus-header h2 {
    font-size: 2.25rem;
    font-weight: 500;
}

.separator-line {
    height: 1px;
    background-color: #9ca3af;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 2rem auto;
}

/* Slider Tabs */
.tabs-container {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    justify-content: flex-start;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.tabs-container::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-size: 1.2rem;
    color: rgba(0,0,0,0.5);
    font-weight: 500;
    white-space: nowrap;
    padding-bottom: 0.5rem;
    transition: all 0.2s;
    font-family: var(--font-heading);
}

.tab-btn:hover { color: #4b5563; }

.tab-btn.active {
    color: #000;
    font-weight: 500;
    border-bottom: 0px solid #000;
}

/* Slider Card */
.slider-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.slider-card {
    background-color: var(--color-mmg-dark);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    min-height: 500px;
    color: #fff;
    position: relative;
}

#slider-card {
    border: 1px solid var(--color-mmg-darkblue);
    margin-bottom: -1px;
    margin-right: -1px;
    margin-top: -1px;
}

/* Content Animations */
@keyframes elegantSlideUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes elegantPop {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

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

.animate-element-up {
    animation: elegantSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-content-enter {
    animation: elegantSlideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-image-enter {
    animation: elegantPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 0;
}

.animate-bg-fade {
    animation: elegantFadeIn 0.8s ease-out forwards;
}

.focus-text-side {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    position: relative;
    z-index: 10;
    order: 2;
    border: 1px solid var(--color-mmg-darkblue);
}

.focus-text-side h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.focus-text-side p {
    font-size: 1.1rem;
    color: #d1d5db;
    max-width: 30rem;
    line-height: 1.6;
}

.focus-deco-line {
    margin-top: 2rem;
    width: 3rem;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--color-mmg-blue), var(--color-mmg-green));
}

.focus-visual-side {
    flex: 1;
    position: relative;
    background: var(--color-mmg-dark);
    min-height: 300px;
    order: 1;
    overflow: hidden;
}

/* Floating Images */
.float-img-1 {
    position: absolute;
    top: 20%;
    right: 2rem;
    width: 160px;
    height: 160px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 20;
    transition: transform 0.3s;
}

.float-img-1:hover { transform: scale(1.05); }

.float-img-2 {
    position: absolute;
    bottom: 2rem;
    left: 45%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 30;
    transition: transform 0.3s;
}

.float-img-2:hover { transform: scale(1.05); }

/* Navigation Buttons */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    color: #000;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 50;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-arrow:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.nav-prev { left: -24px; }
.nav-next { right: -24px; }

.mobile-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-nav button {
    background: #fff;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pitch-cta {
    text-align: center;
    margin-top: 4rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #d1d5db;
    max-width: var(--container-width);
    margin-left: auto;
    margin-right: auto;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: 0.2s;
}

.btn-black:hover {
    opacity: 0.8;
    transition: 0.2s;
}

/* =========================================
   7. More Than Capital
   ========================================= */
.mtc-section {
    padding: var(--section-padding);
}

.mtc-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mtc-header h2 {
    font-size: 2.25rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.mtc-desc-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.mtc-desc-grid h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.mtc-desc-grid p {
    font-size: 0.8rem;
    color: #6b7280;
}

.mtc-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.mtc-card {
    background-color: var(--color-mmg-dark);
    border-radius: 2rem;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mtc-card:hover { transform: translateY(-5px); }

.mtc-card-visual {
    height: 240px;
    margin: 1rem;
    border-radius: 1.5rem;
    background: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Specific Card Gradients */
.mtc-vis-1 { background: linear-gradient(to bottom, #fbc2eb, #fad0c4); }
.mtc-vis-2 { background: linear-gradient(to bottom, #89f7fe, #66a6ff); }
.mtc-vis-3 { background: linear-gradient(to bottom, #84fab0, #8fd3f4); }

.mtc-card-content {
    padding: 0 2rem 2.5rem 2rem;
}

.mtc-card-content p {
    font-size: 0.8rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* =========================================
   8. Investment Focus
   ========================================= */
.inv-focus-section {
    padding: var(--section-padding);
    background: linear-gradient(to right, rgba(255,241,242,0.5), rgba(239,246,255,0.5), rgba(240,253,244,0.5));
}

.inv-grid {
    display: grid;
    grid-template-columns: 1fr;
    border-top: 1px solid #d1d5db;
    border-bottom: 1px solid #d1d5db;
}

.inv-item {
    padding: 3rem 2rem;
    border-bottom: 1px solid #d1d5db;
    transition: background-color 0.2s;
}

.inv-item:hover {
    background-color: rgba(255,255,255,0.6);
}

.inv-icon {
    margin-bottom: 1.5rem;
    color: #000;
    width: 40px;
    height: 40px;
}

.inv-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inv-item p {
    font-size: 0.8rem;
    color: #6b7280;
}

/* =========================================
   9. Traction Section
   ========================================= */
.traction-section {
    background-color: var(--color-mmg-dark);
    color: #fff;
    padding: var(--section-padding);
}

.traction-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 5rem;
}

.traction-row {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 6rem;
    align-items: center;
}

.traction-text {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.6;
}

.traction-text.align-right {
    text-align: right;
}

.underline-green {
    text-decoration: underline;
    text-decoration-color: var(--color-mmg-green);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.underline-pink {
    text-decoration: underline;
    text-decoration-color: var(--color-mmg-pink);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.underline-blue {
    text-decoration: underline;
    text-decoration-color: var(--color-mmg-blue);
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.traction-visual {
    flex: 1;
    width: 100%;
    height: 350px;
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.traction-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.traction-overlay-card {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(5px);
    padding: 1.5rem;
    border-radius: 1rem;
    max-width: 250px;
}

.traction-overlay-card p {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
}

/* =========================================
   10. Footer
   ========================================= */

 footer{
    overflow: hidden;
    background: white;
    margin-top: -1px;
 } 

.footer-cta {
    padding: 8rem 1rem;
    text-align: center;
    background: linear-gradient(to bottom, #fdf2f8, #ffffff, #f0fdf4);
}

.footer-cta h2 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.1;
}

.footer-cta .mb-large {
    margin-bottom: 3rem;
}

.main-footer {
    padding: 4rem 1rem;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    font-size: 0.8rem;
    color: #4b5563;
}



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

.footer-col a:hover { color: #000; }

.footer-col h4 {
    color: #000;
    font-weight: 700;
    margin-bottom: 1rem;
}

.brand-col {
    align-items: flex-start;
}

.legal-links {
    display: flex;
    gap: 1rem;
}

/* =========================================
   11. Contact Modal Popup
   ========================================= */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.contact-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    z-index: 1001;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.contact-modal.open .modal-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 0.1rem;
    right: 0.8rem;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: #000;
    transition: 0.2s;
}

.modal-close:hover { background: #e5e7eb; }

.modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #374151;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-mmg-darkblue);
    border-radius: 0rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
    margin-bottom: -1px;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #000;
}

.form-input::placeholder, .form-textarea::placeholder{
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}

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

.btn-submit {
    background-color: #000;
    color: #fff;
    padding: 0.7rem 1.2rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 1rem;
    width: fit-content;
}

.btn-submit:hover {  
    background-color: #1f2937;
}

.legal-hold ul {
    list-style: unset;
    margin: 0px;
    padding: 0 20px;
}

.legal-hold a{
    color: blue;
}

.fotter-cal{
    border: 1px solid var(--color-mmg-darkblue);
}


/* =========================================
   12. About Page Styles
   ========================================= */

/* About Hero */
.about-hero {
    position: relative;
    height: 400px;
    background-color: #e0f7fa;
    overflow: hidden;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 50%, rgba(79, 172, 254, 0.4), rgba(0, 242, 96, 0.1) 50%, transparent 70%),
        linear-gradient(120deg, #f0fdf4 0%, #e0f2fe 100%);
}

.about-hero-content {
    position: relative;
    padding-top: 4rem;
}

.about-hero-content h1 {
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.1;
    font-family: var(--font-heading);
}

/* Intro Grid */
.intro-grid-section {
    padding: 6rem 0;
    background: #ecfdf5;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.intro-item {
    padding: 2rem;
}

.intro-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.intro-item p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Team Section */
.team-section {
    padding: 6rem 0;
    background: #fff;
}

.team-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-mmg-dark);
    overflow: hidden;
}

.team-card-adv {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 3rem;
    border: 1px solid var(--color-mmg-dark);
    margin-left: -1px;
    margin-bottom: -1px;
}

.team-img-wrapper {
    flex-shrink: 0;
    margin: 0 auto 1.5rem auto;
    background: var(--color-mmg-green);
    border-right: 1px solid var(--color-mmg-dark);
}

.team-img-shape {
    border: 1px solid var(--color-mmg-dark);
    position: relative;
    overflow: hidden;
    margin-bottom: -1px;
    margin-left: -1px;
    margin-top: -1px;
    margin-right: -1px;
}

.grid-card-people-adv .team-img-wrapper {
    border: 1px solid var(--color-mmg-dark);
}

.team-img-shape img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) sepia(20%) hue-rotate(185deg) saturate(135%);
    transition: 0.2s;
}

.team-img-shape img:hover {
    filter: grayscale(0%);
    transition: 0.2s;
}
  

.team-info {
    flex: 1;
    text-align: center;
}

.team-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.team-info h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #000;
}

.team-info p {
    margin-bottom: 6rem;
    max-width: 600px;
}

.grid-card-people-adv .team-info p {
    margin-bottom: 0rem;
}

.linkedin-icon {
    display: inline-block;
    color: #000;
    width: 45px;
}

/* Advisors Section */
.advisors-section {
    padding: 4rem 0 8rem 0;
    background: #fff;
}

.advisors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid #e5e7eb;
    max-width: 1000px;
    margin: 0 auto;
}

.advisor-card {
    padding: 3rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-img-shape.small {
    width: 120px;
    height: 140px;
    margin-bottom: 1.5rem;
}

.advisor-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.advisor-info h4 {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: #4b5563;
}

.advisor-info p {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.5;
}

/* What We Look For */
.criteria-section {
    padding: 6rem 0;
    background: linear-gradient(to bottom, #fdf2f8, #f0fdf4);
}

.criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.criteria-icon {
    margin-bottom: 1.5rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.criteria-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Dark Blue Sections */
.tech-adv-section {
    padding: 6rem 0;
    background: var(--color-mmg-dark);
    position: relative;
    overflow: hidden;
}

.tech-adv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    align-items: center;
}

.tech-adv-text {
    flex: 1;
}

.tech-adv-text h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.tech-adv-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.tech-adv-text .small-desc {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 2rem;
    max-width: 400px;
}

.tech-adv-visual {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}

.visual-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
}

/* Beyond Team */
.beyond-team-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.beyond-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.beyond-image {
    flex: 1;
    border-radius: 2rem 2rem 0 2rem;
    overflow: hidden;
    height: 300px;
}

.beyond-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.beyond-text {
    flex: 1;
}

.beyond-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.beyond-text p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.beyond-text .small-desc {
    font-size: 0.8rem;
    opacity: 0.6;
}

/* Beyond Steps */
.beyond-steps-section {
    border-top: 1px solid rgba(255,255,255,0.05);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    position: relative;
    transition: 0.2s;
}

.step-card:hover {
    background: rgba(255,255,255,0.1);
}

.step-content p {
    font-size: 0.75rem;
    line-height: 1.5;
    opacity: 0.9;
}

.link-green {
    color: #00f260;
    text-decoration: underline;
}

.step-number {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.5;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* About CTA */
.about-cta-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #ecfdf5, #f0f9ff);
}

.about-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-cta-section p {
    font-size: 0.9rem;
    max-width: 500px;
    margin: 0 auto;
    color: #4b5563;
}

.btn-green, .btn-blue{
    transition: .3s;

}


.btn-green:hover{
    transition: .3s;
    background: var(--color-mmg-green);
}

.btn-blue:hover{
    transition: .3s;
    background: var(--color-mmg-blue);
}

.btn-pink:hover{
    transition: .3s;
    background: var(--color-mmg-pink);
}



/* =========================================
   13. Portfolio Page Styles
   ========================================= */

/* Portfolio Hero */
.portfolio-hero {
    position: relative;
    background: linear-gradient(90deg, #e0f2fe 0%, #f0fdf4 100%);
    overflow: hidden;
    height: 450px;
}

.portfolio-hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.portfolio-hero-content {
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 10;
    padding-top: 4rem;
}

.portfolio-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.portfolio-hero-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4b5563;
}

.portfolio-hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
}

.mob-focus-teaser{
    overflow: hidden;
    border-radius: 2rem;
}

.mars-swiper {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0rem 1rem;
    scroll-padding-left: 1rem;
    scrollbar-width: none;
    margin-left: -1px;
    margin-bottom: -1px;
    border: 1px solid var(--color-mmg-darkblue);
}
    .mars-swiper::-webkit-scrollbar {
            display: none;
        }

        .mars-card {
            flex: 0 0 calc(100% - 4.5rem);
            scroll-snap-align: start;
            padding: 0rem;
            min-height: 300px;
            position: relative;
            border: 1px solid var(--color-mmg-darkblue);
            margin-top: -1px;
            margin-bottom: -1px;
        }

        .mars-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -30%;
            width: 200px;
            height: 200px;
            background: linear-gradient(180deg, #00f5d4 0%, #7b2cbf 100%);
            border-radius: 20px;
            opacity: 0.8;
        }

        .mars-card::after {
            content: '';
            position: absolute;
            bottom: 20%;
            right: 10%;
            width: 150px;
            height: 40px;
            background: linear-gradient(90deg, #4361ee 0%, #7209b7 100%);
            border-radius: 10px;
            opacity: 0.7;
        }

        .mars-card__body {
            position: relative;
            z-index: 1;
        }

        .mars-card__body {
            position: relative;
            z-index: 1;
            overflow: hidden;
            border-radius: 2rem;
            background: var(--color-mmg-darkblue);
        }
        .mars-card h2 {
            color: #fff;
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .mars-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .mars-card__index {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            color: rgba(255, 255, 255, 0.3);
            font-size: 3rem;
            font-weight: bold;
            z-index: 1;
        }

        .mars-nav {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            padding: 1rem;
        }

        .mars-nav__pip {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--color-mmg-darkblue);
            transition: all 0.3s;
        }

        .mars-nav__pip.is-active {
            background: var(--color-mmg-darkblue);
            width: 30px;
            border-radius: 4px;
        }


/* Portfolio Logos */
.portfolio-logos-section {
    background: #ecfdf5;
    padding: 3rem 0;
    border-bottom: 1px solid #d1d5db;
    overflow: hidden;
}

.hold-logo{
    height: 8rem;
}

.logos-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: 8rem;
    width: max-content;
    animation: scroll 30s linear infinite;
    align-items: center;
    padding: 2rem 0rem;
    
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-item-original{
    max-width: 180px;
}

.logo-item-original.lio-lr{
    max-width: 200px;
}

.logo-item {
    font-size: 1.2rem;
    color: #374151;
    white-space: nowrap;
    opacity: 1;
    transition: 0.2s;
    cursor: default;
    max-width: 130px;
    filter: brightness(0);
}

.logo-item:hover {
    opacity: 1;
    filter: brightness(1);
    transition: 0.2s;
}

.logo-item.logo-item-l{
    max-width: 150px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 3));
    }
}

/* Portfolio Grid (updated version) */
.portfolio-grid-section {
    padding: 6rem 0;
    background: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.portfolio-card {
    border: 1px solid #0a1045;
    border-radius: 2.5rem;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    background: #fff;
    height: 100%;
    position: relative;
}

.portfolio-card:hover {
    box-shadow: 0 15px 35px rgba(10, 16, 69, 0.1);
    transform: translateY(-5px);
}

.pc-logo {
    height: 40px;
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.portfolio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.portfolio-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Portfolio CTA */
.portfolio-cta {
    background: var(--color-mmg-dark);
    padding: 8rem 0;
}

.portfolio-cta-desc {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
}

.gradient-text-light {
    background: linear-gradient(to right, #ff9a9e, #00f260, #4facfe);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    font-size: 2.5rem;
    display: block;
    line-height: 1.2;
}

.btn-white {
    background-color: #fff;
    color: #000;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.2s;
}

.btn-white:hover {
    transform: scale(1.05);
    background-color: #f3f4f6;
}

/* =========================================
   14. News Page Styles
   ========================================= */

/* News Hero */
.news-hero {
    position: relative;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 50%, #f0fdf4 100%);
    height: 400px;
    overflow: hidden;
}

.news-hero-inner {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.news-hero-content {
    position: relative;
    z-index: 10;
    padding-top: 4rem;
}

.news-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
}

.news-hero-graphic {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* News Grid */
.news-section {
    padding: 4rem 0;
    background: #fff;
}

.news-grid-container {
    border: 1px solid #a1a1aa;
    max-width: 1100px;
    margin: 0 auto;
}

.news-row {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid #a1a1aa;
}

/* Misc small utilities used later */
.hero-ic {
    height: 220px;
}

.head-logo {
    height: 25px;
}

.h-20 {
    height: 4rem;
}

.cu-btn {
    padding: 8px 14px;
    line-height: 15px;
    background-color: #000;
    border-radius: 30px;
    color: #fff;
}

.border-tb {
    border-top: 1px solid var(--color-mmg-darkblue);
    border-bottom: 1px solid var(--color-mmg-darkblue);
}

.border-lr {
    border-left: 1px solid var(--color-mmg-darkblue);
    border-right: 1px solid var(--color-mmg-darkblue);
}

.border-t {
    border-top: 1px solid var(--color-mmg-darkblue);
}

.border-b {
    border-bottom: 1px solid var(--color-mmg-darkblue);
}

.border-grid{
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: 100%;
}

.bg-gradient {
    background: linear-gradient(35deg,rgba(255, 111, 181, 0.15) 0%, rgba(58, 134, 255, 0.15) 50%, rgba(0, 232, 135, 0.15) 100%);
}

.bg-dark{
    background-color: var(--color-mmg-darkblue);
    overflow: hidden;
}

.bg-dark .border-b, .bg-dark .border-lr, .bg-dark .border-tb{
    border-color: var(--color-mmg-bordlightblue);
}

.bg-dark p{
    font-weight: 300;
}

.bg-dark h3{
    font-weight: 500;
}

.color-teaser{
    width: 300px;
    object-fit: none;
    margin-bottom: -1px;
}

.story-teaser{
    max-width: 520px;
    border: 1px solid var(--color-mmg-darkblue);
    margin-top: -1px;
    margin-bottom: -1px;
    margin-right: -1px;
    margin-left: -1px;
}

.box-bord-in{
    width: 100%;
}

.w-10xl{
    width: 100%;
}

.focus-box{
    border: 1px solid var(--color-mmg-darkblue);
    margin-left: -1px;
}

.w-max101{
    margin-right: -1px !important;
}

.med-icons{
    height: 75px;
}

.underline-green{
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
    text-decoration-color: var(--color-mmg-green);
}

.dark-sec p{
    line-height: 3rem;
    text-align: left;
}

.dark-sec .dark-sec-teaser{
    gap: 8rem;
    margin-top: -1px;
}

.slideshow-image{
    max-width: 625px;
    height: auto;
    
}

.bg-green{
    background: var(--color-mmg-lightgreen);
}

.bg-blue{
    background: var(--color-mmg-lightblue);
}

.bg-pink{
    background: var(--color-mmg-lightpink);
}


.inner-hero-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.hero-inner-img{
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 800px;
    width: 50%;
}

.inner-page nav{
    background-color: rgba(0,0,0,0);
}

.inner-page h1{
    margin-top: 3rem;
}

.team-info h3.jobtitle{
    font-weight: 400;
}
.grid-card-people{
    display: grid;
    grid-template-columns: 1fr;
    margin-bottom: -1px;
}

.grid-card-people-adv{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: -1px;
}

.pitch-card{
    border: 1px solid var(--color-mmg-lightblue);
    margin-left: -1px;
    margin-right: -1px;
    margin-top: -1px;
    height: 100.7%;
}

.pitch-card-hold{
    margin-left: -1px;
    margin-top: -1px;
    overflow: hidden;
}

.border-blue-light{
    border: 1px solid var(--color-mmg-bordlightblue)
}

.border-blue-dark{
    border: 1px solid var(--color-mmg-darkblue)
}


.step-icon{
    max-width: 90px;
}

.help-cards .cel{
    padding: 25px;
}

.cel{
    padding: 15px;
    width: 100%;
    margin-right: 0px;
    margin-top: 0px;
    width: 100%;
    overflow: hidden;
}

.bg-dark .cel{
    margin-right: 0px;
    margin-top: 0px;
    background: var(--color-mmg-darkblue);
    width: 100%;
}


.grid-bord{
    display: grid;
    grid-template-columns: auto 1fr auto;
    overflow: hidden;
}

.storyt-tag {
    padding-left: 10px;
    border-left: 5px solid var(--color-mmg-pink);
    width: fit-content;
    font-weight: 600;
}

   .story-card {
        display: flex;
        flex-direction: row;
        gap: 0rem;
        border: 1px solid var(--color-mmg-dark);
        margin-bottom: -1px;
    }

.story_logo{
    height: 1.5rem;
}

.readcta-hold{
    display: flex;
    margin-left: auto;
}

.readcta{
    width: fit-content;
    padding-bottom: 1px;
    border-bottom: 3px solid var(--color-mmg-pink);
}

.news-content button{
    margin-left: auto;
}

.rounded-3{
    border-radius: 3rem;
}

   .pd-3{
        padding: 3rem;
    }


.selection\:bg-pink-100 *::selection {
    --tw-bg-opacity: 1;
    background-color: var(--color-mmg-lightgreen)!important;
}

.tnx-page{
        margin: auto;
        align-items: center;
        max-width: 600px;
        align-content: center;
        align-self: center;
        align-items: center;
        height: 100vh;
}

.thx{
    display: flex;
    align-items: center;
    margin: auto;
}

.thx button{
    transform: scale(0.7);
}

.tnx-icon{
    display: flex;
    margin: 0 auto 4rem;
    max-width: 10rem;
}

.border-bottom-right{
   border-bottom: 1px solid var(--color-mmg-darkblue);
   border-right: 1px solid var(--color-mmg-darkblue);
}

.border-bottom-left{
   border-bottom: 1px solid var(--color-mmg-darkblue);
   border-left: 1px solid var(--color-mmg-darkblue);
}

.border-top-right{
   border-top: 1px solid var(--color-mmg-darkblue);
   border-right: 1px solid var(--color-mmg-darkblue);
}

.border-top-left{
   border-top: 1px solid var(--color-mmg-darkblue);
   border-left: 1px solid var(--color-mmg-darkblue);
}

.border-left{
   border-left: 1px solid var(--color-mmg-darkblue);
}

.border-right{
   border-right: 1px solid var(--color-mmg-darkblue);
}

.border-bottom{
    border-bottom: 1px solid var(--color-mmg-darkblue);
}

.border-top{
    border-top: 1px solid var(--color-mmg-darkblue);
}

.border-round{
    border: 1px solid var(--color-mmg-darkblue);
}

.help-cards .border-bottom-right, .help-cards .border-bottom-left, .help-cards .border-top-left, .help-cards .border-top-right, .help-cards .border-bottom, .help-cards .border-left, .help-cards .border-right, .help-cards .border-top{
    border-color: var(--color-mmg-bordlightblue);
}


/* =========================================
   GLOBAL RESPONSIVE: min-width 768px
   All @media (min-width: 768px) collected here
   ========================================= */

@media (min-width: 1921px) {
    .lg\:px-10 {
        max-width: 1920px;
    }
}



@media (min-width: 768px) {

    .news-teaser-hold{
        margin-top: -1px;
    }

    .hero-mob{
        display: none;
    }

    .mobile_slider{
        display: none;
    }

    .med-teaser{
        max-width: 100%;
    }

    .legal-hold{
        border-left: 1px solid var(--color-mmg-dark);
    }


    .text-5xl {
        line-height: 3.6rem!important;
    }

    .inner-page main{
        margin-top: -60px;
    }

   .tech-adv-wrapper.cal-rev {
        flex-direction: row-reverse;
    }

    /* Focus section */
    .focus-text-side {
        order: 1;
        padding: 5rem;
    }

    /* More Than Capital */
    .mtc-desc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mtc-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Investment Focus */
    .inv-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* About hero */
    .about-hero-content h1 {
        font-size: 5rem;
    }

    /* Intro grid */
    .intro-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0;
    }

    .intro-item {
        border-right: 1px solid rgba(0,0,0,0.1);
    }

    .intro-item:last-child {
        border-right: none;
    }

    /* Team */
    .team-card {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    

    .team-img-wrapper {
        margin: 0;
    }

    .team-info {
        text-align: left;
    }

    /* Advisors */
    .advisors-grid {
        grid-template-columns: 1fr 1fr;
    }

    .advisor-card:nth-child(odd) {
        border-right: 1px solid #e5e7eb;
    }

    .advisor-card:nth-last-child(1),
    .advisor-card:nth-last-child(2) {
        border-bottom: none;
    }

    /* Criteria */
    .criteria-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        border-top: 1px solid #d1d5db;
        border-bottom: 1px solid #d1d5db;
        padding: 4rem 0;
    }

    .criteria-item {
        border-right: 1px solid #d1d5db;
        padding: 0 1rem;
    }

    .criteria-item:last-child {
        border-right: none;
    }

    /* Tech advantage */
    .tech-adv-wrapper {
        flex-direction: row;
    }

    /* Beyond team */
    .beyond-wrapper {
        flex-direction: row;
    }

    /* Steps grid */
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }

    /* Traction & footer layout */
    .traction-row {
        flex-direction: row;
    }

    .traction-row.reverse {
        flex-direction: row-reverse;
    }

    .brand-col {
        grid-column: 4;
        align-items: flex-end;
        text-align: right;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Focus tabs align */
    .tabs-container {
        justify-content: center;
    }

    /* Value cards in row */
    .value-card {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
    }

    .value-card:last-child {
        border-right: none;
    }

    /* News layout */
    .news-row {
        grid-template-columns: 3fr 2fr;
    }

    .news-row:last-child {
        border-bottom: none;
    }

    .news-content {
        padding: 3rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 300px;
    }

    .news-tag {
        background-color: var(--color-mmg-dark);
        color: #fff;
        padding: 0.35rem 1rem;
        border-radius: 9999px;
        font-size: 0.75rem;
        font-weight: 700;
        text-transform: capitalize;
        align-self: flex-start;
        margin-bottom: 1.5rem;
    }

    .news-title {
        font-size: 1.75rem;
        font-weight: 500;
        line-height: 1.3;
        margin-bottom: auto;
        max-width: 90%;
    }

    .news-source {
        margin-top: 2rem;
    }

    .news-image {
        padding: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-img-cover {
        width: 100%;
        height: 100%;
        max-height: 250px;
        object-fit: cover;
        border-radius: 1.5rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .img-placeholder-card {
        width: 100%;
        height: 100%;
        max-height: 250px;
        min-height: 200px;
        border-radius: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* News CTA (desktop) */
    .news-cta-section {
        position: relative;
        padding: 8rem 1rem;
        background-color: var(--color-mmg-dark);
        color: #fff;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .news-cta-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at 50% 50%,
            rgba(29, 78, 216, 0.4) 0%,
            rgba(10, 16, 69, 1) 70%
        );
    }

    .news-cta-title {
        font-size: 2.25rem;
        font-weight: 600;
        margin-bottom: 2.5rem;
        line-height: 1.4;
    }

    .btn-white-cta {
        background-color: #fff;
        color: #000;
        padding: 1rem 3rem;
        border-radius: 9999px;
        font-weight: 800;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: transform 0.2s, background-color 0.2s;
    }

    .btn-white-cta:hover {
        transform: scale(1.05);
        background-color: #f3f4f6;
    }

    /* General desktop adjustments */
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 4.5rem;
    }

    .mobile-toggle {
        display: none;
    }

    .text-xl {
        font-weight: 700;
        font-size: 1.7rem !important;
        line-height: 2.3rem !important;
    }

    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .inv-item {
        border-bottom: none;
        border-right: 1px solid #d1d5db;
    }

    .inv-item:last-child {
        border-right: none;
    }

    .slider-card {
        flex-direction: row;
    }
}


@media (max-width: 1366px) {

    .text-5xl {
        font-size: 2rem !important;
        line-height: 3rem !important;
    }

    .slideshow-image{
        max-width: 100%;
        height: auto;
        
    }
    .color-teaser {
        width: 100%;
        max-width: 100%;
        border-radius: 1.5rem;
        object-fit: cover;
    }
    .hero-main h1, footer h1 {
        font-size: 3.5rem;
    }
}



@media (max-width: 769px) {


    .mob-hold-tab a{
        width: 100%;
        font-size: 1.5rem;
        padding: 1.5rem 0;
        margin-top: -1px;
        border-top: 1px solid var(--color-mmg-darkblue);
        border-bottom: 1px solid var(--color-mmg-darkblue);
        border-radius: 0px;
        color: black;
        font-weight: 400;
        background: white;
    }

    .mob-hold-tab a .cu-btn{
        font-weight: 900!important;
    }

    .mob-hold-tab{
        margin: auto;
        width: 100%;
        height: max-content;
        position: absolute;
        top: -6rem;
        bottom: 0;
        text-align: center;
        justify-content: center;
    }

    #mobile-menu{
        height: 100vh;
    }

    .nav-arrow { 
        display: none; 
    }

    .nav-desk {
        display: none;
    }

    .portfolio-hero-graphic {
        width: 100%;
        opacity: 0.2;
    }
    .foot-hold-col{
        display: flex!important;
        flex-wrap: wrap;
        width: 101%!important;
    }

   .foot-hold-col .foot-a, .foot-hold-col, .foot-b{
        width: 50%;
    }

    .foot-hold-col .foot-c{
        width: 100%;
    }

    .legal-hold.p-8{
        padding: 1rem 0rem;
    }

    .green-icon {
        max-width: 20%;
    }

    .pitch-card {
        margin-bottom: -1px;
        height: auto;
    }

    .tech-adv-section {
        padding: 2rem 0;
    }

    .tech-adv-wrapper {
        gap: 1rem;
    }

    .team-card-adv {
        gap: 0rem;
    }

    .grid-card-people-adv {
        grid-template-columns: repeat(1, 1fr);
    }

    .team-info p {
        margin-bottom: 3rem;
        text-align: left;
    }

    .team-info{
        padding: 1rem;
    }

    .team-img-wrapper {
        border-bottom: 1px solid var(--color-mmg-darkblue)
    }

    .hamburger{
        height: 24px;
        margin: auto 0;
    }

    nav {
        padding: 0.6rem 0;
    }

    footer {
        border-top: 1px solid var(--color-mmg-darkblue);
    }

    .footer-bottom.flex{
        flex-wrap: wrap;
    }

    .logo-item-original, .logo-item-original.lio-lr{
        max-width: 50%;
    }

    .hold-logo {
        height: 6rem;
    }

    .inner-page h1 {
        margin-top: 2.5rem;
    }

    .text-5xl{
        font-size: 1.5rem!important;
        line-height: 2rem!important;
    }

    .grid-bord {
        margin-left: -1px;
    }

    .story-card .cel{
        background-color: #fff;
        position: relative;
    }

    .story-teaser {
        max-width: 100.7%;
        margin-top: -1px;
        margin-left: -1px;
        margin-right: -1px;
    }

    .story-card {
        flex-wrap: wrap;
        margin-bottom: 1rem;
        overflow: hidden;
    }

    .hero-inner-img{
        width: 35vw;
        transform: scale(1, -1);
        top: 0;
    }

    .inner-hero-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .dark-sec .dark-sec-teaser {
        gap: 2rem;
    }

    .mb-24 {
        margin-bottom: 2rem!important;
    }

    .py-24 {
        padding-top: 2rem!important;
        padding-bottom: 2rem!important;
    }

    .pd-3{
        padding: 2rem;
    }

    .focus-box {
        margin-top: -1px;
    }

    .pt-24 {
        padding-top: 2rem!important;
    }

    .help-cards p{
        padding: 1rem 2rem;
    }

    .rounded-3{
        border-radius: 2rem;
    }

    .bg-dar{
        border-radius: 2rem;
    }

    .mars-card h2 {
        font-size: 1.3rem;
    }

    .border-tb {
        margin-top: -1px;
    }

    .border-lr {
        border-left: 0px solid var(--color-mmg-darkblue);
        border-right: 0px solid var(--color-mmg-darkblue);
    }

    .mb-16 {
        margin-bottom: 2rem!important;
    }

    .text-3xl {
        font-size: 2rem!important;
    }

    .leading-relaxed {
        line-height: 1.4!important;
    }

    .hero-ic {
        height: 8rem;
    }

    .head-logo {
        height: 20px;
    }

    .p-12 {
        padding: 1rem!important;
    }

    .pt-20 {
        padding-top: 2rem!important;
    }

    .pb-20 {
        padding-bottom: 2rem!important;
    }

    .hero-main h1 {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .desktop-slider{
        display: none;
    }

}

