:root {
    --clr-dark: #0f1f1c;
    --clr-dark-2: #173630;
    --clr-dark-3: #1e4a40;
    --clr-sage: #4d8c6a;
    --clr-accent: #7ecba1;
    --clr-bg: #F2FFF3;
    --clr-bg-2: #e8f7eb;
    --clr-bg-3: #daf0de;
    --clr-bg-4: #f9fffe;
    --clr-surface: #ffffff;
    --clr-text: #173630;
    --clr-text-2: #2d5045;
    --clr-text-muted: #5a7a70;
    --clr-text-faint: #8aaba3;
    --clr-on-dark: #F2FFF3;
    --clr-on-dark-2: rgba(242, 255, 243, 0.75);
    --clr-on-dark-3: rgba(242, 255, 243, 0.45);
    --ff-display: 'Fraunces', 'Palatino Linotype', serif;
    --ff-body: 'Roboto Slab', Georgia, serif;
    --space-lg: 48px;
    --space-xl: 80px;
    --nav-h: 80px;
    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-xl: 48px;
    --radius-full: 100px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-sm: 0 2px 12px rgba(23, 54, 48, 0.08);
    --shadow-md: 0 8px 32px rgba(23, 54, 48, 0.12);
    --shadow-lg: 0 20px 64px rgba(23, 54, 48, 0.16);
    --transition: 0.35s var(--ease-out);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--clr-text);
    background: var(--clr-bg);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--ff-display);
    font-weight: 500;
    line-height: 1.1;
    color: var(--clr-text);
}

h1 {
    font-size: clamp(40px, 5.5vw, 78px);
}

h2 {
    font-size: clamp(32px, 4vw, 60px);
}

h3 {
    font-size: clamp(20px, 2.2vw, 28px);
}

h4 {
    font-size: clamp(16px, 1.5vw, 20px);
}

h5 {
    font-size: clamp(14px, 1.2vw, 18px);
}

p {
    font-family: var(--ff-body);
    font-size: clamp(14px, 2vw, 17px);
    line-height: 1.75;
    color: var(--clr-text-2);
    font-weight: 400;
}

/* ══ PAGE ALERT ══ */
.page-alert {
    position: fixed;
    top: calc(var(--nav-h) + 12px);
    right: 20px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 14px;
    background: rgba(23, 54, 48, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(126, 203, 161, 0.35);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: alertSlideIn 0.5s var(--ease-out) forwards;
    max-width: 300px;
}

@keyframes alertSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.page-alert.hiding {
    animation: alertSlideOut 0.35s var(--ease-out) forwards;
}

@keyframes alertSlideOut {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(40px) scale(0.92);
    }
}

.page-alert-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(126, 203, 161, 0.2);
    animation: alertPulse 2s infinite;
}

@keyframes alertPulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(126, 203, 161, 0.2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(126, 203, 161, 0.08);
    }
}

.page-alert-text {
    font-family: var(--ff-body);
    font-size: 12px;
    font-weight: 500;
    color: var(--clr-on-dark);
    letter-spacing: .02em;
    flex: 1;
}

.page-alert-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: rgba(242, 255, 243, 0.08);
    border: 1px solid rgba(242, 255, 243, 0.12);
    border-radius: 6px;
    cursor: pointer;
    color: var(--clr-on-dark-2);
    font-size: 13px;
    transition: background .2s, color .2s, border-color .2s;
    line-height: 1;
}

.page-alert-close:hover {
    background: rgba(242, 255, 243, 0.15);
    border-color: rgba(242, 255, 243, 0.25);
    color: #fff;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    padding: 0 56px;
    background: rgba(242, 255, 243, 0.88);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(110, 175, 136, 0.15);
    transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.navbar.scrolled {
    background: rgba(242, 255, 243, 0.97);
    box-shadow: var(--shadow-sm);
}

.nav-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    width: 180px;
}

.nav-links {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    font-family: var(--ff-body);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--clr-text-2);
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.25s, background 0.25s;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--clr-dark-2);
    background: rgba(23, 54, 48, 0.06);
}

.nav-link i {
    font-size: 13px;
    opacity: 0.5;
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
    opacity: 0.8;
}

.dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px) scale(0.97);
    min-width: 220px;
    background: rgba(249, 255, 254, 0.98);
    backdrop-filter: blur(32px);
    border: 1px solid rgba(110, 175, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
    transform-origin: top center;
    box-shadow: var(--shadow-md);
}

.nav-item:hover .dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-text-faint);
    padding: 8px 12px 4px;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--clr-text-2);
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-link i {
    font-size: 14px;
    color: var(--clr-sage);
    width: 16px;
    text-align: center;
    transition: transform 0.25s var(--ease-out), color 0.2s;
}

.dropdown-link:hover {
    background: rgba(23, 54, 48, 0.06);
    color: var(--clr-dark-2);
    padding-left: 16px;
}

.dropdown-link:hover i {
    transform: translateX(2px);
}

.nav-cta-wrap {
    flex: 0 0 auto;
    margin-left: 16px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: linear-gradient(135deg, var(--clr-dark-2) 0%, var(--clr-dark-3) 100%);
    color: var(--clr-on-dark);
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: filter 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    will-change: transform;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.nav-cta:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(23, 54, 48, 0.3);
}

.nav-cta:hover::after {
    transform: translateX(100%);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    border-radius: var(--radius-sm);
    transition: background 0.2s;
    padding: 4px;
}

.hamburger:hover {
    background: rgba(23, 54, 48, 0.07);
}

.hamburger span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--clr-text);
    border-radius: 2px;
    transition: transform 0.35s var(--ease-out), opacity 0.35s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 28, 0.3);
    z-index: 890;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}

.mobile-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    bottom: 0;
    width: min(300px, 85vw);
    background: rgba(242, 255, 243, 0.98);
    backdrop-filter: blur(24px);
    border-right: 1px solid rgba(110, 175, 136, 0.18);
    padding: calc(var(--nav-h) + 20px) 24px 32px;
    transition: left 0.38s var(--ease-out);
    z-index: 900;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid rgba(23, 54, 48, 0.07);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 4px;
    font-size: 15px;
    font-weight: 400;
    color: var(--clr-text);
    background: none;
    border: none;
    font-family: var(--ff-body);
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown {
    display: none;
    padding: 4px 0 10px;
}

.mobile-dropdown.open {
    display: block;
}

.mobile-dropdown-link {
    display: block;
    padding: 9px 12px;
    font-size: 13px;
    color: var(--clr-text-2);
    border-radius: var(--radius-sm);
    transition: background 0.2s, color 0.2s;
}

.mobile-dropdown-link:hover {
    background: rgba(23, 54, 48, 0.06);
    color: var(--clr-dark-2);
}

.mobile-cta {
    display: block;
    margin-top: 24px;
    padding: 13px;
    text-align: center;
    background: linear-gradient(135deg, var(--clr-dark-2), var(--clr-dark-3));
    color: var(--clr-on-dark);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 14px;
    transition: filter 0.25s, transform 0.25s var(--ease-out);
}

.mobile-cta:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--clr-dark-2) 0%, var(--clr-dark-3) 100%);
    color: var(--clr-on-dark);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid rgba(242, 255, 243, 0.35);
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(23, 54, 48, 0.4);
    transition: transform 0.3s var(--ease-out), filter 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-out);
}

.btn-primary:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
    box-shadow: 0 10px 36px rgba(23, 54, 48, 0.45);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    color: rgba(242, 255, 243, 0.9);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    border-radius: var(--radius-full);
    border: 1px solid rgba(242, 255, 243, 0.2);
    background: rgba(242, 255, 243, 0.06);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease-out);
    will-change: transform;
}

.btn-ghost:hover {
    background: rgba(242, 255, 243, 0.12);
    border-color: rgba(242, 255, 243, 0.35);
    transform: translateY(-2px);
}

.btn-primary .icon-default,
.btn-ghost .icon-default,
.form-btn .icon-default {
    display: inline-block;
    transition: opacity 0.2s, transform 0.25s var(--ease-out);
}

.btn-primary .icon-hover,
.btn-ghost .icon-hover,
.form-btn .icon-hover {
    display: none;
    opacity: 0;
}

.btn-primary:hover .icon-default,
.btn-ghost:hover .icon-default,
.form-btn:hover .icon-default {
    display: none;
}

.btn-primary:hover .icon-hover,
.btn-ghost:hover .icon-hover,
.form-btn:hover .icon-hover {
    display: inline-block;
    opacity: 1;
}

/* ── SECTION TAG ── */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px 5px 9px;
    background: rgba(23, 54, 48, 0.07);
    border: 1px solid rgba(23, 54, 48, 0.12);
    border-radius: var(--radius-full);
    margin-bottom: 18px;
}

.section-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-sage);
}

.section-tag-text {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-sage);
}

.section-tag.light {
    background: rgba(242, 255, 243, 0.1);
    border-color: rgba(242, 255, 243, 0.15);
}

.section-tag.light .section-tag-dot {
    background: var(--clr-accent);
}

.section-tag.light .section-tag-text {
    color: var(--clr-on-dark-2);
}

/* ── CARD FILL HOVER (bottom-to-top dark fill) ── */
.card-fill {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.card-fill::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-dark-2);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: inherit;
    z-index: 0;
    will-change: transform;
}

.card-fill:hover::before {
    transform: scaleY(1);
}

.card-fill>* {
    position: relative;
    z-index: 1;
}

/* flip icon helper */
.card-icon-flipper {
    position: relative;
    width: 22px;
    height: 22px;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-out);
}

.card-icon-front,
.card-icon-back {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.card-icon-front i {
    font-size: 20px;
    color: var(--clr-accent);
}

.card-icon-back {
    transform: rotateY(180deg);
}

.card-icon-back i {
    font-size: 20px;
    color: var(--clr-accent);
}

/* ── ANIMATIONS ── */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(126, 203, 161, 0.25);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(126, 203, 161, 0.06);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(36px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.fade-up {
    opacity: 0;
    animation: fadeUp 0.9s var(--ease-out) forwards;
}

.fade-up.d1 {
    animation-delay: 0.1s;
}

.fade-up.d2 {
    animation-delay: 0.22s;
}

.fade-up.d3 {
    animation-delay: 0.34s;
}

.fade-up.d4 {
    animation-delay: 0.46s;
}

.fade-up.d5 {
    animation-delay: 0.58s;
}

.fade-up.d6 {
    animation-delay: 0.70s;
}

.reveal {
    opacity: 0;
}

.reveal.in-view {
    animation: revealUp 0.8s var(--ease-out) forwards;
}

/* ═══════════════════════════════════════════
       SECTION 1 — HERO (80vh)
    ═══════════════════════════════════════════ */
.hero {
    padding-top: var(--nav-h);
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/coll_page01.jpeg');
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    animation: heroParallax 18s ease-in-out infinite alternate;
}

@keyframes heroParallax {
    from {
        transform: scale(1.04) translateY(0);
    }

    to {
        transform: scale(1.08) translateY(-16px);
    }
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(3, 10, 8, 0.88) 0%, rgba(6, 19, 16, 0.82) 50%, rgba(5, 19, 16, 0.76) 100%);
}

.hero-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 20% 70%, rgba(126, 203, 161, 0.14) 0%, transparent 55%), radial-gradient(ellipse at 80% 20%, rgba(77, 140, 106, 0.09) 0%, transparent 45%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 10px;
    background: rgba(106, 175, 136, 0.15);
    border: 1px solid rgba(106, 175, 136, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.hero-eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(126, 203, 161, 0.25);
    animation: pulse 2.5s ease-in-out infinite;
}

.hero-eyebrow span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(242, 255, 243, 0.65);
}

.hero-headline {
    font-family: var(--ff-display);
    font-size: clamp(42px, 6vw, 86px);
    font-weight: 500;
    color: #fff;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
}

.hero-headline em {
    font-style: italic;
    color: var(--clr-accent);
}

.hero-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--clr-accent), transparent);
    margin: 0 auto 20px;
}

.hero-sub {
    font-size: clamp(15px, 1.8vw, 22px);
    color: var(--clr-on-dark-2);
    font-family: var(--ff-display);
    font-weight: 400;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
       INTRO STRIP
    ═══════════════════════════════════════════ */
.intro-strip {
    background: var(--clr-bg);
    padding: 30px 5px;
    border-bottom: 1px solid rgba(77, 140, 106, 0.15);
}

.intro-strip p {
    font-family: var(--ff-body);
    font-size: clamp(15px, 1.6vw, 22px);
    font-weight: 400;
    line-height: 1.75;
    color: var(--clr-on-dark-2);
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 1.2px;
    text-align: center;
    border: 2px solid var(--clr-dark);
    padding: 50px 30px;
    border-radius: 25px;
    background-color: var(--clr-dark);
}

/* ═══════════════════════════════════════════
       SECTION 2 — HOW WE PARTNER (UPDATED LAYOUT)
    ═══════════════════════════════════════════ */
.partner-section {
    padding: 100px 80px;
    background: var(--clr-bg-2);
}

.partner-inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading block — centred */
.partner-top {
    text-align: center;
    margin-bottom: 60px;
}

.partner-top h2 {
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.partner-top .partner-sub {
    font-size: clamp(18px, 2vw, 24px);
    font-family: var(--ff-display);
    font-weight: 500;
    color: var(--clr-sage);
    margin-bottom: 18px;
    font-style: italic;
}

/* Two-column body: left = text+strategic, right = list */
.partner-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.partner-body-left {}

.partner-body-left p {
    color: var(--clr-text-2);
    margin-bottom: 16px;
}

.partner-strategic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--clr-dark-2), var(--clr-dark-3));
    border-radius: var(--radius-lg);
}

.partner-strategic i {
    font-size: 17px;
    color: var(--clr-accent);
}

.partner-strategic p {
    font-size: 14px;
    font-weight: 500;
    color: var(--clr-on-dark);
    margin: 0;
    letter-spacing: 0.02em;
}

.partner-body-right h3 {
    font-size: clamp(17px, 1.8vw, 22px);
    color: var(--clr-dark);
    margin-bottom: 24px;
}

.partner-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: var(--clr-surface);
    border: 1px solid rgba(23, 54, 48, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.partner-list-item:hover {
    border-color: rgba(77, 140, 106, 0.3);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.partner-list-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
    margin-top: 7px;
}

.partner-list-item span {
    font-family: var(--ff-body);
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--clr-text-2);
    line-height: 1.6;
}

/* Cards grid stays below body columns, full width */
.partner-cards-section {
    margin-top: 60px;
}

.partner-cards-section h3 {
    font-size: clamp(17px, 1.8vw, 22px);
    color: var(--clr-dark);
    margin-bottom: 24px;
    text-align: center;
}

.partner-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partner-img-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    margin-top: 16px;
}

.partner-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.partner-img-card:hover img {
    transform: scale(1.05);
}

.p-card {
    background: var(--clr-surface);
    border: 1px solid rgba(23, 54, 48, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 22px;
    cursor: default;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.p-card:hover {
    border-color: rgba(126, 203, 161, 0.35);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 56px rgba(23, 54, 48, 0.22);
}

.p-card-icon {
    width: 44px;
    height: 44px;
    background: var(--clr-bg-3);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 1px solid rgba(23, 54, 48, 0.1);
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
    perspective: 400px;
}

.p-card:hover .p-card-icon {
    background: rgba(126, 203, 161, 0.15);
    border-color: rgba(126, 203, 161, 0.4);
    transform: scale(1.08);
}

.p-card:hover .card-icon-flipper {
    transform: rotateY(180deg);
}

.p-card h4 {
    font-family: var(--ff-display);
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 500;
    color: var(--clr-dark-2);
    margin-bottom: 8px;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-card p {
    font-size: 13px;
    color: var(--clr-text-muted);
    line-height: 1.65;
    transition: color 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.p-card:hover h4 {
    color: #fff;
}

.p-card:hover p {
    color: rgba(242, 255, 243, 0.65);
}

/* ═══════════════════════════════════════════
       SECTION 3 — COLLABORATION MODELS
    ═══════════════════════════════════════════ */
.models-section {
    padding: 100px 80px;
    background: var(--clr-dark-2);
    position: relative;
    overflow: hidden;
}

.models-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 30%, rgba(126, 203, 161, 0.07) 0%, transparent 60%);
    pointer-events: none;
}

.models-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.models-header {
    text-align: center;
    margin-bottom: 56px;
}

.models-header h2 {
    color: var(--clr-on-dark);
    margin-bottom: 8px;
}

.models-strategic {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    padding: 12px 24px;
    background: rgba(126, 203, 161, 0.08);
    border: 1px solid rgba(126, 203, 161, 0.2);
    border-radius: var(--radius-lg);
}

.models-strategic p {
    font-size: 13px;
    font-style: italic;
    color: var(--clr-on-dark-2);
    margin: 0;
}

.models-grid-row1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.models-grid-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.model-card {
    background: var(--clr-bg-2);
    border: 1px solid rgba(242, 255, 243, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px 26px;
    cursor: default;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.model-card:hover {
    border-color: rgba(126, 203, 161, 0.35);
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.3);
}

.model-card-icon {
    width: 44px;
    height: 44px;
    background: var(--clr-dark-2);
    border: 1px solid rgba(126, 203, 161, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
    perspective: 400px;
}

.model-card:hover .model-card-icon {
    background: rgba(126, 203, 161, 0.18);
    border-color: rgba(126, 203, 161, 0.4);
    transform: scale(1.08);
}

.model-card:hover .card-icon-flipper {
    transform: rotateY(180deg);
}

.model-card h4 {
    font-family: var(--ff-display);
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 500;
    color: var(--clr-dark-2);
    margin-bottom: 10px;
    transition: color 0.5s;
}

.model-card p {
    font-size: 13px;
    color: var(--clr-dark-2);
    line-height: 1.65;
    transition: color 0.5s;
}

.model-card:hover h4 {
    color: #fff;
}

.model-card:hover p {
    color: rgba(242, 255, 243, 0.65);
}

/* ═══════════════════════════════════════════
       SECTION 4 — WHO WE ENGAGE WITH
    ═══════════════════════════════════════════ */
.who-section {
    padding: 100px 80px;
    background: var(--clr-bg-2);
}

.who-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.who-top {
    text-align: center;
    margin-bottom: 52px;
}

.who-top h2 {
    color: var(--clr-dark);
    margin-bottom: 8px;
}

.who-top .who-sub {
    font-size: clamp(17px, 1.8vw, 22px);
    font-family: var(--ff-display);
    font-style: italic;
    color: var(--clr-sage);
    margin-bottom: 14px;
}

.who-top p {
    color: var(--clr-text-2);
    max-width: 900px;
    margin: 0 auto;
}

.who-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.who-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: var(--clr-surface);
    border: 1px solid rgba(23, 54, 48, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.who-list-item:hover {
    border-color: rgba(77, 140, 106, 0.3);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.who-list-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
    margin-top: 7px;
}

.who-list-item span {
    font-family: var(--ff-body);
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--clr-text-2);
    line-height: 1.6;
}

.who-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 440px;
}

.who-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.who-img:hover img {
    transform: scale(1.04);
}

/* ═══════════════════════════════════════════
       SECTION 5 — WHAT WE BRING (UPDATED LAYOUT)
       Core Strengths LEFT, Image RIGHT
    ═══════════════════════════════════════════ */
.bring-section {
    padding: 100px 80px;
    background: var(--clr-dark);
    position: relative;
    overflow: hidden;
}

.bring-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(126, 203, 161, 0.06) 0%, transparent 55%);
    pointer-events: none;
}

.bring-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.bring-top {
    text-align: center;
    margin-bottom: 56px;
}

.bring-top h2 {
    color: var(--clr-on-dark);
    margin-bottom: 10px;
}

/* Updated: strengths left, image right */
.bring-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.bring-left h3 {
    font-size: clamp(16px, 1.6vw, 20px);
    color: var(--clr-on-dark);
    margin-bottom: 22px;
}

.bring-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bring-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(242, 255, 243, 0.04);
    border: 1px solid rgba(242, 255, 243, 0.07);
    border-radius: var(--radius-md);
    transition: border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
}

.bring-list-item:hover {
    border-color: rgba(126, 203, 161, 0.25);
    transform: translateX(5px);
    background: rgba(242, 255, 243, 0.06);
}

.bring-list-dot {
    width: 8px;
    height: 8px;
    min-width: 8px;
    border-radius: 50%;
    background: var(--clr-accent);
    margin-top: 7px;
}

.bring-list-item span {
    font-family: var(--ff-body);
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--clr-on-dark-2);
    line-height: 1.6;
}

.bring-strategic {
    margin-top: 28px;
    padding: 16px 22px;
    background: rgba(126, 203, 161, 0.08);
    border: 1px solid rgba(126, 203, 161, 0.2);
    border-radius: var(--radius-md);
}

.bring-strategic p {
    font-size: clamp(13px, 1.2vw, 15px);
    color: var(--clr-on-dark-2);
    font-style: italic;
    margin: 0;
}

.bring-strategic em {
    color: var(--clr-accent);
    font-style: normal;
}

.bring-img-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 520px;
    position: sticky;
    margin-top:50px;
}

.bring-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.7s var(--ease-out), opacity 0.4s;
}

.bring-img-wrap:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

/* ═══════════════════════════════════════════
       SECTION 6 — STRATEGIC FOCUS AREAS
    ═══════════════════════════════════════════ */
.focus-section {
    padding: 100px 80px;
    background: var(--clr-bg-3);
}

.focus-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.focus-top {
    text-align: center;
    margin-bottom: 52px;
}

.focus-top h2 {
    color: var(--clr-dark);
    margin-bottom: 10px;
}

.focus-top p {
    color: var(--clr-text-2);
    max-width: 680px;
    margin: 0 auto;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.focus-card {
    padding: 28px 22px;
    background: var(--clr-dark-2);
    border: 1px solid rgba(242, 255, 243, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    cursor: default;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: border-color 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    backface-visibility: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-bg-4);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: inherit;
    z-index: 0;
}

.focus-card:hover::before {
    transform: scaleY(1);
}

.focus-card>* {
    position: relative;
    z-index: 1;
}

.focus-card:hover {
    border-color: rgba(77, 140, 106, 0.35);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 14px 40px rgba(23, 54, 48, 0.22);
}

.focus-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(126, 203, 161, 0.1);
    border: 1px solid rgba(126, 203, 161, 0.18);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
    perspective: 400px;
}

.focus-card:hover .focus-card-icon {
    background: var(--clr-bg-3);
    border-color: rgba(23, 54, 48, 0.15);
    transform: scale(1.1);
}

.focus-card:hover .card-icon-flipper {
    transform: rotateY(180deg);
}

.focus-card-icon .card-icon-front i {
    color: var(--clr-accent);
}

.focus-card:hover .focus-card-icon .card-icon-front i {
    color: var(--clr-sage);
}

.focus-card span {
    font-size: clamp(13px, 1.2vw, 15px);
    font-weight: 400;
    color: var(--clr-on-dark-2);
    line-height: 1.5;
    transition: color 0.45s;
}

.focus-card:hover span {
    color: var(--clr-text-2);
}

/* ═══════════════════════════════════════════
       SECTION 7 — BIOPROSPECTING OPPORTUNITY
    ═══════════════════════════════════════════ */
.opp-section {
    padding: 100px 80px;
    background: var(--clr-dark-2);
    position: relative;
    overflow: hidden;
}

.opp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(126, 203, 161, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.opp-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.opp-header {
    text-align: center;
    margin-bottom: 56px;
}

.opp-header h2 {
    color: var(--clr-on-dark);
    margin-bottom: 8px;
}

.opp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.opp-left p {
    color: var(--clr-on-dark-2);
    margin-bottom: 14px;
}

.opp-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 13px 5px 9px;
    background: rgba(126, 203, 161, 0.12);
    border: 1px solid rgba(126, 203, 161, 0.25);
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.opp-tag span {
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--clr-accent);
}

.opp-tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--clr-accent);
    animation: pulse 2s ease-in-out infinite;
}

.opp-strategic {
    margin-top: 8px;
    margin-bottom: 28px;
    padding: 14px 20px;
    background: rgba(126, 203, 161, 0.08);
    border: 1px solid rgba(126, 203, 161, 0.18);
    border-radius: var(--radius-md);
}

.opp-strategic p {
    font-size: 13px;
    color: var(--clr-on-dark-2);
    font-style: italic;
    margin: 0;
}

.opp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.opp-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    width: 540px;
}

.opp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.7s var(--ease-out), opacity 0.4s;
}

.opp-img:hover img {
    transform: scale(1.04);
    opacity: 0.95;
}

/* ═══════════════════════════════════════════
       SECTION 8 — START A COLLABORATION (UPDATED)
       Text LEFT, Form RIGHT
    ═══════════════════════════════════════════ */
.contact-section {
    padding: 100px 80px;
    background: var(--clr-bg-2);
}

.contact-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* text on left */
.contact-left {
    padding-top: 8px;
}

.contact-left h2 {
    color: var(--clr-dark);
    margin-bottom: 18px;
}

.contact-left>p {
    margin-bottom: 16px;
    max-width: 460px;
}

/* form on right */
.contact-form {
    background: var(--clr-surface);
    border: 1px solid rgba(23, 54, 48, 0.1);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.4s;
}

.contact-form:focus-within {
    box-shadow: 0 16px 56px rgba(23, 54, 48, 0.16);
}

.form-title {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 500;
    color: var(--clr-dark);
    margin-bottom: 6px;
}

.form-sub {
    font-size: 13px;
    color: var(--clr-text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(23, 54, 48, 0.15);
    border-radius: var(--radius-md);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--clr-text);
    background: var(--clr-bg);
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--clr-sage);
    box-shadow: 0 0 0 3px rgba(77, 140, 106, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #e05e5e;
    box-shadow: 0 0 0 3px rgba(224, 94, 94, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.form-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: linear-gradient(135deg, var(--clr-dark-2), var(--clr-dark-3));
    color: var(--clr-on-dark);
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: filter 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.form-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.22), transparent);
    transform: translateX(-100%);
    transition: transform 0.55s var(--ease-out);
}

.form-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(23, 54, 48, 0.35);
}

.form-btn:hover::after {
    transform: translateX(100%);
}

.form-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ═══════════════════════════════════════════
       SECTION 9 — FINAL POSITIONING BLOCK (UPDATED)
       Background image with overlay
    ═══════════════════════════════════════════ */
.final-section {
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.final-section-bg {
    position: absolute;
    inset: 0;
    /* background-image: url('https://images.unsplash.com/photo-1576086213369-97a306d36557?w=1800&q=85'); */
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
}

.final-section-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgb(3, 10, 8) 0%, rgba(15, 31, 28, 0.88) 50%, rgba(23, 54, 48, 0.85) 100%);
}

.final-section-ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    /* background: radial-gradient(ellipse at 30% 60%, rgba(126, 203, 161, 0.12) 0%, transparent 55%), radial-gradient(ellipse at 75% 25%, rgba(77, 140, 106, 0.08) 0%, transparent 50%); */
}

.final-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-inner h2 {
    color: var(--clr-on-dark);
    margin-bottom: 22px;
}

.final-inner p {
    color: var(--clr-on-dark-2);
    max-width: 700px;
    margin: 0 auto 18px;
}

.final-closing {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 28px 0;
    padding: 12px 24px;
    background: rgba(126, 203, 161, 0.08);
    border: 1px solid rgba(126, 203, 161, 0.2);
    border-radius: var(--radius-full);
}

.final-closing i {
    font-size: 16px;
    color: var(--clr-accent);
}

.final-closing span {
    font-size: 13px;
    color: var(--clr-on-dark-2);
    font-style: italic;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

/* ═══════════════════════ FOOTER ═══════════════════════ */
footer {
    background: var(--clr-dark);
    color: var(--clr-on-dark);
    padding: 64px 80px 36px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: 'MOLMET';
    position: absolute;
    bottom: -12px;
    right: -4px;
    font-family: var(--ff-display);
    font-size: 170px;
    font-weight: 600;
    color: rgba(242, 255, 243, 0.022);
    line-height: 1;
    pointer-events: none;
    letter-spacing: -.04em;
}

.footer-top {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr 2fr 3fr;
    gap: 48px;
    margin-bottom: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(242, 255, 243, 0.07);
}

.footer-brand h3 {
    font-family: var(--ff-display);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--clr-on-dark);
    margin-bottom: 14px;
}

.footer-brand h3 em {
    color: var(--clr-accent);
}

.footer-brand p {
    font-family: var(--ff-body);
    font-size: 13px;
    line-height: 1.72;
    color: var(--clr-on-dark-3);
    max-width: 260px;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(242, 255, 243, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-on-dark-3);
    font-size: 17px;
    font-weight: 600;
    transition: border-color .25s, color .25s, background .25s;
}

.footer-socials a:hover {
    border-color: var(--clr-accent);
    color: var(--clr-accent);
    background: rgba(126, 203, 161, 0.08);
}

.footer-col h5 {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clr-on-dark-3);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(242, 255, 243, 0.07);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-family: var(--ff-body);
    font-size: 13.5px;
    font-weight: 300;
    color: rgba(242, 255, 243, 0.5);
    transition: color .22s, padding-left .22s;
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--clr-on-dark);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    font-family: var(--ff-body);
    font-size: 11.5px;
    color: rgba(242, 255, 243, 0.35);
    letter-spacing: .06em;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-family: var(--ff-body);
    font-size: 11.5px;
    color: rgba(242, 255, 243, 0.35);
    transition: color .22s;
}

.footer-bottom-links a:hover {
    color: var(--clr-on-dark);
}

.footer-address {
    margin-top: 20px;
}

.footer-address h5 {
    font-family: var(--ff-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--clr-on-dark-3);
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(242, 255, 243, 0.07);
}

.footer-address-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-address-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address-item i {
    font-size: 14px;
    color: var(--clr-accent);
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-address-item span,
.footer-address-item a {
    font-size: 12.5px;
    font-weight: 300;
    color: rgba(242, 255, 243, 0.5);
    line-height: 1.65;
    transition: color 0.22s;
}

.footer-address-item a:hover {
    color: var(--clr-on-dark);
}


/* ── RESPONSIVE ── */
@media(max-width:1100px) {
    .partner-body {
        grid-template-columns: 1fr;
    }

    .partner-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .who-layout {
        grid-template-columns: 1fr;
    }

    .who-img {
        height: 300px;
    }

    .bring-layout {
        grid-template-columns: 1fr;
    }

    .bring-img-wrap {
        position: relative;
        top: 0;
        height: 300px;
    }

    .opp-layout {
        grid-template-columns: 1fr;
    }

    .opp-img {
        height: 300px;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:900px) {

    .partner-section,
    .who-section,
    .bring-section,
    .focus-section,
    .opp-section,
    .contact-section,
    .final-section,
    .models-section {
        padding-left: 32px;
        padding-right: 32px;
    }

    .models-grid-row1 {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links,
    .nav-cta-wrap {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .partner-cards-grid {
        grid-template-columns: 1fr;
    }

    .models-grid-row1 {
        grid-template-columns: 1fr;
    }

    .models-grid-row2 {
        grid-template-columns: 1fr;
    }

    .focus-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    footer {
        padding: 48px 24px 28px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .partner-section,
    .who-section,
    .bring-section,
    .focus-section,
    .opp-section,
    .contact-section,
    .final-section,
    .models-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-inner {
        padding: 0 24px;
    }
}

@media(max-width:480px) {
    .focus-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        justify-content: center;
    }
}

@media(hover:none) {

    .p-card:hover,
    .model-card:hover,
    .focus-card:hover,
    .btn-primary:hover,
    .btn-ghost:hover,
    .form-btn:hover {
        transform: none;
    }
}