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

:root {
    --gold: #B8882A;
    --gold-bg: #FBF6EC;
    --gold-border: #E8D5A8;
    --dark: #18182B;
    --mid: #4B4B6A;
    --soft: #F7F5F0;
    --white: #FFFFFF;
    --border: #E5E2DA;
}

.page {
    font-family: 'Mulish',sans-serif;
    background: #fff;
    color: var(--dark);
    max-width: 720px;
    margin: 0 auto;
}

.hero {
    background: var(--dark);
    padding: 3.2rem 2.8rem 2.8rem;
    position: relative;
    overflow: hidden;
}

.hero-arc {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1.5px solid rgba(184,136,42,0.18);
}

.hero-arc2 {
    position: absolute;
    bottom: -60px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid rgba(184,136,42,0.1);
}

.eyebrow {
    font-family: 'Mulish',sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.hero-title {
    font-family: 'Mulish',sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 0.3rem;
}

    .hero-title span {
        color: var(--gold);
    }

.hero-sub-tag {
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-deck {
    font-family: 'Mulish',sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2rem;
}

    .hero-deck b {
        color: rgba(255,255,255,0.9);
        font-weight: 700;
    }

.hero-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(184,136,42,0.25);
    margin-top: 0.5rem;
    display: block;
}

.gold-bar {
    height: 3px;
    background: linear-gradient(90deg,var(--gold),#E8D5A8,var(--gold));
}
.sec {
    padding: 40px 0 0;
}
    .sec.alt {
        background: var(--soft);
    }

.sec-eyebrow {
    font-family: 'Mulish',sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}
.sec-title {
    font-family: 'Mulish',sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: var(--dark);
    line-height: 48px;
    margin-bottom: 1rem;
    text-align: center;
}
.sec-body {
    font-family: 'Mulish',sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--mid);
    line-height: 1.85;
}

    .sec-body b {
        color: var(--dark);
        font-weight: 700;
    }

.pull {
    background: var(--gold-bg);
    border-left: 3px solid var(--gold);
    padding: 1.3rem 1.5rem;
    margin: 1.6rem 0;
    border-radius: 0 8px 8px 0;
}

    .pull p {
        font-family: 'Mulish',sans-serif;
        font-size: 1.05rem;
        font-weight: 600;
        color: #5a3d0a;
        line-height: 1.6;
        font-style: italic;
    }

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1.2rem;
}

.point-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1rem 1.1rem;
}

.point-num {
    font-family: 'Mulish',sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.point-title {
    font-family: 'Mulish',sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.point-body {
    font-family: 'Mulish',sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--mid);
    line-height: 1.6;
}

.diff-list {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.diff-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0.85rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.diff-check {
    width: 20px;
    height: 20px;
    background: var(--gold-bg);
    border: 1px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

    .diff-check svg {
        width: 10px;
        height: 10px;
    }

.diff-text {
    font-family: 'Mulish',sans-serif;
    font-size: 0.88rem;
    color: var(--mid);
    line-height: 1.6;
}

    .diff-text b {
        color: var(--dark);
        font-weight: 700;
    }

.dark-sec {
    background: var(--dark);
    padding: 2.4rem 2.8rem;
}

    .dark-sec .sec-eyebrow {
        color: var(--gold);
    }

    .dark-sec .sec-title {
        color: #fff;
    }

    .dark-sec .sec-body {
        color: rgba(255,255,255,0.6);
    }

        .dark-sec .sec-body b {
            color: rgba(255,255,255,0.9);
        }

.role-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 1.4rem;
}

.role-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(184,136,42,0.22);
    border-radius: 10px;
    padding: 1.1rem;
}

.role-num {
    font-family: 'Mulish',sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.role-title {
    font-family: 'Mulish',sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.7rem;
    line-height: 1.3;
}

.role-list {
    font-family: 'Mulish',sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.75;
}

.strat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 1.2rem;
}

.strat-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 0.9rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.strat-icon {
    width: 32px;
    height: 32px;
    background: var(--gold-bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .strat-icon i {
        font-size: 16px;
        color: var(--gold);
    }

.strat-content {
}

.strat-title {
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.strat-body {
    font-family: 'Mulish',sans-serif;
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 1.6;
}

.rev-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-top: 1.4rem;
}

.rev-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem;
}

.rev-badge {
    display: inline-block;
    background: var(--gold-bg);
    color: #6b4c0e;
    border: 1px solid var(--gold-border);
    font-family: 'Mulish',sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.7rem;
}

.rev-title {
    font-family: 'Mulish',sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.rev-list {
    font-family: 'Mulish',sans-serif;
    font-size: 0.78rem;
    color: var(--mid);
    line-height: 1.8;
}

.imgs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 0 2.8rem;
    margin-bottom: 2rem;
}

.img-wrap {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
}

    .img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.vision-sec {
    background: var(--soft);
    padding: 2.4rem 2.8rem;
}

.vision-items {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vision-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.75rem 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.vision-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.vision-text {
    font-family: 'Mulish',sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dark);
}
.close-sec {
    background: var(--dark);
    padding: 30px 0;
    text-align: center;
}
.close-star {
    font-size: 1.2rem;
    color: rgba(184,136,42,0.5);
    margin-bottom: 1rem;
}

.close-title {
    font-family: 'Mulish',sans-serif;
    font-size: 1.9rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}

    .close-title span {
        color: var(--gold);
    }

.close-body {
    font-family: 'Mulish',sans-serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 480px;
    margin: 0 auto 0.8rem;
}

    .close-body b {
        color: rgba(255,255,255,0.85);
        font-weight: 700;
    }
.close-note {
    font-family: 'Mulish',sans-serif;
    font-size: 15px;
    color: #fff;
    margin-bottom: 0px;
    text-align: left;
}
.cta-btn {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.9rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    margin-bottom: 1.2rem;
}

.cta-email {
    font-family: 'Mulish',sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-top: 0.5rem;
}

    .cta-email a {
        color: var(--gold);
        text-decoration: none;
        font-weight: 700;
    }

.footer {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 1.2rem 2.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-brand {
    font-family: 'Mulish',sans-serif;
    font-size: 1rem;
    font-weight: 900;
    color: #fff;
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-tag {
    font-family: 'Mulish',sans-serif;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    font-style: italic;
}
.about-three__content .text {
    font-size: 15px;
    line-height: 23px;
}
.about-three__content .list ul li {
    font-size: 15px;
    line-height: 23px;
}
.about-three__content .list {
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
}
.list ul li i {
    font-size: 14px;
    line-height: 14px;
}
.professional__content {
    gap: 10px;
}
.no-center p {
    font-size: 15px;
    line-height: 23px;
}
.professional__content ul li:not(.last-child) {
    margin-bottom: 6px;
}
.professional__content ul li {
    gap: 6px;
    font-size: 15px;
    line-height: 18px;
}
p.middlep {
    margin: 15px 0 8px 0;
}
.twoboxesgriddesign {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 15px;
}
    .twoboxesgriddesign .firstcolunm .diff-list > div:nth-child(2n) .diff-text,
    .twoboxesgriddesign .firstcolunm .diff-list > div:nth-child(2n+1) .diff-text {
        color: #fff;
    }
    .twoboxesgriddesign .secondcolunm .diff-list > div:nth-child(2n) .diff-text,
    .twoboxesgriddesign .secondcolunm .diff-list > div:nth-child(2n+1) .diff-text {
        color: #fff;
    }
    .twoboxesgriddesign .firstcolunm .diff-list > div:nth-child(2n) {
        background: #006694;
    }
    .twoboxesgriddesign .secondcolunm .diff-list > div:nth-child(2n) {
        background: #009846;
    }
    .twoboxesgriddesign .firstcolunm .diff-list > div:nth-child(2n+1) {
        background: #009846;
    }
    .twoboxesgriddesign .secondcolunm .diff-list > div:nth-child(2n+1) {
        background: #006694;
    }
.feature-five__wrp.bg-sub p {
    color: #fff;
    font-size: 15px;
    line-height: 23px;
    margin: 13px 0 4px 0;
}
.feature-five-area .feature-five__wrp .content ul li i {
    position: absolute;
    top: 6px;
    bottom: 0;
    left: 0;
}
.feature-five-area .feature-five__wrp .content ul li {
    margin-left: 0;
    list-style: none;
    padding-bottom: 5px !important;
    font-size: 15px;
    line-height: 23px;
    position: relative;
    padding-left: 20px;
}
.feature-five__wrp.bg-sub p b {
    color: #fff;
}
.about-five__wrp .text {
    max-width: 100%;
    font-size: 15px;
    line-height: 23px;
}
section.brandintegrityintegri .section-header.mb-30 {
    margin: 0 0 14px 0 !important;
}
section.brandintegrityintegri ul li {
    color: #000 !important;
    position: relative;
    padding: 0 0 4px 23px !important;
    font-size: 15px;
    line-height: 23px;
}
    section.brandintegrityintegri ul li i {
        position: absolute;
        top: 5px;
        bottom: 0;
        left: 0;
    }
section.businessmodelframe h4.text-center {
    color: #fff;
}
.commercialstructuring.about-three-area.whatisstrlimelight .list ul {
    grid-template-columns: repeat(1,1fr);
}
.vision-sec .container {
    max-width: 1000px;
}
.close-sec .list ul li {
    color: #ffff;
    text-align: left;
    font-size: 15px;
    line-height: 23px;
}
.close-sec .list ul {
    margin: 0 0 10px 0;
}
.close-sec a {
    color: #fff;
}
.about-three-area.executeoverview {
    padding: 40px 0 20px 0 !important;
}
.close-sec .container {
    max-width: 1200px;
}
section.businessmodelframe .feature-five__wrp {
    margin-top: 0;
}
.pb-50 {
    padding-bottom: 30px !important;
}
.footer .container {
    max-width: 1200px;
}
.about-three-area.executeoverview .list.second {
    margin-bottom: 10px;
}
.logobtnwrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media (max-width: 1300px) {
    .about-three-area.executeoverview p {
        padding-bottom: 6px !important;
        margin: 0 0 6px 0;
        line-height: 18px;
        font-size: 14px;
    }
    .about-three__content .list ul li {
        font-size: 14px;
        line-height: 18px;
    }
    .about-three__content .firstboxlist ul li:last-child {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    p.middlep {
        margin: 8px 0 2px 0;
    }
    .coreideasection .professional__content {
        gap: 5px;
    }
    section.brandintegrityintegri h2 {
        line-height: 40px;
    }
    section.brandintegrityintegri .section-header.mb-30 {
        margin: 0 0 9px 0 !important;
    }
    section.brandintegrityintegri h4 {
        line-height: 28px;
    }
    section.brandintegrityintegri ul li {
        padding: 0 0 5px 23px !important;
        line-height: 19px;
    }
    .about-five__wrp .text {
        margin: 7px 0 0 0 !important;
        line-height: 20px;
    }
    section.businessmodelframe .feature-five__wrp {
        margin: 0 0 50px 0;
    }
    .about-three-area.commercialstructuring .list ul {
        gap: 3px;
    }
    .about-three-area.commercialstructuring .about-three__content .text {
        line-height: 20px;
    }
    .commercialstructuring.about-three-area.whatisstrlimelight .list ul {
        grid-template-columns: repeat(2,1fr);
    }
}
    @media (max-width: 768px) {
        .feature-five-area {
            margin-bottom: 0;
            padding-bottom: 0 !important;
        }
        .commercialstructuring.about-three-area.whatisstrlimelight .list ul {
            grid-template-columns: repeat(1,1fr);
        }
        .close-sec.powered-section .limelightlogo img {
            top: 190px;
        }
    }

    @media (max-width: 767px) {
        section.morethanpodcastsection .list ul li {
            line-height: 23px;
            padding-bottom: 5px !important;
        }

            section.morethanpodcastsection .list ul li i {
                top: 6px;
            }

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

        .sec {
            padding: 30px 15px;
        }

        .diff-list {
            margin-top: 3px;
        }

        .sec-body {
            font-size: 15px;
            font-weight: 700;
        }
        section.brandintegrityintegri {
            padding: 20px 0 20px !important;
        }
        .about-three-area.whatisstrlimelight {
            padding: 30px 0 30px !important;
        }
        .vision-sec {
            padding: 30px 15px;
        }
        .about-three__content .firstboxlist ul li:last-child {
            grid-column-start: unset;
            grid-column-end: unset;
        }

        .closecontent .list {
            padding-right: 110px;
        }
        .close-sec.powered-section .limelightlogo img {
            top: 280px;
        }
        .closecontent > .close-note {
            padding-right: 30px;
        }
    }