/* =========================================================
   MARG (MEDITATION & RESEARCH GROUP) PAGE STYLES
   Darshan Education Foundation
========================================================= */

:root {
    /* Atmospheric background colors extracted from founder.png */
    --marg-bg: #fdfbf7;
    --marg-bg-warm: #faf4ea;
    --marg-bg-soft: #edf5fc;
    --marg-card-bg: rgba(255, 255, 255, 0.94);
    --marg-card-border: rgba(227, 159, 81, 0.24);
    --marg-card-shadow: 0 16px 42px rgba(0, 82, 132, 0.08), 0 2px 10px rgba(227, 159, 81, 0.06);

    /* Deep Royal Midnight Navy (Sant Rajinder Singh Ji Maharaj's presence & DEF Brand) */
    --marg-navy: #005284;
    --marg-navy-deep: #005284;
    --marg-navy-mid: #005284;
    --marg-navy-light: #005284;

    /* Sacred Warm Gold & Amber Aura (Radiant morning glow in founder.png) */
    --marg-gold: #E39F51;
    --marg-gold-dark: #E39F51;
    --marg-gold-bright: #E39F51;
    --marg-gold-light: #fef7ea;
    --marg-gold-border: rgba(227, 159, 81, 0.35);

    /* Serene Celestial Azure & Sky Mist (Ethereal blue wave aura in founder.png) */
    --marg-sky: #3a92d4;
    --marg-sky-dark: #2072ab;
    --marg-sky-light: #e4f2fb;
    --marg-sky-border: rgba(58, 146, 212, 0.30);

    /* Muted Text & Body */
    --marg-text-muted: #516478;
    --marg-font-heading: 'Montserrat', sans-serif;
    --marg-font-body: 'Plus Jakarta Sans', sans-serif;
}

body.marg-page-body {
    background: var(--marg-bg);
    background-image: 
        radial-gradient(at 15% 15%, rgba(255, 255, 255, 0.98) 0px, transparent 55%),
        radial-gradient(at 85% 10%, rgba(228, 242, 251, 0.75) 0px, transparent 50%),
        radial-gradient(at 20% 60%, rgba(251, 243, 230, 0.75) 0px, transparent 50%),
        radial-gradient(at 80% 80%, rgba(214, 237, 251, 0.65) 0px, transparent 50%);
    background-attachment: fixed;
    color: var(--marg-navy);
    font-family: var(--marg-font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Apply Montserrat to all headings across the MARG page */
.marg-page-body h1,
.marg-page-body h2,
.marg-page-body h3,
.marg-page-body h4,
.marg-page-body h5,
.marg-page-body h6,
.marg-main-heading,
.marg-sub-heading,
.marg-tagline-lead,
.marg-item-title,
.marg-card-title,
.marg-section-title,
.pub-study-title,
.lab-card-title,
.focus-title,
.impact-title,
.mission-title,
.pub-heading-main,
.pub-heading-sub,
.logo-single-text {
    font-family: var(--marg-font-heading) !important;
}

/* Scroll margin top to prevent fixed navbar overlap */
.marg-hero-section,
.marg-about-section,
.marg-focus-section,
.marg-published-section,
.marg-research-section,
.marg-impact-section,
.marg-mission-section,
.marg-collab-grid {
    scroll-margin-top: 85px;
}

/* ---------------------------------------------------------
   MAIN CONTAINER & TOP SCREEN BACKGROUND ARTWORK
--------------------------------------------------------- */
.marg-main {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    padding-top: 75px; /* Offset fixed DEF navbar */
    background-color: #FFFDF2;
}

/* Top Screen Background Artwork (Exact Uncropped Native Ratio) */
.marg-top-screen-bg-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.marg-top-screen-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* ---------------------------------------------------------
   MARG NAVBAR STYLES (STANDARD DEF NAVBAR AS IN MCLC)
--------------------------------------------------------- */
.navbar.marg-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 99999;
}

/* ---------------------------------------------------------
   HERO / FIRST SECTION (BALANCED SPACING & NATURAL PROPORTIONS)
--------------------------------------------------------- */
.marg-hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    background: transparent;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0 0;
    box-sizing: border-box;
    overflow: visible;
    z-index: 2;
}

.marg-hero-container {
    position: relative;
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Split Main Row (Left Editorial + Right Photo) */
.marg-hero-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: flex-end;
    min-height: 380px;
    position: relative;
    z-index: 2;
}

/* Left Content Column */
.marg-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 10px 40px 10px 0;
    position: relative;
    z-index: 5;
    background: transparent;
}

.marg-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--marg-gold-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: inline-block;
}

.marg-title-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-bottom: 6px;
}

.marg-main-heading {
    font-family: var(--marg-font-heading) !important;
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 10px;
    text-align: left;
}

.marg-badge-highlight {
    display: inline-block;
    background: #004352;
    color: #ffffff !important;
    padding: 3px 14px 4px;
    border-radius: 0;
    letter-spacing: 0.5px;
    box-shadow: none;
    text-align: left;
}

.marg-sub-heading-group {
    display: flex;
    flex-direction: column;
}

.marg-sub-heading {
    font-family: var(--marg-font-heading) !important;
    font-size: clamp(32px, 3.2vw, 44px);
    font-weight: 700;
    color: var(--marg-navy);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.marg-gold-divider {
    width: 44px;
    height: 2px;
    background: var(--marg-gold);
    margin: 18px 0;
    border-radius: 2px;
}

.marg-taglines {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.marg-tagline-lead {
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 700;
    color: #004352;
    line-height: 1.35;
    margin: 0;
    letter-spacing: -0.2px;
}

.marg-hero-paragraph {
    font-size: clamp(13.5px, 1.1vw, 15px);
    line-height: 1.65;
    color: var(--marg-text-muted);
    margin: 0 0 26px;
    max-width: 460px;
    font-weight: 500;
}

/* Explore MARG CTA Button with Golden Arrow Circle */
.marg-cta-wrapper {
    display: flex;
    align-items: center;
}

.marg-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--marg-navy);
    color: #ffffff;
    text-decoration: none;
    padding: 7px 8px 7px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 82, 132, 0.25);
}

.marg-explore-btn .btn-label {
    transition: transform 0.3s ease;
}

.btn-arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--marg-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-arrow-circle svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.marg-explore-btn:hover {
    background: var(--marg-navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 82, 132, 0.35);
}

.marg-explore-btn:hover .btn-arrow-circle {
    background: #E39F51;
    transform: translateX(3px) scale(1.05);
}

.marg-explore-btn:hover .btn-arrow-circle svg {
    transform: translateX(2px);
}

/* ---------------------------------------------------------
   RIGHT COLUMN (HERO IMAGE - TOUCHING NAVBAR & OVERLAPPING SHELF)
--------------------------------------------------------- */
.marg-hero-right {
    position: relative;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    z-index: 4;
}

.marg-photo-frame {
    position: absolute;
    top: -45px;
    bottom: -15px;
    right: 55px; /* Shifted closer to the center */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    border-radius: 0;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    pointer-events: none;
}

.marg-hero-img {
    height: 100%;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    border-radius: 0;
    pointer-events: auto;
    transition: transform 0.4s ease;
}

/* ---------------------------------------------------------
   FLOATING REELS & MEDIA SHOWCASE (PROTRUDING VERTICAL CARDS)
--------------------------------------------------------- */
.marg-floating-card.marg-reels-shelf {
    position: relative;
    z-index: 10;
    background: var(--marg-card-bg);
    border-radius: 20px;
    padding: 12px 20px 10px;
    margin-top: 0;
    box-shadow: var(--marg-card-shadow);
    border: 1.5px solid var(--marg-card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    overflow: visible;
}

.reels-bottom-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 2px;
    padding: 0;
}

.reels-nav-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reel-dot {
    width: 22px;
    height: 6px;
    border-radius: 3px;
    background: rgba(0, 82, 132, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s ease;
}

.reel-dot.active {
    width: 34px;
    background: var(--marg-gold);
    box-shadow: 0 0 8px rgba(227, 159, 81, 0.5);
}

.reel-dot:hover:not(.active) {
    background: rgba(0, 82, 132, 0.35);
}

/* 5-Column Reels Grid */
.marg-reels-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    align-items: flex-end;
    padding-top: 14px;
    position: relative;
}

/* Vertical 9:16 Reel Card (Protruding Out from Top of Bar) */
.marg-reel-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
    background: #005284;
    aspect-ratio: 9 / 14;
    max-height: 250px;
    transform: translateY(0) scale(0.96);
    opacity: 0.82;
    filter: brightness(0.92);
    border: 1.5px solid rgba(227, 159, 81, 0.22);
    box-shadow: 0 8px 20px rgba(0, 82, 132, 0.12);
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.marg-reel-card:hover {
    opacity: 0.96;
    filter: brightness(1);
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 14px 28px rgba(0, 82, 132, 0.2), 0 0 18px rgba(227, 159, 81, 0.25);
    border-color: rgba(227, 159, 81, 0.55);
}

/* Active Highlighted State (Enlarged & Focused) */
.marg-reel-card.active {
    transform: translateY(-24px) scale(1.08);
    opacity: 1;
    filter: brightness(1.04);
    z-index: 8;
    border: 2px solid var(--marg-gold);
    box-shadow: 
        0 20px 42px rgba(0, 82, 132, 0.28),
        0 0 28px rgba(227, 159, 81, 0.45);
}

/* 5-Second Progress Bar at Top */
.reel-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.5px;
    background: rgba(0, 0, 0, 0.4);
    z-index: 10;
    overflow: hidden;
}

.reel-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E39F51 0%, #E39F51 100%);
    box-shadow: 0 0 8px #E39F51;
    transition: width 0.05s linear;
}

.marg-reel-card:not(.active) .reel-progress-fill {
    width: 0% !important;
}

/* Media Wrap */
.reel-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.reel-preview-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.marg-reel-card.active .reel-preview-media {
    transform: scale(1.05);
}

/* Play / Zoom Icon Overlay (Pure SVG without circle container) */
.reel-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 4;
}

.reel-play-icon {
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    color: var(--marg-gold, #E39F51);
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.85)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.6));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, filter 0.3s ease;
}

.reel-play-icon svg {
    width: 36px;
    height: 36px;
    margin: 0;
    display: block;
}

.reel-zoom-icon svg {
    width: 32px;
    height: 32px;
    margin: 0;
}

.marg-reel-card.active .reel-play-icon {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #E39F51;
    transform: scale(1.2);
    filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
}

.marg-reel-card:hover .reel-play-icon {
    background: transparent !important;
    color: #E39F51;
    transform: scale(1.25);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 1)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
}

/* Golden Reel Icon on Media */
.reel-tag-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E39F51;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.75));
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease, filter 0.3s ease;
}

.reel-custom-vid-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.marg-reel-card:hover .reel-tag-icon,
.marg-reel-card.active .reel-tag-icon {
    color: #E39F51;
    transform: scale(1.14);
    filter: drop-shadow(0 0 8px rgba(227, 159, 81, 0.85));
}

/* Bottom Info Overlay */
.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 10px 10px;
    background: linear-gradient(to top, rgba(0, 82, 132, 0.95) 0%, rgba(0, 82, 132, 0.6) 65%, transparent 100%);
    z-index: 5;
    text-align: left;
}

.reel-meta {
    font-size: 10px;
    font-weight: 700;
    color: var(--marg-gold-bright);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0 0 2px;
    line-height: 1.2;
}

.reel-title {
    font-size: 11.5px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------------------------------------------------------
   POPOUT REEL MODAL / LIGHTBOX PLAYER (FULL SOUND & FULLSCREEN)
--------------------------------------------------------- */
.marg-reel-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reel-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 82, 132, 0.85);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    cursor: pointer;
}

.reel-modal-container {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transform: scale(0.92);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.marg-reel-modal.open .reel-modal-container {
    transform: scale(1);
}

.reel-phone-frame {
    position: relative;
    width: 380px;
    max-width: 90vw;
    height: 660px;
    max-height: 86vh;
    border-radius: 28px;
    overflow: hidden;
    background: #000000;
    border: 2px solid rgba(227, 159, 81, 0.45);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.7),
        0 0 35px rgba(227, 159, 81, 0.35);
}

.reel-modal-media-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000000;
    cursor: pointer;
}

.reel-modal-video,
.reel-modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000000;
    display: block;
}

/* Sound Toggle */
.reel-sound-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 82, 132, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.25s ease;
}

.reel-sound-toggle:hover {
    background: var(--marg-gold);
    transform: scale(1.08);
}

.reel-sound-toggle svg {
    width: 18px;
    height: 18px;
}

/* Center Play/Pause Overlay */
.reel-modal-center-play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.reel-modal-center-play.show {
    opacity: 1;
    transform: scale(1.1);
}

.reel-modal-center-play svg {
    width: 68px;
    height: 68px;
    color: #E39F51;
    filter: drop-shadow(0 0 24px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 8px #ffffff) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.8));
}

/* Modal Close Button */
.reel-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 26px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
}

.reel-modal-close:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: scale(1.1);
}

/* Modal Prev / Next Navigation */
.reel-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 82, 132, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1.5px solid rgba(227, 159, 81, 0.4);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
}

.reel-modal-nav svg {
    width: 20px;
    height: 20px;
}

.reel-prev-btn {
    left: -60px;
}

.reel-next-btn {
    right: -60px;
}

.reel-modal-nav:hover {
    background: var(--marg-gold);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 20px rgba(227, 159, 81, 0.6);
}

/* Modal Overlays */
.reel-modal-overlay-top {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 15;
    pointer-events: none;
}

.reel-modal-badge {
    background: rgba(0, 82, 132, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(227, 159, 81, 0.5);
    color: var(--marg-gold-bright);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.reel-modal-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 20px 22px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, transparent 100%);
    z-index: 15;
    pointer-events: none;
}

.reel-modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.25;
    letter-spacing: -0.2px;
}

.reel-modal-subtitle {
    font-size: 13px;
    color: var(--marg-gold-bright);
    font-weight: 600;
    margin: 0 0 14px;
    line-height: 1.35;
}

/* Scrub Bar */
.reel-scrub-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 2px;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}

.reel-scrub-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #E39F51, #E39F51);
    box-shadow: 0 0 8px #E39F51;
    border-radius: 2px;
}

/* ---------------------------------------------------------
   SECTION 2: ABOUT MARG — WHERE MEDITATION MEETS RESEARCH (3D NEURON BRAIN & UNIVERSE)
--------------------------------------------------------- */
.marg-research-impact-section {
    position: relative;
    width: 100%;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    padding: 0 !important;
    overflow: hidden;
    background: #010714;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    border-top: 1px solid rgba(227, 159, 81, 0.15);
}

.marg-about-section {
    padding: 80px 30px;
    background: var(--marg-bg);
    position: relative;
    border-top: 1px solid rgba(227, 159, 81, 0.15);
}

.marg-about-container {
    max-width: 1380px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.35fr;
    gap: 40px;
    align-items: stretch;
}

/* Left Content Area */
.marg-about-left {
    display: flex;
    gap: 24px;
    position: relative;
}

/* Vertical Timeline Indicator Rail + Lotus */
.marg-vertical-rail {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
    width: 32px;
    flex-shrink: 0;
    position: relative;
}

.rail-line {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 1.5px;
    background: linear-gradient(180deg, rgba(227, 159, 81, 0.3) 0%, rgba(227, 159, 81, 0.8) 50%, rgba(227, 159, 81, 0.3) 100%);
    z-index: 1;
}

.rail-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--marg-gold);
    border: 2px solid var(--marg-bg);
    box-shadow: 0 0 8px rgba(227, 159, 81, 0.5);
    position: relative;
    z-index: 2;
}

.rail-dot.dot-1 {
    margin-top: 4px;
}

.rail-dot.dot-2 {
    margin-top: 70px;
}

.rail-dot.dot-3 {
    margin-top: 70px;
}

.rail-lotus {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

.rail-lotus svg {
    width: 28px;
    height: 28px;
}

.marg-about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.marg-about-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--marg-gold-dark);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.marg-about-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(34px, 3.4vw, 48px);
    font-weight: 800;
    color: var(--marg-navy);
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin: 0 0 16px;
}

.marg-about-divider {
    width: 36px;
    height: 2px;
    background: var(--marg-gold);
    margin-bottom: 22px;
    border-radius: 2px;
}

.marg-about-lead {
    font-size: 15px;
    font-weight: 600;
    color: #334155;
    line-height: 1.65;
    margin: 0 0 16px;
    max-width: 440px;
}

.marg-about-body {
    font-size: 14px;
    color: var(--marg-text-muted);
    line-height: 1.65;
    margin: 0;
    max-width: 440px;
    font-weight: 500;
}

/* Right 3 Tall Vertical Photo Cards */
/* Right 3 Tall Photo Cards (Exact UI Match to TPRP Implemented in Leading Schools) */
.marg-about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    align-items: stretch;
}

.marg-feature-card {
    height: 380px;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #e8eef4;
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 1),
        0 10px 24px rgba(0, 82, 132, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    box-sizing: border-box;
}

.marg-feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 145, 143, 0.45);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 1),
        0 18px 38px rgba(0, 145, 143, 0.18);
}

.marg-feature-card .card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.marg-feature-card:hover .card-img {
    transform: scale(1.08);
}

/* Floating Frosted Glass Info Plate */
.marg-feature-card .card-plate {
    position: relative;
    z-index: 3;
    margin: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border-radius: 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.98);
    box-shadow: 
        inset 0 1px 2px rgba(255, 255, 255, 1),
        0 6px 18px rgba(0, 82, 132, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    text-align: left;
}

.card-plate-headings {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    width: 100%;
}

.card-plate-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--marg-navy);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card-plate-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--marg-text-muted);
    line-height: 1.25;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ---------------------------------------------------------
   SECTION 3: KEY FOCUS AREAS
--------------------------------------------------------- */
.marg-focus-section {
    padding: 80px 40px;
    background: var(--marg-bg);
    position: relative;
    border-top: 1px solid rgba(227, 159, 81, 0.15);
    overflow: hidden;
}

.marg-leaf-accent {
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 100px;
    height: 120px;
    pointer-events: none;
    z-index: 1;
}

.marg-leaf-accent svg {
    width: 100%;
    height: 100%;
}

.marg-focus-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.marg-focus-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 45px;
}

.marg-focus-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--marg-gold-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.marg-focus-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(32px, 3.2vw, 46px);
    font-weight: 800;
    color: var(--marg-navy);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 14px;
    text-align: center;
}

.marg-focus-divider {
    width: 40px;
    height: 2px;
    background: var(--marg-gold);
    border-radius: 2px;
}

.marg-focus-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: stretch;
}

/* Exact PTB Glow-Blob Card Box Style with 70% White / 30% #004352 Deep Teal Aura */
.marg-focus-col {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: clamp(26px, 2.4vw, 34px) clamp(20px, 1.8vw, 24px);
    border-radius: 28px;
    border: none;
    background:
        radial-gradient(circle at -4% 24%, rgba(0, 67, 82, 0.16) 0%, rgba(0, 67, 82, 0) 54%),
        radial-gradient(circle at 90% 88%, rgba(0, 67, 82, 0.18) 0%, rgba(0, 67, 82, 0) 58%),
        #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 67, 82, 0.05);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.marg-focus-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 67, 82, 0.14);
}

.focus-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.15rem, 1.3vw, 1.32rem);
    font-weight: 800;
    color: #005284;
    line-height: 1.18;
    margin: 0;
    letter-spacing: -0.02em;
    min-height: auto;
    display: block;
    text-align: left;
}

.focus-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--marg-text-muted);
    margin: 0;
    font-weight: 500;
    max-width: 100%;
    text-align: left;
}

@media (max-width: 1200px) {
    .marg-focus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .marg-focus-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   SECTION 4: RESEARCH PUBLISHED & FEATURED STUDY
--------------------------------------------------------- */
.marg-published-section {
    padding: 80px 50px;
    background: #005284;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    border-top: 1.5px solid rgba(255, 255, 255, 0.25);
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 45px rgba(0, 82, 132, 0.25);
}

.pub-leaf-accent {
    position: absolute;
    top: 0;
    left: 15px;
    width: 90px;
    height: 110px;
    pointer-events: none;
    z-index: 1;
}

.pub-brain-watermark {
    position: absolute;
    bottom: -15px;
    right: 20px;
    width: 200px;
    height: 200px;
    pointer-events: none;
    z-index: 1;
}

.pub-brain-watermark svg,
.pub-leaf-accent svg {
    width: 100%;
    height: 100%;
}

.marg-published-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 1.15fr 0.95fr 1.2fr;
    gap: 30px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Column */
.pub-left-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.pub-eyebrow {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E39F51;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.pub-headline {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(30px, 2.8vw, 42px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.8px;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.pub-head-white {
    color: #ffffff;
}

.pub-head-gold {
    color: #E39F51;
}

.pub-divider {
    width: 36px;
    height: 2px;
    background: #E39F51;
    margin: 14px 0 16px;
    border-radius: 2px;
}

.pub-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 22px;
    max-width: 440px;
}

.pub-cta-wrapper {
    display: flex;
    align-items: center;
}

.pub-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #E39F51;
    color: #005284;
    text-decoration: none;
    padding: 6px 8px 6px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(227, 159, 81, 0.4);
}

.btn-arrow-circle-white {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #005284;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.35s ease;
}

.btn-arrow-circle-white svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
}

.pub-view-all-btn:hover {
    background: #f5b064;
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(227, 159, 81, 0.55);
}

.pub-view-all-btn:hover .btn-arrow-circle-white {
    transform: translateX(3px);
}

.pub-view-all-btn:hover .btn-arrow-circle-white svg {
    transform: translateX(2px);
}

/* Center Column: Pure Poster Image */
.pub-center-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.pub-wave-decor {
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 50px;
    pointer-events: none;
    z-index: 1;
}

.pub-wave-decor svg {
    width: 100%;
    height: 100%;
}

.pub-poster-frame {
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    max-width: 290px;
    width: 100%;
    transition: transform 0.4s ease;
}

.pub-poster-frame:hover {
    transform: scale(1.03);
}

.pub-poster-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

/* Right Column: Featured Study */
.pub-right-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 10px;
}

.pub-study-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #E39F51;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: inline-block;
}

.pub-study-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(16px, 1.35vw, 20px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.38;
    margin: 0 0 18px;
    max-width: 480px;
}

.pub-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
}

.pub-meta-item {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13.5px;
    padding-left: 12px;
    border-left: 2px solid #E39F51;
}

.meta-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(227, 159, 81, 0.45);
    color: #E39F51;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.meta-icon svg {
    width: 14px;
    height: 14px;
}

.meta-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.meta-text strong {
    color: #ffffff;
}

.pub-read-study-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #E39F51;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 700;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.pub-read-study-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* ---------------------------------------------------------
   SECTION 5: RESEARCH COLLABORATIONS & LABS
--------------------------------------------------------- */
.marg-research-section {
    padding: 80px 30px;
    background: linear-gradient(180deg, #faf4ea 0%, #eef5fc 100%);
    position: relative;
    border-top: 1px solid rgba(227, 159, 81, 0.18);
}

.marg-section-container {
    max-width: 1260px;
    margin: 0 auto;
}

.marg-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px;
}

.marg-section-tag {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--marg-gold-dark);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 8px;
}

.marg-section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: var(--marg-navy);
    line-height: 1.2;
    margin: 0 0 14px;
}

.marg-section-subtitle {
    font-size: 15px;
    color: var(--marg-text-muted);
    line-height: 1.6;
    margin: 0;
}

.marg-collab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 0;
}

.marg-collab-card {
    background:
        radial-gradient(circle at -4% 24%, rgba(0, 145, 143, 0.38) 0%, rgba(0, 145, 143, 0) 54%),
        radial-gradient(circle at 90% 88%, rgba(0, 145, 143, 0.44) 0%, rgba(0, 145, 143, 0) 58%),
        #ffffff;
    border-radius: 28px;
    padding: clamp(28px, 2.6vw, 36px) clamp(24px, 2.2vw, 30px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 145, 143, 0.08);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.marg-collab-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 145, 143, 0.22);
}

.collab-badge {
    align-self: flex-start;
    background: rgba(0, 145, 143, 0.12);
    color: #00414A;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 145, 143, 0.25);
}

.marg-collab-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.25rem, 1.45vw, 1.45rem);
    font-weight: 800;
    color: #005284;
    margin: 0 0 12px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.marg-collab-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    color: #516478;
    line-height: 1.6;
    margin: 0 0 20px;
    font-weight: 500;
}

.collab-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #00414A;
    border-top: 1px solid rgba(0, 145, 143, 0.18);
    padding-top: 14px;
    margin-top: auto;
}

/* ---------------------------------------------------------
   SECTION 6: OUR IMPACT
--------------------------------------------------------- */
.marg-impact-section {
    padding: 80px 40px;
    background: var(--marg-bg);
    position: relative;
    border-top: 1px solid rgba(227, 159, 81, 0.15);
}

.marg-impact-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.marg-impact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 34px;
}

.marg-impact-tag {
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: #005284;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.marg-impact-divider {
    width: 34px;
    height: 2px;
    background: #00918F;
    border-radius: 2px;
}

.marg-impact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    align-items: stretch;
}

.marg-impact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
    padding: clamp(28px, 2.4vw, 36px) clamp(16px, 1.5vw, 22px);
    border-radius: 28px;
    border: none;
    background:
        radial-gradient(circle at -4% 24%, rgba(0, 145, 143, 0.38) 0%, rgba(0, 145, 143, 0) 54%),
        radial-gradient(circle at 90% 88%, rgba(0, 145, 143, 0.44) 0%, rgba(0, 145, 143, 0) 58%),
        #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04), 0 2px 10px rgba(0, 145, 143, 0.08);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.marg-impact-col:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 42px rgba(0, 145, 143, 0.22);
}

.impact-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 800;
    color: #005284;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.impact-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #516478;
    line-height: 1.35;
    max-width: 170px;
}

.marg-impact-mission {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impact-mission-head {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}

.impact-mission-head .mission-title {
    margin-bottom: 0;
    font-size: clamp(23px, 2.1vw, 29px);
}

.impact-mission-desc {
    display: flex;
    flex-direction: column;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #516478;
    line-height: 1.35;
    margin-top: 2px;
}

@media (max-width: 1200px) {
    .marg-collab-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .marg-impact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .marg-collab-grid {
        grid-template-columns: 1fr;
    }
    .marg-impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   SECTION 7: JOIN THE MISSION & INITIATIVE HUB
--------------------------------------------------------- */
.marg-mission-section {
    padding: 80px 0 0;
    background: var(--marg-bg);
    position: relative;
    border-top: 1px solid rgba(227, 159, 81, 0.15);
    overflow: hidden;
}

.marg-mission-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 40px 70px;
    display: grid;
    grid-template-columns: 1.15fr 1.35fr 1.05fr;
    gap: 36px;
    align-items: center;
    box-sizing: border-box;
}

/* Left Column: Organic Pebble/Blob Photo Frame */
.mission-left-col {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.mission-organic-frame {
    position: relative;
    width: 100%;
    max-width: 370px;
    aspect-ratio: 4 / 3.2;
    border-radius: 42% 58% 62% 38% / 45% 48% 52% 55%;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 82, 132, 0.14);
    border: 3px solid rgba(255, 255, 255, 0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-organic-frame:hover {
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1.03);
    box-shadow: 0 22px 50px rgba(0, 82, 132, 0.2);
}

.mission-frame-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.6s ease;
}

.mission-organic-frame:hover .mission-frame-img {
    transform: scale(1.06);
}

.mission-frame-border {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1.5px solid rgba(227, 159, 81, 0.3);
    pointer-events: none;
}

/* Center Column: Mission Editorial */
.mission-center-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 15px;
}

.mission-eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--marg-gold-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.mission-divider {
    width: 36px;
    height: 2px;
    background: var(--marg-gold);
    border-radius: 2px;
    margin-bottom: 18px;
}

.mission-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 2.7vw, 40px);
    font-weight: 800;
    color: var(--marg-navy);
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin: 0 0 16px;
}

.mission-taglines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.mission-taglines p {
    font-size: 14px;
    font-weight: 600;
    color: var(--marg-text-muted);
    line-height: 1.5;
    margin: 0;
}

.mission-cta-wrap {
    display: flex;
    align-items: center;
}

.mission-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--marg-navy);
    color: #ffffff;
    text-decoration: none;
    padding: 7px 8px 7px 22px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 82, 132, 0.22);
}

.mission-btn .btn-label {
    transition: transform 0.3s ease;
}

.mission-btn:hover {
    background: var(--marg-navy-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 82, 132, 0.35);
}

.mission-btn:hover .btn-arrow-circle {
    background: #E39F51;
    transform: translateX(3px) scale(1.05);
}

.mission-btn:hover .btn-arrow-circle svg {
    transform: translateX(2px);
}

/* Right Column: Initiative QR Card */
.mission-right-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-qr-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px 22px;
    box-shadow:
        0 16px 40px rgba(0, 82, 132, 0.09),
        0 2px 8px rgba(0, 82, 132, 0.03);
    border: 1.5px solid rgba(227, 159, 81, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mission-qr-card:hover {
    transform: translateY(-4px);
    box-shadow:
        0 22px 50px rgba(0, 82, 132, 0.14),
        0 4px 12px rgba(0, 82, 132, 0.05);
    border-color: var(--marg-gold);
}

.qr-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.qr-target-icon {
    width: 24px;
    height: 24px;
    color: var(--marg-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-target-icon svg {
    width: 19px;
    height: 19px;
}

.qr-header-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--marg-navy);
    letter-spacing: -0.2px;
}

.qr-domain-link {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--marg-gold);
    text-decoration: none;
    margin-bottom: 14px;
    letter-spacing: 0.2px;
    transition: color 0.25s ease;
}

.qr-domain-link:hover {
    color: var(--marg-gold-dark);
    text-decoration: underline;
}

.qr-code-wrapper {
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 14px rgba(0, 82, 132, 0.08);
    border: 1px solid rgba(0, 82, 132, 0.08);
    margin-bottom: 14px;
}

.qr-code-img {
    width: 105px;
    height: 105px;
    display: block;
}

.qr-follow-label {
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #64748b;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.qr-social-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qr-social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--marg-gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(227, 159, 81, 0.25);
}

.qr-social-btn svg {
    width: 15px;
    height: 15px;
}

.qr-social-btn:hover {
    background: var(--marg-navy);
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 14px rgba(0, 82, 132, 0.3);
}

/* Full-Width Navy Brand Ribbon */
.marg-brand-ribbon {
    width: 100%;
    background: linear-gradient(90deg, #005284 0%, #005284 50%, #005284 100%);
    color: #ffffff;
    padding: 14px 24px;
    border-top: 1.5px solid rgba(227, 159, 81, 0.35);
    box-sizing: border-box;
}

.ribbon-inner {
    max-width: 1380px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ribbon-brand-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ribbon-logo {
    height: 28px;
    width: auto;
}

.ribbon-brand-name {
    font-family: var(--marg-font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #ffffff;
    text-transform: uppercase;
}

.ribbon-star {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--marg-gold-bright);
}

.ribbon-star svg {
    width: 16px;
    height: 16px;
}

.ribbon-brand-right {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 14px;
    font-style: italic;
    color: #fef0d2;
    letter-spacing: 0.3px;
}

/* ---------------------------------------------------------
   MARG FOOTER
--------------------------------------------------------- */
.marg-footer {
    background: #005284;
    color: #ffffff;
    padding: 80px 30px 40px;
    border-top: 2px solid rgba(227, 159, 81, 0.35);
}

.marg-footer-container {
    max-width: 1260px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.marg-footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.marg-footer-brand img {
    height: 48px;
    width: auto;
}

.marg-footer-brand h4 {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 3px;
    color: #ffffff;
}

.marg-footer-brand p {
    font-size: 12.5px;
    color: var(--marg-gold);
    font-weight: 600;
    margin: 0;
}

.marg-footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
}

.marg-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.25s ease;
}

.marg-footer-links a:hover {
    color: var(--marg-gold);
}

.marg-footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.marg-footer-copy p {
    margin: 0;
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------------- */
@media (max-width: 1100px) {
    .marg-hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .marg-hero-left {
        padding: 20px 20px 40px;
    }

    .marg-hero-right {
        min-height: 380px;
        border-radius: 20px;
    }

    .marg-curve-separator {
        display: none;
    }

    .marg-floating-card.marg-reels-shelf {
        margin-top: 18px;
    }

    .marg-reels-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }

    .marg-reel-card {
        max-height: 220px;
    }

    .reel-prev-btn {
        left: -20px;
    }

    .reel-next-btn {
        right: -20px;
    }

    .marg-about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .marg-focus-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .marg-focus-col:not(:last-child)::after {
        display: none;
    }

    .marg-published-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .pub-left-col {
        align-items: center;
        padding-right: 0;
    }

    .pub-divider {
        margin: 16px auto;
    }

    .pub-desc {
        max-width: 540px;
    }

    .pub-right-col {
        align-items: center;
        padding-left: 0;
    }

    .pub-study-title {
        max-width: 560px;
    }

    .pub-read-study-link {
        align-self: center;
    }

    .marg-collab-grid {
        grid-template-columns: 1fr;
    }

    .marg-impact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 26px;
    }

    .marg-impact-col:not(:last-child)::after {
        display: none;
    }

    .marg-mission-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .mission-center-col {
        align-items: center;
        padding-right: 0;
    }

    .mission-divider {
        margin: 0 auto 18px;
    }
}

@media (max-width: 768px) {
    .marg-hero-section {
        padding: 90px 0 50px;
    }

    .marg-hero-container {
        padding: 0 16px;
    }

    .marg-main-heading {
        font-size: 46px;
    }

    .marg-sub-heading {
        font-size: 26px;
    }

    .marg-floating-card.marg-reels-shelf {
        padding: 14px 14px 18px;
    }

    .marg-reels-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 18px 4px 12px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .marg-reels-grid::-webkit-scrollbar {
        height: 4px;
    }

    .marg-reels-grid::-webkit-scrollbar-thumb {
        background: rgba(227, 159, 81, 0.4);
        border-radius: 4px;
    }

    .marg-reel-card {
        min-width: 140px;
        max-width: 140px;
        height: 220px;
        scroll-snap-align: center;
        flex-shrink: 0;
    }

    .marg-reel-card.active {
        transform: translateY(-8px) scale(1.04);
    }

    .reel-prev-btn,
    .reel-next-btn {
        display: none;
    }

    .marg-about-section {
        padding: 50px 16px;
    }

    .marg-about-cards-grid {
        grid-template-columns: 1fr;
    }

    .card-image-box {
        height: 240px;
    }

    .marg-vertical-rail {
        display: none;
    }

    .marg-focus-section {
        padding: 50px 16px;
    }

    .marg-focus-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .marg-focus-col {
        padding: 0 10px;
    }

    .marg-focus-col:not(:last-child)::after {
        display: none;
    }

    .focus-title {
        min-height: auto;
    }

    .marg-published-section {
        padding: 50px 16px;
    }

    .pub-poster-frame {
        max-width: 240px;
    }

    .marg-research-section {
        padding: 50px 16px;
    }

    .marg-impact-section {
        padding: 50px 16px;
    }

    .marg-impact-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .marg-impact-col:not(:last-child)::after {
        display: none;
    }

    .marg-mission-section {
        padding: 50px 0 0;
    }

    .marg-mission-container {
        padding: 0 16px 50px;
        gap: 34px;
    }

    .mission-organic-frame {
        max-width: 290px;
    }

    .ribbon-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .ribbon-star {
        display: none;
    }

    .marg-footer {
        padding: 50px 16px 30px;
    }
}

/* =========================================================
   FOOTER (MATCHING MCLC & DEF GLOBAL DESIGN)
========================================================= */
.mclc-footer,
.marg-footer {
    background: #06445e;
    color: #FFFFFF;
    padding: 55px 4.5% 28px 4.5%;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mclc-footer-container,
.marg-footer-container {
    max-width: 1320px;
    margin: 0 auto;
}

.mclc-footer-grid,
.marg-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.1fr 1.2fr;
    gap: 36px;
    margin-bottom: 44px;
}

.mclc-footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mclc-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFFFFF;
}

.mclc-footer-logo-img {
    height: 46px;
    width: auto;
}

.mclc-footer-logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #FFFFFF;
    margin: 0;
}

.mclc-footer-logo-sub {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    color: #E39F51;
    margin: 0;
}

.mclc-footer-brand-desc {
    font-size: 0.86rem;
    line-height: 1.6;
    color: #A0B3C6;
    margin: 0;
    max-width: 300px;
}

.mclc-footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
}

.mclc-social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mclc-social-icon-btn:hover {
    background: #00AD7C;
    transform: translateY(-2px);
}

.mclc-social-icon-btn svg {
    width: 16px;
    height: 16px;
}

.mclc-footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mclc-footer-col-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    letter-spacing: 0.02em;
}

.mclc-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mclc-footer-nav-list a {
    color: #94A3B8;
    font-size: 0.86rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mclc-footer-nav-list a:hover {
    color: #FFFFFF;
}

.mclc-footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94A3B8;
    font-size: 0.86rem;
    margin-bottom: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mclc-footer-contact-link:hover {
    color: #FFFFFF;
}

.mclc-footer-contact-link svg {
    width: 16px;
    height: 16px;
    color: #E39F51;
    flex-shrink: 0;
}

.mclc-footer-bottom-bar {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #7A8E9F;
    flex-wrap: wrap;
    gap: 12px;
}

.mclc-footer-legal-links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mclc-footer-legal-links a {
    color: #7A8E9F;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mclc-footer-legal-links a:hover {
    color: #FFFFFF;
}

@media (max-width: 900px) {
    .mclc-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .mclc-footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .mclc-footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* =========================================================
   SECTION 7.5: MARG CALL TO ACTION (HERO GLASS BANNER WITH AUTO-MOTION)
========================================================= */
.marg-cta-banner-section {
    position: relative;
    width: 100%;
    padding: 75px 4% 95px 4%;
    background: #FFFDF8;
    overflow: hidden;
}

.marg-cta-orbs-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    filter: blur(45px);
    -webkit-filter: blur(45px);
}

.marg-cta-banner-container {
    max-width: 1480px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Master Glass Banner Card (Transparent & Blurry) */
.marg-cta-master-card {
    position: relative;
    min-height: 440px;
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(45px) saturate(190%);
    -webkit-backdrop-filter: blur(45px) saturate(190%);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 30px 80px -15px rgba(0, 82, 132, 0.16),
        0 0 0 1px rgba(255, 255, 255, 0.6),
        inset 0 2px 4px rgba(255, 255, 255, 0.85);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.marg-cta-master-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Left Integrated Photo with Seamless Right Gradient Fade */
.marg-cta-left-visual {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 40%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 40%, rgba(0, 0, 0, 0.5) 75%, rgba(0, 0, 0, 0) 100%);
}

.marg-cta-faded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: saturate(1.05);
}

.marg-cta-fade-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.35) 85%, rgba(255, 255, 255, 0.6) 100%);
    pointer-events: none;
}

/* Right-Shifted Content & Actions Panel */
.marg-cta-content-panel {
    position: relative;
    z-index: 2;
    margin-left: auto;
    width: 58%;
    max-width: 760px;
    padding: 56px 64px 56px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.marg-cta-heading {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    font-weight: 800;
    color: #005284;
    line-height: 1.14;
    margin: 0;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 14px rgba(255, 255, 255, 0.7);
}

.marg-cta-subtext {
    font-size: 1.04rem;
    line-height: 1.62;
    color: #1e293b;
    font-weight: 500;
    margin: 16px 0 28px 0;
    max-width: 620px;
    text-shadow: 0 1px 8px rgba(255, 255, 255, 0.6);
}

/* Action Buttons Cluster */
.marg-cta-actions-cluster {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.marg-cta-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #005284 0%, #0d699e 100%);
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 999px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 14px 32px rgba(0, 82, 132, 0.28),
        inset 0 1px 2px rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.marg-cta-btn-main:hover {
    background: linear-gradient(135deg, #0d699e 0%, #005284 100%);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 18px 42px rgba(0, 82, 132, 0.38),
        inset 0 1px 3px rgba(255, 255, 255, 0.6);
}

.marg-cta-btn-main .marg-btn-arrow {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.marg-cta-btn-main:hover .marg-btn-arrow {
    transform: translateX(4px);
}

.marg-select-wrapper {
    position: relative;
    width: 100%;
}

.marg-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23005284' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.marg-form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 42px;
    background: #ffffff;
}

/* MARG Modal Styles */
.marg-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.marg-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.marg-modal-card {
    background: #ffffff;
    border-radius: 28px;
    width: 100%;
    max-width: 540px;
    padding: 36px 40px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: translateY(20px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.marg-modal-overlay.active .marg-modal-card {
    transform: translateY(0) scale(1);
}

/* Responsiveness for MARG CTA */
@media (max-width: 1200px) {
    .marg-cta-master-card {
        flex-direction: column;
        min-height: auto;
        padding: 0;
    }

    .marg-cta-left-visual {
        position: relative;
        width: 100%;
        height: 280px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 55%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.95) 55%, rgba(0, 0, 0, 0) 100%);
    }

    .marg-cta-fade-mask {
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.6) 85%, rgba(255, 255, 255, 0.9) 100%);
    }

    .marg-cta-content-panel {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        padding: 24px 36px 44px 36px;
        align-items: center;
        text-align: center;
    }

    .marg-cta-actions-cluster {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .marg-cta-banner-section {
        padding: 40px 3% 55px 3%;
    }

    .marg-cta-master-card {
        border-radius: 26px;
    }

    .marg-cta-left-visual {
        height: 220px;
    }

    .marg-cta-content-panel {
        padding: 20px 20px 36px 20px;
    }

    .marg-cta-heading {
        font-size: 1.85rem;
    }

    .marg-cta-actions-cluster {
        flex-direction: column;
        width: 100%;
    }

    .marg-cta-btn-main {
        width: 100%;
        justify-content: center;
    }

    .marg-modal-card {
        padding: 28px 22px;
        border-radius: 22px;
    }
}

@media (max-width: 480px) {
    .marg-cta-heading {
        font-size: 1.6rem;
    }
    .marg-cta-subtext {
        font-size: 0.95rem;
    }
}


