/* =========================================================
   INVORA HERO - YOUTUBE VIDEO BACKGROUND
   Bootstrap 5 + Custom CSS
========================================================= */

:root {
    --yellow: #ffd638;
    --yellow-dark: #f6c91e;
    --dark: #10151d;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.78);
    --nav-bg: rgba(20, 25, 31, 0.42);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

body {
    background: var(--dark);
}

/* =========================================
   HERO BASE
========================================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    height: 900px;
    overflow: hidden;
    color: #fff;
    background: #11161d;
    isolation: isolate;
}

/* YouTube iframe wrapper */
.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #11161d;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
}

/* Dark cinematic layer over video */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg,
            rgba(5, 9, 14, .88) 0%,
            rgba(5, 9, 14, .62) 38%,
            rgba(5, 9, 14, .38) 72%,
            rgba(5, 9, 14, .54) 100%),
        linear-gradient(180deg,
            rgba(0, 0, 0, .42) 0%,
            rgba(0, 0, 0, .12) 38%,
            rgba(0, 0, 0, .62) 100%);
}

/* subtle premium grid */
.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .075;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 88%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100%;
    max-width: 1240px;
}

/* =========================================
   HEADER / NAVIGATION
========================================= */

.hero-header {
    height: 105px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

.brand-logo {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 43px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -3px;
    text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.logo-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--yellow);
    border-radius: 50%;
    top: -2px;
    left: 7px;
    box-shadow: 0 0 18px rgba(255,214,56,.45);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 5px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 40px;
    background: rgba(17, 22, 28, .40);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 12px 35px rgba(0,0,0,.14);
}

.main-nav a {
    color: rgba(255,255,255,.92);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 11px 18px;
    border-radius: 30px;
    white-space: nowrap;
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #171b21;
    background: #fff;
}

.main-nav .plus {
    font-size: 19px;
    line-height: 0;
    margin-left: 3px;
}

.quote-btn {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,.75);
    padding: 13px 20px;
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: .25s ease;
}

.quote-btn:hover {
    color: #171b21;
    background: #fff;
}

/* =========================================
   HERO CONTENT
========================================= */

.hero-content {
    position: relative;
    height: calc(100% - 105px);
}

.hero-left {
    position: absolute;
    left: 0;
    top: 150px;
    z-index: 5;
    max-width: 720px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 4px 14px 4px 5px;
    border: 1px solid rgba(255,255,255,.32);
    background: rgba(255,255,255,.08);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .2px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.badge-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    color: #242424;
    background: var(--yellow);
    border-radius: 50%;
    font-size: 10px;
}

.hero-left h1 {
    margin: 23px 0 0;
    max-width: 760px;
    font-size: clamp(58px, 6vw, 86px);
    line-height: 1.01;
    font-weight: 700;
    letter-spacing: -4.2px;
    text-wrap: balance;
    text-shadow: 0 5px 30px rgba(0,0,0,.28);
}

.hero-left h1 span {
    color: var(--yellow);
    font-style: italic;
    font-weight: 800;
}

.hero-subtitle {
    max-width: 570px;
    margin: 27px 0 0;
    color: rgba(255,255,255,.80);
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

/* =========================================
   HERO CTA
========================================= */

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 31px;
}

.pitch-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    padding: 0 29px 0 31px;
    color: #171a1f;
    background: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .3px;
    box-shadow:
        0 0 0 7px rgba(255,214,56,.08),
        0 16px 45px rgba(255,214,56,.25);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.pitch-btn::after {
    content: "↗";
    margin-left: 18px;
    font-size: 21px;
    line-height: 1;
}

.pitch-btn:hover {
    color: #171a1f;
    background: #fff;
    border-color: #fff;
    transform: translateY(-4px);
    box-shadow:
        0 0 0 8px rgba(255,255,255,.08),
        0 20px 55px rgba(0,0,0,.28);
}

.explore-link {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 21px;
    color: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 12px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: .25s ease;
}

.explore-link:hover {
    color: #171a1f;
    background: #fff;
    border-color: #fff;
}

/* =========================================
   RIGHT INFO
========================================= */

.hero-right {
    position: absolute;
    z-index: 6;
    right: 0;
    bottom: 74px;
    width: 350px;
    padding: 22px 22px 24px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 20px;
    background: rgba(10,15,21,.38);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.people-row {
    display: flex;
    align-items: center;
    margin-bottom: 17px;
}

.avatars {
    display: flex;
    align-items: center;
    margin-right: 12px;
}

.avatar {
    width: 43px;
    height: 43px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.9);
    margin-left: -8px;
    background: #eee;
}

.avatar:first-child {
    margin-left: 0;
}

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

.avatar-plus {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20252a;
    background: var(--yellow);
    border-color: var(--yellow);
    font-size: 25px;
    font-weight: 400;
    line-height: 1;
}

.people-count {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.people-count strong {
    font-size: 24px;
    font-weight: 700;
}

.people-count small {
    margin-top: 5px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 500;
}

.hero-right p {
    margin: 0;
    color: rgba(255,255,255,.80);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 400;
}

/* =========================================
   BOTTOM STATS
========================================= */

.hero-stats {
    position: absolute;
    left: 0;
    bottom: 72px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 34px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 700;
}

.hero-stat span {
    margin-top: 7px;
    color: rgba(255,255,255,.60);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.hero-stat-divider {
    width: 1px;
    height: 37px;
    background: rgba(255,255,255,.22);
}

/* =========================================
   PLAY BUTTON
========================================= */

.play-btn {
    position: absolute;
    right: 0;
    bottom: 72px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1f252d;
    background: rgba(255,214,56,.95);
    border-radius: 50%;
    text-decoration: none;
    font-size: 16px;
    padding-left: 3px;
    transition: .25s ease;
    z-index: 8;
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.play-btn:hover {
    color: #1f252d;
    background: #fff;
    transform: scale(1.06);
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu-btn {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mobile-nav {
    width: 310px;
}

.mobile-nav .brand-logo {
    color: #222;
}

.mobile-nav .logo-dot {
    background: var(--yellow);
}

.mobile-nav .offcanvas-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav .offcanvas-body > a {
    color: #222;
    text-decoration: none;
    padding: 13px 5px;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid #eee;
}

.mobile-nav .mobile-quote {
    margin-top: 15px;
    text-align: center;
    border: 0 !important;
    border-radius: 12px;
    background: var(--yellow);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {
    .hero-container {
        max-width: 960px;
    }

    .hero-left h1 {
        font-size: 66px;
    }

    .hero-right {
        width: 315px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 900px;
        height: auto;
    }

    .hero-container {
        max-width: 720px;
    }

    .main-nav,
    .quote-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-header {
        height: 85px;
    }

    .hero-content {
        min-height: 815px;
        height: auto;
    }

    .hero-left {
        top: 70px;
        left: 0;
        max-width: 650px;
    }

    .hero-left h1 {
        font-size: 58px;
    }

    .hero-subtitle {
        max-width: 500px;
    }

    .hero-right {
        right: 0;
        bottom: 42px;
        width: 310px;
    }

    .hero-stats {
        bottom: 45px;
    }

    .play-btn {
        display: none;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
    .hero-section {
        min-height: 850px;
    }

    .hero-container {
        max-width: 100%;
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero-header {
        height: 78px;
    }

    .brand-logo {
        font-size: 37px;
    }

    .hero-content {
        min-height: 772px;
    }

    .hero-left {
        top: 45px;
        left: 22px;
        right: 22px;
        max-width: none;
    }

    .trust-badge {
        font-size: 10px;
    }

    .hero-left h1 {
        max-width: 100%;
        font-size: clamp(42px, 11.5vw, 58px);
        line-height: 1.03;
        letter-spacing: -2.5px;
        margin-top: 18px;
    }

    .hero-subtitle {
        margin-top: 18px;
        max-width: 410px;
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 23px;
        flex-wrap: wrap;
    }

    .pitch-btn {
        min-height: 54px;
        padding: 0 21px;
        font-size: 12px;
        border-radius: 12px;
    }

    .pitch-btn::after {
        margin-left: 13px;
        font-size: 18px;
    }

    .explore-link {
        min-height: 50px;
        font-size: 11px;
    }

    .hero-right {
        left: 22px;
        right: 22px;
        bottom: 24px;
        width: auto;
        padding: 14px 16px;
        border-radius: 16px;
    }

    .hero-right p {
        font-size: 12px;
        line-height: 1.5;
    }

    .people-row {
        margin-bottom: 9px;
    }

    .avatar {
        width: 35px;
        height: 35px;
    }

    .people-count strong {
        font-size: 19px;
    }

    .people-count small {
        font-size: 10px;
    }

    .hero-stats {
        left: 22px;
        right: 22px;
        bottom: 145px;
        gap: 18px;
    }

    .hero-stat strong {
        font-size: 19px;
    }

    .hero-stat span {
        font-size: 9px;
    }

    .hero-stat-divider {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 820px;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .hero-actions {
        gap: 10px;
    }

    .pitch-btn {
        width: 100%;
    }

    .explore-link {
        display: none;
    }

    .hero-stats {
        bottom: 150px;
        gap: 13px;
    }

    .hero-stat strong {
        font-size: 17px;
    }

    .hero-stat span {
        font-size: 8px;
        letter-spacing: .3px;
    }

    .hero-right {
        bottom: 20px;
    }

    .hero-right p {
        font-size: 11px;
    }
}

/* =========================================
   INVESTMENT BENTO SECTION
========================================= */

.investment-bento {
    background: #10192c;
    padding: 70px 0;
    overflow: hidden;
}

.bento-grid {
    max-width: 1220px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.08fr
        1.08fr
        1.08fr;

    grid-template-rows:
        380px
        398px;

    gap: 20px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    color: #071a39;
    border-radius: 24px;
}


/* =========================================
   CARD 1
========================================= */

.card-partner {
    padding: 27px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-partner h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
    font-weight: 700;
}

.partner-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.partner-avatar {
    width: 70px;
    height: 70px;
    border: 3px solid #f9d126;
    border-radius: 50%;
    padding: 2px;
    overflow: hidden;
}

.partner-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.partner-profile strong {
    display: block;
    font-size: 16px;
    line-height: 1.2;
}

.partner-profile span {
    display: block;
    margin-top: 3px;
    color: #65718a;
    font-size: 15px;
}


/* =========================================
   CARD 2
========================================= */

.card-assets {
    padding: 27px 30px;
}

.card-assets h3 {
    margin: 0;
    font-size: 31px;
    line-height: 1;
    font-weight: 700;
}

.card-assets p {
    margin: 8px 0 0;
    color: #61708a;
    font-size: 15px;
}

.asset-ring {
    position: absolute;
    width: 330px;
    height: 330px;
    left: 50%;
    bottom: -48px;
    transform: translateX(-50%);
}

.ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;

    background: repeating-conic-gradient(
        from 270deg,
        #101010 0deg 8deg,
        transparent 8deg 14deg
    );

    mask-image: radial-gradient(
        transparent 0 47%,
        #000 48% 55%,
        transparent 56%
    );

    -webkit-mask-image: radial-gradient(
        transparent 0 47%,
        #000 48% 55%,
        transparent 56%
    );
}

.ring-1 {
    transform: rotate(-5deg);
}

.ring-2 {
    transform: rotate(15deg);
    opacity: .55;
}

.ring-3 {
    transform: rotate(35deg);
    opacity: .18;
}

.asset-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -20%);

    text-align: center;
    white-space: nowrap;
}

.asset-center strong {
    display: block;
    font-size: 31px;
    line-height: 1;
}

.asset-center span {
    display: block;
    margin-top: 8px;
    color: #65718a;
    font-size: 15px;
}


/* =========================================
   CARD 3
========================================= */

.card-deployed {
    padding: 27px 30px 0;
}

.deployed-top {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.deployed-top h2 {
    margin: 0;
    font-size: 27px;
    line-height: 1.12;
    letter-spacing: -.8px;
}

.deployed-top a {
    flex-shrink: 0;
    color: #071a39;
    text-decoration: none;
    border-bottom: 1px solid #071a39;
    height: fit-content;
    padding-bottom: 7px;

    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.deployed-top a span {
    margin-left: 5px;
}

.building-image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 73%;
    text-align: center;
}

.building-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;

    mix-blend-mode: multiply;
}


/* =========================================
   CARD 4 - PROCESS
========================================= */

.card-process {
    grid-column: span 2;
    padding: 28px 30px;

    display: grid;
    grid-template-columns: 290px 1fr;
    grid-template-rows: 1fr auto;
    column-gap: 38px;
}

.process-title h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1px;
}

.process-content {
    min-width: 0;
}

.process-heading h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
}

.process-heading span {
    display: block;
    margin-top: 5px;
    color: #64728a;
    font-size: 15px;
}

.timeline {
    height: 250px;
    margin-top: 15px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.timeline-column {
    position: relative;
    border-left: 2px dotted #d3d5d8;
}

.timeline-column:last-child {
    border-right: 2px dotted #d3d5d8;
}

.timeline-line {
    position: absolute;
    top: 0;
    left: 0;
}

.timeline-step {
    position: absolute;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 35px;
    text-align: center;

    font-size: 14px;
    font-weight: 600;
}

.pitch {
    top: 20px;
    background: #eeeeee;
}

.diligence {
    top: 70px;
    min-height: 57px;
    background: #dddddd;
}

.investment {
    top: 150px;
    background: #646464;
    color: #fff;
}

.growth {
    top: 200px;
    background: #10192c;
    color: #fff;
}

.process-description {
    grid-column: 1;
    grid-row: 2;

    max-width: 285px;
    margin: 10px 0 0;

    color: #62718a;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================
   CARD 5
========================================= */

.card-value {
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.satisfaction {
    height: 31px;
    border-radius: 10px;
    background: #e5e5e5;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 13px;

    font-size: 13px;
}

.satisfaction strong {
    font-weight: 500;
}

.value-content {
    margin-top: auto;
}

.value-content h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1;
    letter-spacing: -2px;
}

.value-content h4 {
    margin: 8px 0 20px;

    font-size: 15px;
    font-style: italic;
    font-weight: 700;
}

.value-content p {
    max-width: 330px;
    margin: 0;

    color: #62718a;
    font-size: 15px;
    line-height: 1.55;
}


/* =========================================
   HOVER
========================================= */

.bento-card {
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.bento-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .card-process {
        grid-column: span 2;
    }

    .card-deployed {
        min-height: 380px;
    }

    .card-value {
        min-height: 380px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .investment-bento {
        padding: 40px 0;
    }

    .bento-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        min-height: 350px;
        border-radius: 20px;
    }

    .card-process {
        grid-column: span 1;

        display: block;
        padding: 25px;
        min-height: 620px;
    }

    .process-title h2 {
        font-size: 27px;
    }

    .process-content {
        margin-top: 35px;
    }

    .timeline {
        height: 240px;
    }

    .process-description {
        margin-top: 25px;
        max-width: 100%;
    }

    .deployed-top h2 {
        font-size: 24px;
    }

    .card-partner h2 {
        font-size: 27px;
    }

    .asset-ring {
        width: 300px;
        height: 300px;
    }
}

/* =========================================
   INVESTMENT FOCUS
========================================= */

.investment-focus-section {
    background: #10192c;
    padding: 95px 0 80px;
    color: #fff;
    overflow: hidden;
}

.focus-header {
    max-width: 1200px;
    margin: 0 auto;
}


/* Badge */

.focus-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 4px 14px 4px 5px;

    border: 1px solid rgba(255,255,255,.45);
    border-radius: 30px;

    background: rgba(255,255,255,.10);

    color: #fff;

    font-size: 13px;
    font-weight: 600;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.focus-badge span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffd638;
    color: #202633;

    font-size: 11px;
}


/* Heading */

.focus-header h2 {
    margin: 27px auto 0;

    max-width: 1160px;

    font-size: 58px;
    line-height: 1.08;

    font-weight: 700;
    letter-spacing: -2.8px;

    color: #fff;
}

.focus-header h2 em {
    color: #ffd638;
    font-style: italic;
    font-weight: 800;
}


/* =========================================
   CIRCLES
========================================= */

.focus-areas {
    max-width: 1220px;
    margin: 65px auto 0;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.focus-item {
    position: relative;

    width: 236px;
    height: 330px;

    display: flex;
    justify-content: center;
}


/* Circle */

.focus-circle {
    width: 236px;
    height: 236px;

    border-radius: 50%;

    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    color: #071a39;

    font-size: 25px;
    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1px;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}


/* Alternating positioning */

.item-1 {
    padding-top: 95px;
}

.item-2 {
    padding-top: 0;
}

.item-3 {
    padding-top: 95px;
}

.item-4 {
    padding-top: 0;
}

.item-5 {
    padding-top: 95px;
}


/* Hover */

.focus-circle:hover {
    transform: translateY(-8px) scale(1.025);

    box-shadow:
        0 20px 50px rgba(0,0,0,.22);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .focus-header h2 {
        font-size: 48px;
    }

    .focus-areas {
        max-width: 1000px;
    }

    .focus-item,
    .focus-circle {
        width: 190px;
    }

    .focus-circle {
        height: 190px;
        font-size: 20px;
    }

}


/* =========================================
   TABLET / SMALL LAPTOP
========================================= */

@media (max-width: 991px) {

    .investment-focus-section {
        padding: 80px 0;
    }

    .focus-header h2 {
        font-size: 40px;
        letter-spacing: -1.8px;
    }

    .focus-areas {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        max-width: 700px;
    }

    .focus-item {
        width: 210px;
        height: 240px;
        padding-top: 0 !important;
    }

    .focus-circle {
        width: 210px;
        height: 210px;
    }

    .item-2,
    .item-4 {
        margin-top: 55px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .investment-focus-section {
        padding: 65px 0 60px;
    }

    .focus-header h2 {
        margin-top: 22px;

        font-size: 32px;
        line-height: 1.12;

        letter-spacing: -1.2px;
    }

    .focus-header h2 br {
        display: none;
    }

    .focus-header h2 em {
        display: block;
        margin-top: 5px;
    }

    .focus-areas {
        margin-top: 45px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .focus-item {
        width: 100%;
        height: auto;

        padding: 0 !important;

        display: flex;
        justify-content: center;
    }

    .focus-circle {
        width: min(42vw, 190px);
        height: min(42vw, 190px);

        font-size: 18px;
    }

    .item-2,
    .item-4 {
        margin-top: 45px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .investment-focus-section {
        padding-top: 55px;
    }

    .focus-badge {
        font-size: 11px;
    }

    .focus-header h2 {
        font-size: 27px;
    }

    .focus-areas {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .focus-item,
    .item-2,
    .item-4 {
        margin-top: 0;
    }

    .focus-circle {
        width: 190px;
        height: 190px;
        font-size: 19px;
    }

}


/* =========================================
   PORTFOLIO SECTION
========================================= */

.portfolio-section {
    background: #f6f7f4;
    padding: 110px 0 120px;
    color: #101820;
}

.portfolio-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 58px;
}

.portfolio-title-area {
    max-width: 650px;
}

.portfolio-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 5px 15px 5px 6px;
    border: 1px solid #d9ddd7;
    border-radius: 30px;
    color: #4c5751;
    background: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
}

.portfolio-section .section-badge span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--yellow);
    color: #172018;
    font-size: 10px;
}

.portfolio-title-area h2 {
    margin: 23px 0 0;
    color: #101820;
    font-size: clamp(44px, 5vw, 70px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;
}

.portfolio-title-area h2 em {
    color: #5b675f;
    font-style: italic;
    font-weight: 600;
}

.portfolio-intro {
    width: 370px;
    flex-shrink: 0;
}

.portfolio-intro p {
    margin: 0 0 23px;
    color: #66716b;
    font-size: 16px;
    line-height: 1.7;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid #aeb6b0;
    border-radius: 30px;
    color: #172018;
    background: transparent;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .25s ease;
}

.explore-btn:hover {
    color: #172018;
    background: var(--yellow);
    border-color: var(--yellow);
}

.portfolio-list {
    border-top: 1px solid #d9ddd7;
}

.portfolio-company {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 154px;
    border-bottom: 1px solid #d9ddd7;
    transition: background .25s ease;
}

.portfolio-company:hover {
    background: #fff;
}

.portfolio-company-image {
    width: 150px;
    height: 108px;
    margin: 23px 0;
    overflow: hidden;
    border-radius: 12px;
    background: #e7e9e5;
}

.portfolio-company-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .45s ease;
}

.portfolio-company:hover .portfolio-company-image img {
    transform: scale(1.04);
}

.portfolio-company-main {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: center;
    gap: 35px;
    padding: 24px 0 24px 5px;
}

.portfolio-company-name {
    display: flex;
    align-items: center;
    gap: 24px;
}

.portfolio-index {
    color: #9aa39d;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
}

.portfolio-company-name h3 {
    margin: 0;
    color: #101820;
    font-size: 27px;
    line-height: 1.15;
    letter-spacing: -.8px;
    font-weight: 700;
}

.portfolio-company-name > div > span {
    display: block;
    margin-top: 7px;
    color: #77817b;
    font-size: 13px;
}

.portfolio-meta {
    display: grid;
    grid-template-columns: 180px 140px 120px;
    align-items: center;
    gap: 25px;
}

.portfolio-meta > div {
    display: flex;
    flex-direction: column;
}

.portfolio-meta small {
    margin-bottom: 7px;
    color: #929a95;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
}

.portfolio-meta strong {
    color: #172018;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.portfolio-site {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 40px;
    padding: 0 13px;
    border: 1px solid #cbd0cb;
    border-radius: 9px;
    color: #172018;
    text-decoration: none;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .25s ease;
}

.portfolio-site i {
    font-size: 10px;
}

.portfolio-site:hover {
    color: #172018;
    background: var(--yellow);
    border-color: var(--yellow);
}

@media (max-width: 1199px) {
    .portfolio-company { grid-template-columns: 160px 1fr; }
    .portfolio-company-image { width: 130px; }
    .portfolio-meta {
        grid-template-columns: 150px 115px 105px;
        gap: 15px;
    }
}

@media (max-width: 991px) {
    .portfolio-section { padding: 85px 0 90px; }
    .portfolio-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }
    .portfolio-intro {
        width: 100%;
        max-width: 600px;
    }
    .portfolio-company { grid-template-columns: 135px 1fr; }
    .portfolio-company-image {
        width: 110px;
        height: 90px;
    }
    .portfolio-company-main {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .portfolio-meta {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .portfolio-section { padding: 70px 0 75px; }
    .portfolio-title-area h2 {
        font-size: 43px;
        letter-spacing: -2px;
    }
    .portfolio-company {
        display: block;
        padding: 18px 0;
    }
    .portfolio-company-image {
        width: 100%;
        height: 180px;
        margin: 0 0 18px;
    }
    .portfolio-company-main {
        display: block;
        padding: 0;
    }
    .portfolio-company-name { gap: 13px; }
    .portfolio-company-name h3 { font-size: 23px; }
    .portfolio-meta {
        grid-template-columns: 1fr 1fr;
        gap: 18px 15px;
        margin-top: 20px;
    }
    .portfolio-site {
        width: fit-content;
        min-width: 110px;
    }
}

@media (max-width: 480px) {
    .portfolio-title-area h2 { font-size: 37px; }
    .portfolio-intro p { font-size: 14px; }
    .portfolio-company-image { height: 160px; }
    .portfolio-meta { grid-template-columns: 1fr; }
}
/* =========================================
   TEAM SECTION
========================================= */

.team-section {
    background: #10192c;
    padding: 90px 0 85px;
    color: #fff;
}

.team-section .container {
    max-width: 1280px;
}


/* =========================================
   HEADER
========================================= */

.team-header {
    margin-bottom: 62px;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 4px 14px 4px 5px;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 30px;

    background: rgba(255,255,255,.06);

    font-size: 13px;
    font-weight: 500;
}

.team-badge span {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffd638;
    color: #182033;

    font-size: 11px;
}


.team-title {
    margin: 23px 0 0;

    font-size: 46px;
    line-height: 1.06;

    font-weight: 700;
    letter-spacing: -2px;
}

.team-title em {
    color: #ffd638;
    font-style: italic;
    font-weight: 700;
}


.team-intro {
    max-width: 620px;
    margin: 0 0 5px auto;

    color: rgba(255,255,255,.95);

    font-size: 16px;
    line-height: 1.5;
}


/* =========================================
   TEAM GRID
========================================= */

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* =========================================
   CARD
========================================= */

.team-card {
    min-width: 0;
}

.team-image {
    height: 450px;

    overflow: hidden;

    border-radius: 25px;
    background: #ddd;
}

.team-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center top;
}


/* =========================================
   MEMBER INFO
========================================= */

.team-info {
    margin-top: 15px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;
}

.team-info h3 {
    margin: 0;

    font-size: 19px;
    line-height: 1.2;

    font-weight: 600;
    color: #fff;
}

.team-info span {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.58);

    font-size: 14px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.team-socials {
    display: flex;
    align-items: center;
    gap: 7px;
}

.team-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 13px;

    transition: .25s ease;
}

.team-socials a:hover {
    background: #ffd638;
    border-color: #ffd638;
    color: #10192c;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .team-section .container {
        max-width: 960px;
    }

    .team-title {
        font-size: 41px;
    }

    .team-grid {
        gap: 20px;
    }

    .team-image {
        height: 390px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .team-section {
        padding: 75px 0;
    }

    .team-header {
        margin-bottom: 45px;
    }

    .team-intro {
        margin: 25px 0 0;
        max-width: 650px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 22px;
    }

    .team-image {
        height: 450px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .team-section {
        padding: 60px 0;
    }

    .team-title {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .team-intro {
        font-size: 15px;
        line-height: 1.55;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .team-image {
        height: 500px;
        border-radius: 22px;
    }

    .team-info h3 {
        font-size: 19px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .team-title {
        font-size: 30px;
    }

    .team-image {
        height: 430px;
    }

    .team-info {
        align-items: flex-end;
    }

}

/* =========================================
   INVORA FOOTER
========================================= */

.invora-footer {
    position: relative;
    overflow: hidden;

    color: #fff;

    padding: 78px 0 25px;

    background:
        radial-gradient(
            circle at 90% 100%,
            rgba(255, 214, 56, .13),
            transparent 34%
        ),
        radial-gradient(
            circle at 10% 0%,
            rgba(255, 255, 255, .035),
            transparent 30%
        ),
        #0e1729;
}


/* subtle lines */

.invora-footer::before {
    content: "";
    position: absolute;
    inset: 0;

    opacity: .045;

    background-image:
        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 3px,
            rgba(255,255,255,.7) 4px
        );

    pointer-events: none;
}

.invora-footer .container {
    position: relative;
    z-index: 2;

    max-width: 1240px;
}


/* =========================================
   MAIN
========================================= */

.footer-main {
    padding-bottom: 55px;
    padding-top: 70px;
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
    position: relative;

    display: inline-block;

    color: #fff;
    text-decoration: none;

    font-size: 44px;
    line-height: 1;

    font-weight: 700;

    letter-spacing: -2.5px;
}

.footer-logo-dot {
    position: absolute;

    width: 10px;
    height: 10px;

    left: 6px;
    top: -3px;

    border-radius: 50%;

    background: #ffd638;
}


.footer-description {
    max-width: 340px;

    margin: 20px 0 24px;

    color: rgba(255,255,255,.73);

    font-size: 15px;
    line-height: 1.65;
}


/* CTA */

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,.55);
    border-radius: 30px;

    color: #fff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: .25s ease;
}

.footer-cta span {
    font-size: 17px;
}

.footer-cta:hover {
    background: #ffd638;
    border-color: #ffd638;
    color: #10192c;
}


/* =========================================
   COLUMNS
========================================= */

.footer-column h4 {
    margin: 0 0 19px;

    padding-bottom: 15px;

    border-bottom: 1px solid #ffd638;

    color: #fff;

    font-size: 18px;
    font-weight: 600;
}


.footer-column > a {
    display: block;

    padding: 11px 0;

    border-bottom: 1px solid rgba(255,255,255,.20);

    color: rgba(255,255,255,.82);
    text-decoration: none;

    font-size: 15px;

    transition:
        color .2s ease,
        padding-left .2s ease;
}

.footer-column > a:hover {
    color: #ffd638;
    padding-left: 5px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 12px;
}


.contact-icon {
    width: 20px;

    display: inline-flex;
    justify-content: center;

    color: #fff;
}


.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 11px 0;

    border-bottom: 1px solid rgba(255,255,255,.20);

    color: rgba(255,255,255,.82);

    font-size: 15px;
    line-height: 1.5;
}


/* =========================================
   SOCIALS
========================================= */

.footer-socials {
    display: flex;
    gap: 10px;

    margin-top: 22px;
}

.footer-socials a {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.40);
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 13px;

    transition: .25s ease;
}

.footer-socials a:hover {
    background: #ffd638;
    border-color: #ffd638;
    color: #10192c;
    transform: translateY(-2px);
}


/* =========================================
   BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.28);
}


.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 14px;
}


.footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-legal a {
    color: rgba(255,255,255,.78);
    text-decoration: none;

    font-size: 14px;

    transition: color .2s ease;
}

.footer-legal a:hover {
    color: #ffd638;
}

.footer-legal span {
    width: 1px;
    height: 17px;

    background: rgba(255,255,255,.3);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .invora-footer {
        padding-top: 65px;
    }

    .footer-main {
        padding-bottom: 40px;
    }

    .footer-description {
        max-width: 440px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .invora-footer {
        padding: 55px 0 22px;
    }

    .footer-logo {
        font-size: 40px;
    }

    .footer-main {
        padding-bottom: 30px;
    }

    .footer-column h4 {
        margin-top: 10px;
    }

    .footer-description {
        font-size: 14px;
    }

    .footer-bottom {
        gap: 14px;
    }

    .footer-legal {
        flex-wrap: wrap;
        gap: 10px;
    }

}


/* =========================================
   FONT AWESOME
========================================= */


/* =========================================================
   INNER PAGES
========================================================= */
.inner-page {
    background: #f7f8fa;
    color: #10192c;
}

.inner-header {
    position: relative;
    z-index: 20;
    background: #10192c;
    color: #fff;
}
.inner-header .hero-header {
    height: 105px;
}
.inner-header .main-nav {
    background: rgba(255,255,255,.06);
}
.inner-header .brand-logo img {
    max-width: 200px;
    height: auto;
}
.inner-header .quote-btn {
    background: #ffd638;
    color: #10192c;
    border-color: #ffd638;
}
.inner-header .quote-btn:hover {
    background: #fff;
    border-color: #fff;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 105px 0 100px;
    background: #10192c;
    color: #fff;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .07;
    background-image:
        linear-gradient(rgba(255,255,255,.8) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.8) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 4px 14px 4px 5px;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 30px;
    background: rgba(255,255,255,.06);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.page-kicker span {
    width: 28px; height: 28px; display:flex; align-items:center; justify-content:center;
    background:#ffd638; color:#182033; border-radius:50%; font-size:10px;
}
.page-hero h1 {
    max-width: 850px;
    margin: 25px 0 18px;
    font-size: clamp(48px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: -3px;
    font-weight: 700;
}
.page-hero h1 em { color:#ffd638; font-style:italic; }
.page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.7;
}

.content-section { padding: 95px 0; }
.content-section.light { background:#fff; }
.content-section.soft { background:#f7f8fa; }
.section-label {
    display:inline-flex; align-items:center; gap:8px;
    color:#68748a; font-size:12px; font-weight:700; letter-spacing:1px;
    text-transform:uppercase;
}
.section-label i { color:#e4bd16; font-size:9px; }
.section-heading {
    margin:16px 0 0;
    color:#10192c;
    font-size:clamp(34px,4vw,56px);
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:700;
}
.section-heading em { font-style:italic; font-weight:700; }
.lead-copy { color:#4e5c70; font-size:17px; line-height:1.8; }
.copy { color:#5b687b; font-size:16px; line-height:1.85; }

.about-intro {
    display:grid; grid-template-columns:1fr 1fr; gap:70px; align-items:start;
}
.about-intro .big-copy { font-size:24px; line-height:1.5; color:#182033; font-weight:500; }
.about-card {
    padding:38px; border-radius:24px; background:#10192c; color:#fff;
}
.about-card h3 { font-size:28px; margin:0 0 15px; }
.about-card p { color:rgba(255,255,255,.72); font-size:15px; line-height:1.75; margin:0; }

.generation-section { background:#10192c; color:#fff; }
.generation-section .section-label { color:rgba(255,255,255,.55); }
.generation-section .section-heading { color:#fff; }
.generation-section .section-heading em { color:#ffd638; }
.generation-copy { color:rgba(255,255,255,.72); font-size:17px; line-height:1.85; max-width:760px; }

.track-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:22px; margin-top:45px; }
.track-card {
    padding:35px; border:1px solid #e4e7ec; border-radius:24px; background:#fff;
}
.track-number { color:#9aa4b4; font-size:13px; font-weight:700; letter-spacing:1px; }
.track-card h3 { margin:18px 0 10px; font-size:27px; color:#10192c; }
.track-card p { margin:0; color:#5c6879; line-height:1.75; font-size:16px; }

.approach-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:80px; }
.approach-steps { display:grid; gap:15px; }
.approach-step {
    display:grid; grid-template-columns:55px 1fr; gap:20px;
    padding:24px 0; border-bottom:1px solid #e2e6eb;
}
.approach-step:first-child { border-top:1px solid #e2e6eb; }
.step-num {
    width:45px; height:45px; display:flex; align-items:center; justify-content:center;
    border-radius:50%; background:#ffd638; color:#10192c; font-size:13px; font-weight:700;
}
.approach-step h3 { margin:0 0 7px; font-size:21px; }
.approach-step p { margin:0; color:#637084; line-height:1.7; font-size:15px; }

.portfolio-page { background:#f7f8fa; }
.portfolio-page .portfolio-section { padding-top:90px; }
.portfolio-page .portfolio-company { background:#fff; }

.contact-grid, .pitch-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.contact-details { padding-top:15px; }
.contact-details h2 { font-size:40px; line-height:1.1; letter-spacing:-1.5px; margin:0 0 18px; }
.contact-details > p { color:#637084; font-size:16px; line-height:1.8; max-width:500px; }
.contact-item {
    display:flex; gap:15px; align-items:flex-start; margin-top:28px; padding-top:22px;
    border-top:1px solid #e1e5eb;
}
.contact-item-icon {
    width:42px; height:42px; border-radius:50%; background:#ffd638; color:#10192c;
    display:flex; align-items:center; justify-content:center; flex:0 0 auto;
}
.contact-item strong { display:block; color:#10192c; font-size:15px; }
.contact-item span, .contact-item a { color:#637084; font-size:14px; text-decoration:none; line-height:1.6; }

.form-card {
    padding:42px; border-radius:28px; background:#fff; border:1px solid #e4e7ec;
    box-shadow:0 22px 60px rgba(16,25,44,.07);
}
.form-card.dark { background:#10192c; border-color:#10192c; color:#fff; }
.form-card h2 { margin:0 0 8px; font-size:30px; letter-spacing:-1px; }
.form-card .form-intro { color:#718096; font-size:14px; line-height:1.65; margin-bottom:25px; }
.form-card.dark .form-intro { color:rgba(255,255,255,.65); }
.form-label { font-size:13px; font-weight:600; color:#273247; margin-bottom:8px; }
.form-card.dark .form-label { color:rgba(255,255,255,.85); }
.form-control, .form-select {
    min-height:52px; border-radius:12px; border:1px solid #dfe4ea; padding:12px 15px;
    font-size:14px; box-shadow:none;
}
.form-control:focus, .form-select:focus { border-color:#ffd638; box-shadow:0 0 0 4px rgba(255,214,56,.14); }
textarea.form-control { min-height:140px; resize:vertical; }
.form-card.dark .form-control, .form-card.dark .form-select {
    background:rgba(255,255,255,.06); color:#fff; border-color:rgba(255,255,255,.16);
}
.form-card.dark .form-control::placeholder { color:rgba(255,255,255,.42); }
.form-card.dark .form-select option { color:#10192c; }
.submit-button {
    width:100%; min-height:55px; border:0; border-radius:12px; background:#ffd638;
    color:#10192c; font-size:13px; font-weight:800; letter-spacing:.2px; transition:.2s ease;
}
.submit-button:hover { background:#fff; transform:translateY(-2px); }
.form-note { color:#8792a2; font-size:12px; line-height:1.6; margin-top:15px; }
.form-card.dark .form-note { color:rgba(255,255,255,.45); }

.pitch-intro {
    padding:38px; border-radius:24px; background:#10192c; color:#fff; margin-bottom:25px;
}
.pitch-intro .section-label { color:rgba(255,255,255,.55); }
.pitch-intro h2 { margin:15px 0; font-size:34px; letter-spacing:-1px; }
.pitch-intro p { color:rgba(255,255,255,.68); line-height:1.75; margin:0; }

.team-page .team-section { padding-top:90px; }

@media (max-width: 991px) {
    .inner-header .hero-header { height:85px; }
    .inner-header .main-nav, .inner-header .quote-btn { display:none; }
    .inner-header .mobile-menu-btn { display:flex; align-items:center; justify-content:center; }
    .about-intro, .approach-grid, .contact-grid, .pitch-grid { grid-template-columns:1fr; gap:45px; }
    .track-grid { grid-template-columns:1fr; }
    .page-hero { padding:85px 0 75px; }
}
@media (max-width: 767px) {
    .inner-header .hero-header { height:78px; }
    .page-hero { padding:70px 0 65px; }
    .page-hero h1 { font-size:43px; letter-spacing:-2px; }
    .page-hero p { font-size:15px; }
    .content-section { padding:65px 0; }
    .about-intro .big-copy { font-size:20px; }
    .section-heading { font-size:35px; }
    .form-card { padding:25px; border-radius:20px; }
    .pitch-intro { padding:27px; }
    .pitch-intro h2 { font-size:28px; }
    .team-page .team-section { padding-top:65px; }
}
