.personal-styling-hero{
    padding: 0 0 0 24px;
}

.personal-styling-hero::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 19, 1);
    opacity: .8;
}

.personal-styling-hero .hero-inner{
    height: 100%;
}
.speaking-hero-section::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 19, 19, 1);
    opacity: .8;
}
.personal-styling-hero .hero-content {
    padding-top: 0;
    z-index: 2;
}

.personal-styling-hero .hero-content h1{
    line-height: 1;
    max-width: 845px;
}
.personal-styling-hero .hero-content p{
    font-size: 18px;
    max-width: 807px;
}
.hero-section .hero-content>p:first-of-type{
    margin: 28px 0;
}
.personal-styling-hero .hero-content>p:last-of-type{
    font-size: 18px;
}

.personal-styling-hero .hero-image{
    z-index: 1;
}

.personal-styling-hero .hero-image img{
    width: 100%;
}

.personal-styling-hero .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1;
    margin: 28px 0;
}

@media (max-width: 1024px){
    .personal-styling-hero .hero-inner{
        padding-top: 100px;
    }
}

@media (max-width: 768px){
    .personal-styling-hero .hero-image{
        display: none;
    }
    .personal-styling-hero .hero-inner{
        padding-top: 70px;
    }
}


/* Image Lag Section Styles */
.image-lag-section {
    padding: 100px 0 100px 24px;
    background-color: var(--body-bg);
    overflow: hidden;
    position: relative;
}

.image-lag-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin: 0 auto;
}

.image-lag-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.image-lag-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 45px;
    color: var(--text-color);
}

.image-lag-title .text-signature {
    display: inline-block;
}

.image-lag-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Specific List with Brand Bullets */
.image-lag-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.image-lag-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.image-lag-list li::before {
    content: '◉';
    color: #f60043; /* Primary Brand Red */
    position: absolute;
    left: 0;
    font-size: 14px;
    top: 2px;
}

.image-lag-description,
.image-lag-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.image-lag-footer {
    margin-bottom: 0;
}

/* Image Aura and Portrait Styling */
.image-lag-image {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.red-glow-backdrop {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.5) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.lag-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: 735px;
    filter: grayscale(100%); /* B&W style as seen in reference */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .image-lag-wrapper {
        flex-direction: column-reverse;
        text-align: left;
    }

    .image-lag-title {
        font-size: 38px;
    }

    .image-lag-image {
        margin-top: 50px;
        order: -1; /* Image appears first on mobile */
    }

    .red-glow-backdrop {
        width: 320px;
        height: 320px;
    }
    .lag-img{
        height: auto;
    }
}

.identity-section .authority-cards h3{
    font-size: 24px;

}

.identity-section .authority-subtitle{
    max-width: 665px;
    margin: 0 auto;
    margin-top: 20px;
}

.identity-section .authority-footer-text{
    max-width: 480px;
}


.embodiment-section .work-led-card{
    justify-content: flex-start;
    align-items: center;
}
.embodiment-section .work-led-card .work-led-image img{
    width: 520px;
}

.embodiment-section .work-led-card .work-led-content h2{
    max-width: 100%;
    line-height: 1;
    margin-bottom: 32px;
}

.embodiment-section .work-led-card .work-led-content p{
    margin-bottom: 32px;
}


/* What's Included Section */
.whats-included-section {
    padding: 100px 24px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-align: center;
}

/* Header Styling */
.whats-included-header {
    margin-bottom: 80px;
}

.whats-included-header .section-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
}

/* Grid Layout */
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
}

/* Card Styling */
.inclusion-card {
    background: rgba(10, 10, 10, 0.9); /* Deep dark background for legibility */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 45px 30px;
    text-align: left;
    transition: transform 0.3s ease;
}

.inclusion-card:hover {
    transform: translateY(-5px);
    border-color: rgba(166, 49, 81, 0.4);
}

.inclusion-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 35px;
    color: var(--text-color);
    text-align: left;
}

/* Custom Red Bullet List */
.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.inclusion-list li::before {
    content: '◉'; /* Standard bullet character */
    color: #A30933; /* Brand Pink/Red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .inclusion-grid {
        grid-template-columns: 1fr;
    }
    
    .whats-included-header .section-title {
        font-size: 42px;
    }

    .inclusion-card {
        padding: 40px 30px;
    }
}

@media (max-width: 768px){
    .inclusion-grid {
        gap: 24px;
    }
}

/* How It Works Section */
.how-exp-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Red glow centered at the bottom of the grid */
.how-exp-section::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 450px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.how-exp-header {
    margin-bottom: 80px;
}

.how-exp-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
}

/* Step Grid */
.how-exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Card Styling */
.how-exp-card {
    background: rgba(15, 15, 15, 1); /* Solid deep black per design */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
     padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.how-exp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 49, 81, 0.5);
}

.how-exp-card .step-title {
    font-family: 'Prata', serif;
    font-weight: 850;
    font-size: 24px;
    color: rgba(166, 49, 81, 1);
    margin-bottom: 20px;
    line-height: 1.3;
}

.how-exp-card .step-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

/* Numbering Watermark */
.how-exp-card .step-number {
    font-family: 'Prata', serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    align-self: flex-end;
}

/* Mobile Responsiveness */
@media (max-width: 1200px) {
    .how-exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-exp-grid {
        grid-template-columns: 1fr;
    }
    
    .how-exp-title {
        font-size: 42px;
    }

    .how-exp-card {
        min-height: auto;
    }
}

.what-changes-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.changes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Hesitations */
.hesitation-title {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hesitation-glass-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
}

.hesitation-list {
    list-style: none;
    padding: 0;
}

.hesitation-list li {
    margin-bottom: 30px;
    padding-left: 25px;
    position: relative;
}

.hesitation-list li:last-child {
    margin-bottom: 0;
}

.hesitation-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 14px;
}

.hesitation-list p {
    font-family: 'Prata', serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 5px;
}

.hesitation-list span {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.6;
}

/* Right Column: Transformations */
.transformation-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.transformation-subtitle {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 300;
}

.transformation-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.transformation-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.transformation-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.transformation-footer p {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
}

.transformation-footer strong {
    font-weight: 850;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .changes-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .changes-grid :nth-child(2){
        order: 1;
    }
    .changes-grid :nth-child(1){
        order: 2;
    }

    .transformation-main-title {
        font-size: 42px;
    }
}


/* Investment Section */
.flix-frames-investment-section {
    padding: 65px 24px 65px 0;
    background: rgba(19, 19, 19, 1);
    position: relative;
    max-height: 534px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Red glow effect behind the text/image intersection */
.flix-frames-investment-section::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 28%;
        transform: translate(-50%, -50%);
        width: 156px;
        height: 156px;
        background: rgba(246, 0, 67, 1);
        filter: blur(80px);
        z-index: 0;
    }

.investment-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

/* Image Styling */
.investment-image {
    flex: 1;
    max-width: 600px;
}

.investment-image img {
    width: 550px;
    height: auto;
    display: block;
    /* Optional: Grayscale to match previous images if needed */
    filter: grayscale(100%); 
}

/* Content Styling */
.investment-content {
    flex: 1;
    max-width: 560px;
}
.investment-content ul{
    list-style: none;
    padding: 0; 
}

.investment-title {
    font-family: 'Prata', serif;
    font-size: 48px;
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.price-tag {
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Garet-Bold */
    font-size: 48px;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1;
}

.investment-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .flix-frames-investment-section {
        padding: 65px 24px;
        max-height: none;
    }
    .flix-frames-investment-section::before{
        left: 50%;
    }
    .investment-wrapper {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }

    .investment-image {
        order: -1; /* Image on top */
        max-width: 400px;
    }

    .investment-title {
        font-size: 42px;
    }

    .price-tag {
        font-size: 64px;
    }

    .investment-description {
        margin: 0 auto 35px;
    }
}


@media (max-width: 576px){
    section {
        padding: 60px 24px !important;
    }
}