.social-glowup-hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 697px;
    position: relative;
}

.social-glowup-hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: rgba(19, 19, 19, 1);
    opacity: .8;

}

.social-glowup-hero-section .hero-inner{
    justify-content: center;
    height: 100%;
}

.social-glowup-hero-section .hero-inner .hero-content{
    text-align: center;
    align-items: center;
    padding-top: 0;
}

.social-glowup-hero-section .hero-inner .hero-content h1{
    font-size: 56px;
    line-height: 1.1;
    max-width: 930px;
    text-wrap: balance;
}

.social-glowup-hero-section .hero-content p:first-of-type{
    text-transform: none;
    max-width: 665px;
    font-size: 20px;
}

.social-glowup-hero-section .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1.6;
}

.social-glowup-hero-section .see-how-it-works{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

@media (max-width: 576px){
    .social-glowup-hero-section{
        height: auto;
        padding: 160px 20px;
    }
    .social-glowup-hero-section::before{
        display: none;
    }
    .social-glowup-hero-section .hero-inner .hero-content h1{
        font-size: 40px;
    }
    .social-glowup-hero-section .hero-content p:first-of-type{
        font-size: 18px;
    }
}



/* Scattered Presence Section Styling */
.scattered-presence-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Atmospheric Red Glow (Top Left) */
.scattered-presence-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
}

.scattered-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.scattered-content {
    flex: 1.2;
    max-width: 650px;
}

.scattered-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.scattered-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* List with Custom Red Bullets */
.scattered-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.scattered-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.scattered-list li::before {
    content: '◉'; /* Brand consistent bullet character */
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

.scattered-statement {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
}

.scattered-statement strong {
    font-weight: 850; /* Garet-Bold */
}

/* Image Circular Masking */
.scattered-image-area {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.circular-mask {
    width: 600px;
    height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.circular-mask img {
    height: 110%; /* Image pops slightly out of bottom of mask */
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .scattered-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .circular-mask {
        width: 400px;
        height: 400px;
    }

    .scattered-title {
        font-size: 42px;
    }
}

/* Credibility Issue Section Styles */
.credibility-issue-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.credibility-issue-section::before{
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(277px);
    z-index: 0;
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.credibility-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

.credibility-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Glass Card Content Styling */
.credibility-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
}

.credibility-glass-card .card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.credibility-glass-card .card-text:last-of-type {
    margin-bottom: 35px;
}

.credibility-glass-card .card-highlight {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.credibility-glass-card .card-highlight strong {
    font-weight: 850; /* Utilizing Garet-Bold */
}

/* Responsive Mobile Layout */
@media (max-width: 1024px) {
    .credibility-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .credibility-grid :nth-child(2){
        order: 1;
    }
    .credibility-grid :nth-child(1){
        order: 2;
    }

    .credibility-title {
        font-size: 42px;
        text-align: left;
    }

    .credibility-image {
        max-width: 550px;
        margin: 0 auto;
    }
}


/* Strategic Alignment Section Styles */
.strategic-alignment-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow in the top-right background */
.strategic-alignment-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
   background: rgba(246, 0, 67, 0.4);
    filter: blur(80px);
    z-index: 0;
}

.alignment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.alignment-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.alignment-title .text-signature {
    font-size: 64px;
}

/* Glass Card Content Styling */
.alignment-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px 40px;
    border-radius: 4px;
}

.alignment-glass-card .card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.alignment-glass-card .card-highlight {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin: 0;
}

.alignment-glass-card .card-highlight strong {
    font-weight: 850; /* Garet-Bold */
}

/* Grayscale Portrait Styling */
.alignment-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .alignment-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .alignment-title {
        font-size: 42px;
        text-align: left;
    }

    .alignment-image {
        max-width: 550px;
        margin: 0 auto;
    }
}


/* Social Glow-Up Details Section */
.glowup-details-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow in the center background */
.glowup-details-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(177px);
    z-index: 0;
}

.glowup-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.glowup-section-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--text-color);
    max-width: 500px;
    text-wrap: balance;
}

.glowup-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

.glowup-text strong {
    font-weight: 850; /* Garet-Bold */
}

/* Qualifiers Column */
.qualifier-title {
    font-family: 'Prata', serif;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--text-color);
}

.qualifier-glass-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
}

.qualifier-list {
    list-style: none;
    padding: 0;
}

.qualifier-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.qualifier-list li:last-child {
    margin-bottom: 0;
}

.qualifier-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 14px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .glowup-details-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .glowup-section-title {
        font-size: 42px;
    }
}



/* Social Glow-Up Included Section */
.glowup-included-section {
    padding: 100px 0 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.glowup-included-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.glowup-included-header .section-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
    text-align: center;
}

/* Content Area */
.glowup-included-content {
    max-width: 550px; /* Constrain text to leave room for absolute image */
    position: relative;
    z-index: 2;
}

/* Specific Checkmark Badge Icon */
.check-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #A30933;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    margin-right: 15px;
    vertical-align: middle;
}

.inclusion-glass-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 40px;
    border-radius: 4px;
}

.inclusion-glass-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.inclusion-glass-card .card-subtitle img {
    margin-right: 15px;
    width: 24px;
    height: 24px;
    vertical-align: middle;
}

.inclusion-list {
    list-style: none;
    padding: 0;
}

.inclusion-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    opacity: 0.85;
}

.inclusion-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.inclusion-disclaimer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.7;
}

/* Right Side Image - Absolute Positioning */
.glowup-included-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

/* Red Glow behind the image */
.glowup-included-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.glowup-included-image img {
    height: 90%;
    width: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .glowup-included-section {
        padding: 100px 24px;
    }
    .glowup-included-image {
        position: relative;
        width: 100%;
        height: auto;
        transform: none;
        top: 0;
        margin-top: 50px;
        justify-content: center;
    }
    
    .glowup-included-content {
        max-width: 100%;
        text-align: center;
    }
    
    .inclusion-glass-card {
        text-align: left;
    }
}


/* How It Works Section */
.how-it-works-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-it-works-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-it-works-header {
    margin-bottom: 80px;
}

.how-it-works-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
}

/* Step Grid */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

/* Card Styling */
.how-it-works-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-it-works-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 49, 81, 0.5);
}

.how-it-works-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-it-works-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-it-works-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-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-title {
        font-size: 42px;
    }

    .how-it-works-card {
        min-height: auto;
    }
}


/* What Changes Section */
.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;
    font-size: 24px;
}

/* 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: 628px;
    height: auto;
    display: block;
    /* Optional: Grayscale to match previous images if needed */
    filter: grayscale(100%); 
}

/* Content Styling */
.investment-content {
    flex: 1;
    max-width: 600px;
}
.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;
    }
}