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

body, html {
    font-family: 'Mulish',sans-serif;
    background: #fff;
    color: #1a1a2e;
}

:root {
    --gold: #C9973A;
    --gold-light: #F5E6C8;
    --gold-pale: #FDFAF3;
    --dark: #1a1a2e;
    --mid: #4a4a6a;
    --light-bg: #F9F7F2;
    --border: #EAE4D4;
}

.page {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 0 3rem;
}

/* HERO */
.hero {
    background: linear-gradient(160deg,#1a1a2e 0%,#2d2b4e 55%,#1f3a5f 100%);
    padding: 3.5rem 2.5rem 3rem;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(201,151,58,0.18) 0%,transparent 70%);
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -40px;
        left: 20px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(201,151,58,0.1) 0%,transparent 70%);
    }

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

.hero-logo {
    font-family: 'Mulish',sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.4rem;
}

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

.hero-tagline {
    font-family: 'Mulish',sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
    font-style: italic;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
}

.hero-statement {
    font-family: 'Mulish',sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.45;
    max-width: 480px;
    margin-bottom: 1.4rem;
}

    .hero-statement em {
        color: var(--gold);
        font-style: normal;
    }

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

.hero-img {
    width: 100%;
    border-radius: 12px;
    margin-top: 2rem;
    height: 200px;
    object-fit: cover;
    opacity: 0.9;
    border: 1.5px solid rgba(201,151,58,0.3);
}

.hero-cta {
    display: inline-block;
    background: var(--gold);
    color: #1a1a2e;
    font-family: 'Mulish',sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

/* DIVIDER */
.gold-line {
    height: 3px;
    background: linear-gradient(90deg,var(--gold),#F5E6C8,var(--gold));
}

/* SECTION */
.section {
    padding: 2.5rem 2.5rem;
}

.section-label {
    font-family: 'Mulish',sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.7rem;
}

.section-title {
    font-family: 'Mulish',sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

/* QUOTE BLOCK */
.quote-block {
    background: var(--light-bg);
    border-left: 3px solid var(--gold);
    padding: 1.4rem 1.6rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.quote-text {
    font-family: 'Mulish',sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
    font-style: italic;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 1.5rem;
}

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

.benefit-icon {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

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

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

/* WHO SECTION */
.who-bg {
    background: var(--dark);
    padding: 2.5rem 2.5rem;
}

.who-title {
    font-family: 'Mulish',sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
}

.who-sub {
    font-family: 'Mulish',sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.who-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.who-tag {
    background: rgba(201,151,58,0.12);
    border: 1px solid rgba(201,151,58,0.35);
    color: var(--gold);
    font-family: 'Mulish',sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
}

/* CONTENT ASSETS */
.assets-section {
    background: var(--light-bg);
    padding: 40px 0;
    position: relative;
}
    .assets-section::before {
        content: "";
        background-image: url('../images/postcad/whyb.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: -390px;
        bottom: auto;
        margin: 0 auto;
        height: 450px;
        max-width: 630px;
        opacity: 0.2;
    }
.asset-list {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-top: 1.2rem;
    position: relative;
}
.asset-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0.6rem 0.8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 7px;
}

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

/* IMAGES ROW */
.images-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    padding: 0 2.5rem;
    margin: 0.5rem 0 2rem;
}

.img-card {
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1/1.1;
    border: 1.5px solid var(--border);
}

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

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gold-pale);
    gap: 6px;
}

    .img-placeholder span {
        font-family: 'Mulish',sans-serif;
        font-size: 0.72rem;
        font-weight: 600;
        color: var(--gold);
        text-align: center;
        padding: 0 10px;
    }

/* POWERED BY */
.powered-section {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid var(--border);
    position: relative;
}
    .powered-section::before {
        content: "";
        background-image: url('../images/postcad/pb.png');
        background-repeat: no-repeat;
        background-size: 100% 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        height: 300px;
        max-width: 310px;
        margin: auto;
        opacity: 0.23;
    }
    .powered-title {
        font-family: 'Mulish',sans-serif;
        font-size: 1.4rem;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 0.8rem;
    }

.powered-body {
    font-family: 'Mulish',sans-serif;
    font-size: 0.95rem;
    color: var(--mid);
    line-height: 1.8;
}

.pillars {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.2rem;
}

.pillar {
    background: var(--gold-pale);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-family: 'Mulish',sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #8a6820;
}

/* APPLY */
.apply-section {
    background: linear-gradient(135deg,#1a1a2e 0%,#2d2b4e 100%);
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .apply-section::before {
        content: '✦';
        position: absolute;
        top: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1rem;
        color: rgba(201,151,58,0.4);
    }

.apply-title {
    font-family: 'Mulish',sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.5rem;
    margin-top: 0.8rem;
}

.apply-sub {
    font-family: 'Mulish',sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.apply-note {
    font-family: 'Mulish',sans-serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    margin-bottom: 2rem;
}

.apply-email {
    display: inline-block;
    background: var(--gold);
    color: #1a1a2e;
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.apply-email-text {
    font-family: 'Mulish',sans-serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.8rem;
}
.apply-email-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}
/* FOOTER */
.footer {
    background: #1f3044;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer-brand {
    font-family: 'Mulish',sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    line-height: 16px;
}
.footer-brand span {
    color: var(--gold);
}
.footer-tagline {
    font-family: 'Mulish',sans-serif;
    font-size: 12px;
    color: #fff;
    font-style: italic;
    line-height: 22px;
}


section.wherebussinessgetseensection .row .col-xl-6 {
    margin: 0;
}
.about-three-area.whatisstrlimelight {
    padding: 0 0 30px !important;
}
    .about-three-area.whatisstrlimelight .about-three__content {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .about-three-area.whatisstrlimelight p.firstpara,
    .about-three-area.whatisstrlimelight p.secondpara,
    .about-three-area.whatisstrlimelight p.thirdpara,
    .about-three-area.whatisstrlimelight p.fourthpara {
        padding-bottom: 10px;
    }
    .about-three-area.whatisstrlimelight .list ul li {
        margin: 0;
    }
    .about-three-area.whatisstrlimelight .list ul {
        display: grid;
        grid-template-columns: repeat(3,1fr);
    }
    .about-three-area.whatisstrlimelight .about-three__content .list ul li {
        align-items: flex-start;
    }
    .about-three-area.whatisstrlimelight .list.second ul {
        grid-template-columns: repeat(2,1fr);
    }
section.morethanpodcastsection .video-four__content {
    padding: 40px 50px;
}
    section.morethanpodcastsection .video-four__content p {
        color: #fff;
        margin: 0;
        line-height: 22px;
    }
section.morethanpodcastsection .list ul li {
    padding-bottom: 0;
    line-height: 11px;
}
    section.morethanpodcastsection .list ul li i {
        top: -1px;
    }
section.morethanpodcastsection p.third {
    margin: 0 0 11px 0;
}
.assets-section .container {
    max-width: 1200px;
}
.asset-list .asset-item:last-child {
    grid-column-start: 2;
    grid-column-end: 4;
}
section.whoisthisforsection {
    padding: 70px 0;
}
    section.whoisthisforsection ul {
        display: grid;
        grid-template-columns: repeat(2,1fr);
    }
    section.whoisthisforsection .professional__content {
        padding-left: 50px;
    }
.professional__content ul li:nth-child(2n+1) i {
    background: #009846;
    color: #fff;
}
.professional__content ul li:nth-child(2n) i {
    background: #006694;
    color: #fff;
}
section.whoisthisforsection {
    padding: 40px 0;
}
.about-three-area.theconversationalstyle .about-three__content ul li {
    color: #000 !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}
.about-three-area.theconversationalstyle .section-header {
    margin: 0 0 0 0 !important;
}
.about-three-area.theconversationalstyle .list {
    margin: 10px 0 0 0;
}
.about-three-area.theconversationalstyle .about-three__content p {
    padding-bottom: 10px;
}
.powered-section .container {
    max-width: 1200px;
}

.impct-sty-ipmct .about-three__image img {
    height: auto;
    object-fit: unset;
}
.about-three__image img {
    width: 100%;
    height: unset;
    object-fit: unset;
}

@media (max-width: 1399px) {
    .about-three__content .text {
        font-size: 15px;
        line-height: 21px;
    }
    .about-three__content .list ul li {
        line-height: 18px;
        font-size: 15px;
    }
    .about-five__wrp .text {
        max-width: 100%;
        font-size: 15px;
        line-height: 23px;
        margin: 10px 0 0 0 !important;
    }
    .about-three__content .list {
        gap: 20px;
        margin-top: 15px;
        margin-bottom: 15px;
    }
    .about-three-area.whatisstrlimelight .list ul {
        gap: 9px;
    }
    .video-four__video img {
        height: unset;
    }
    section.morethanpodcastsection .video-four__content p {
        font-size: 15px;
        line-height: 23px;
    }
    .video-four__content {
        gap: 10px;
    }
    section.morethanpodcastsection .video-four__content {
        padding: 20px 30px;
    }
    .professional__content {
        gap: 10px;
    }
    .professional__content ul li i {
        width: 20px;
        height: 20px;
        line-height: 25px;
        font-size: 13px;
        line-height: 20px;
    }
    .professional__content ul li {
        font-size: 15px;
        line-height: 23px;
    }
    .no-center p {
        font-size: 15px;
        line-height: 23px;
    }
    .about-three-area.theconversationalstyle .about-three__content ul li {
        font-size: 15px;
        line-height: 23px;
    }
    .about-three-area.theconversationalstyle .about-three__content p {
        font-size: 15px;
        line-height: 23px;
    }
    .professional__content ul li:not(.last-child) {
        margin-bottom: 8px;
    }
}