.fix-frames-hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 697px;
    position: relative;
}

.fix-frames-hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, .9) 30.29%, rgba(0, 0, 0, 0) 100%);

}

.fix-frames-hero-section .hero-inner{
    justify-content: center;
    height: 100%;
}

.fix-frames-hero-section .hero-inner .hero-content{
    text-align: center;
    align-items: center;
    padding-top: 0;
}

.fix-frames-hero-section .hero-inner .hero-content h1{
    font-size: 56px;
    line-height: 1.1;
    max-width: 1187px;
    text-wrap: balance;
}

.fix-frames-hero-section .hero-content p:first-of-type{
    text-transform: none;
    max-width: 665px;
    font-size: 20px;
}

.fix-frames-hero-section .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1.6;
}

.fix-frames-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){
    .fix-frames-hero-section{
        height: auto;
        padding: 160px 20px;
    }
    .fix-frames-hero-section::before{
        display: none;
    }
    .fix-frames-hero-section .hero-inner .hero-content h1{
        font-size: 40px;
    }
    .fix-frames-hero-section .hero-content p:first-of-type{
        font-size: 18px;
    }
}

/* Video Need Section Styles */
.video-need-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    overflow: hidden;
}

.video-need-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.video-need-content {
    flex: 1;
    max-width: 600px;
}

.video-need-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-color);
}


.video-need-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 25px;
    font-weight: 400;
}

.video-need-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* List with Small Red Bullets */
.video-need-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.video-need-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.video-need-list li::before {
    content: '◉';
    color: #A30933; /* Primary Red */
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 2px;
}

.video-need-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Image with Radial Glow Background */
.video-speaker-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.red-glow-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(45px);
    z-index: 1;
}

.speaker-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
    width: 500px;
}



/* Responsive Mobile Layout */
@media (max-width: 1024px) {
    .video-need-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .video-speaker-image {
        margin-top: 60px;
    }

    .video-need-title {
        font-size: 42px;
    }
}

/* The Issue Isn't The Camera Section */
.camera-issue-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}


.camera-issue-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.camera-issue-image img {
    width: 600px;
    border-radius: 12px;
    display: block;
}

.camera-issue-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}


/* Glass Card Styling */
.camera-glass-card {
    background: rgba(15, 15, 15, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    max-width: 578px;
}

.camera-glass-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--text-color);
}

.camera-glass-card .card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.camera-glass-card .card-highlight {
    font-family: 'Garet', sans-serif;
    font-size: 19px;
    line-height: 1.5;
    margin-top: 30px;
    margin-bottom: 0;
}

.camera-glass-card .card-highlight strong {
    font-weight: 850; /* Garet-Bold */
}

.camera-issue-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    opacity: 0.7;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .camera-issue-wrapper {
        flex-direction: column-reverse;
        gap: 60px;
    }  
    .camera-issue-title {
        font-size: 42px;
        text-align: left;
    }

    .camera-issue-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Thought Leader Section */
.thought-leader-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.thought-leader-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.thought-leader-content {
    flex: 1;
}

.thought-leader-content-wrapper {
    max-width: 706px;
}

.thought-leader-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.thought-leader-title .text-signature {
    color: #A30933;
}

.thought-leader-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.thought-leader-lead strong {
    font-weight: 850;
}

.thought-leader-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    opacity: 0.9;
}

.thought-leader-description strong {
    font-weight: 850;
}

.thought-leader-footer {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.7;
}

/* Portrait Image with Red Aura */
.thought-leader-image {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;
}

.red-glow-aura {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(45px);
    z-index: 1;
}

.portrait-img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: 700px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .thought-leader-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .thought-leader-title {
        font-size: 42px;
        text-align: left;
    }
    
    .thought-leader-image {
        max-width: 500px;
        margin: 0 auto;
    }
    ..portrait-img{
        height: auto;
    }
}

/* What Is Flix & Frames Section */
.what-is-flix-section {
    padding: 100px 24px;
    position: relative;
}
.what-is-flix-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: rgba(86, 23, 40, 1);
    filter: blur(120px);
    border-radius: 50%;
    z-index: 0;
}

@media (max-width: 576px){
    .what-is-flix-section::before{
       display: none;
    }
}

.what-is-flix-section > *{
    z-index: 1;
    position: relative;
}

.what-is-header {
    text-align: center;
    margin-bottom: 60px;
}

.what-is-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    color: var(--text-color);
}

.what-is-title .text-signature {
    color: #A30933;
}

.what-is-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.what-is-card {
    background: rgba(15, 15, 15, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 4px;
}

.what-is-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 400;
    color: var(--text-color);
}

.what-is-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-is-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.what-is-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 2px;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .what-is-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .what-is-flix-section::before{
        width: 400px;
        height: 400px;
    }
    
    .what-is-title {
        font-size: 42px;
    }
}

/* Receipts Section Styling */
.receipts-section {
    padding: 100px 24px;
    position: relative;
}

/* Background red glow effect */
/* .receipts-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.3) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
} */

.receipts-header {
    text-align: center;
    margin-bottom: 80px;
}

.receipts-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.2;
    color: var(--text-color);
}

/* Glassmorphism Card Container */
.receipts-glass-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 10px 10px 30px;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.receipts-grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.receipts-content .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 40px;
    color: var(--text-color);
    text-align: start;
}

/* List with Brand Bullets */
.receipts-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.receipts-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.receipts-list li::before {
    content: '◉';
    position: absolute;
    left: 0;
    top: 0;
    color: #A30933;
    font-size: 16px;
}

.delivery-timeline {
    font-family: 'Garet', sans-serif;
    font-size: 18px;
    opacity: 0.8;
}

/* Responsive Video Container for YouTube Shorts */
.receipts-video .video-container {
    position: relative;
    width: 287px;
    padding-bottom: 147%; /* 9:16 Aspect Ratio for vertical video */
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.receipts-video .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 287px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .receipts-grid {
        grid-template-columns: 1fr;
    }
    
    .receipts-title {
        font-size: 38px;
    }

    .receipts-glass-card {
        padding: 40px 30px;
    }

    .receipts-video {
        max-width: 350px;
        margin: 0 auto;
    }
}

/* 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: 445px;
    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;
        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){
    .video-need-section,
    .camera-issue-section,
    .thought-leader-section,
    .what-is-flix-section,
    .receipts-section,
    .how-it-works-section,
    .what-changes-section
    {
        padding: 60px 24px;
    }
}