/* Homepage Hero Section Styles */
.home-hero-section {
    min-height: 850px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

/* Deep cinematic overlay for premium text contrast */
.home-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.82); /* Dense dark overlay */
    z-index: 1;
}

.home-hero-section .container {
    position: relative;
    z-index: 2;
}

.home-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

/* Typography Hierarchy */
.home-main-title {
    font-family: 'Prata', serif;
    font-size: 84px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-color);
}

.home-tagline {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 32px;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.home-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.85;
}

/* Hero Action Button */
.home-cta-wrap .primary-btn {
    padding: 22px 48px;
    font-size: 18px;
    min-width: 320px;
}

/* Responsive Scaling for Tablets and Mobile */
@media (max-width: 1024px) {
    .home-main-title {
        font-size: 64px;
    }
    
    .home-tagline {
        font-size: 26px;
    }
}

@media (max-width: 768px) {
    .home-hero-section {
        min-height: 700px;
    }

    .home-main-title {
        font-size: 42px;
    }
    
    .home-tagline {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .home-description {
        font-size: 18px;
        line-height: 1.5;
    }
}



/* The Shift Section Styles */
.the-shift-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.shift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.shift-image img {
    width: 100%;
    max-width: 680px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

.shift-title {
    font-family: 'Prata', serif;
    font-size: 82px; /* Large scale for "The Shift" */
    line-height: 1;
    margin-bottom: 40px;
}

/* Content Card Styling */
.shift-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;
    margin-bottom: 40px;
}

.shift-glass-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 32px;
    margin-bottom: 35px;
    color: var(--text-color);
	text-align: left;
}

.shift-points-list {
    list-style: none;
    padding: 0;
}

.shift-points-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.85);
}

/* Red Bullets */
.shift-points-list li::before {
    content: '◉';
    color: #A30933;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 14px;
}

.shift-footer p {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 5px;
    opacity: 0.9;
}

.shift-footer strong {
    font-weight: 850; /* Garet-Bold */
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .shift-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .shift-title {
        font-size: 64px;
    }

    .shift-image {
        max-width: 550px;
        margin: 0 auto;
    }
    .shift-glass-card{
        padding: 20px;
    }
}





.authority-build-section {
    background-color: #000;
    padding: 100px 24px;
    overflow: hidden;
}

.authority-header h2 {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 80px;
}

.problem-grid-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto 100px;
}

/* Central Red Glow exactly as shown in image_f319e0.jpg */
.central-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.5) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 1;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.problem-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-icon {
    width: 60px;
    height: auto;
    margin-bottom: 30px;
}

.problem-card p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* Marquee Styling */
.authority-marquee-wrapper {
    width: 100%;
}

.marquee-item {
    padding: 0 10px;
}

.marquee-item img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
    .authority-header h2 {
        font-size: 38px;
    }
}




/* First Step Section Styling */
.first-step-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle dark glow behind the CTA */
.first-step-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
}

.first-step-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

/* Upper Statement Typography */
.statement-title {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 38px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.statement-subtitle {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 38px;
    letter-spacing: 1px;
    opacity: 0.95;
    /* Replicating the soft glow from image_f3242e.png */
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.first-step-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    max-width: 750px;
    opacity: 0.8;
}

/* CTA Header */
.cta-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: var(--text-color);
}

.first-step-actions .primary-btn {
    padding: 22px 45px;
    font-size: 18px;
    min-width: 320px;
}

/* Responsive Scaling */
@media (max-width: 768px) {
    .statement-title,
    .statement-subtitle {
        font-size: 28px;
    }

    .cta-title {
        font-size: 48px;
    }

    .first-step-lead {
        font-size: 18px;
    }
}



/* Stats Section Styling */
.stats-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.stats-header {
    margin-bottom: 60px;
}

.stats-title .text-signature {
    font-size: 82px;
    display: inline-block;
}

/* Stats Grid Layout */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Stat Card Styling */
.stat-card {
    background: #0F0F0F; /* Matching your earlier card backgrounds */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 60px 20px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(163, 9, 51, 0.3);
}

.stat-number {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
    margin-bottom: 15px;
}

.stat-label {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #A30933; /* Primary Brand Red for labels */
    text-transform: capitalize;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-title .text-signature {
        font-size: 64px;
    }
    
    .stat-number {
        font-size: 42px;
    }
}







/* Featured Work Section */
.featured-work-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow behind the grid */
.featured-work-section::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.2) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.featured-work-section .eyebrow {
    font-family: 'Garet', sans-serif;
    font-size: 18px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.featured-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin: 0;
}

/* Work Grid and Marquee Styling */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.work-marquee {
    position: relative;
    z-index: 1;
    margin: 0 -20px; /* Offset item margins */
}

.work-marquee .work-item {
    width: 400px;
    margin: 0 20px;
}

.work-item {
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-10px);
}

.work-thumbnail {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 40px; /* Matching the rounded corners in image_f38e04.jpg */
    overflow: hidden;
    margin-bottom: 25px;
    background: #111;
}

.work-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.work-item:hover .work-thumbnail img {
    filter: grayscale(0%);
}

/* Project Meta Typography */
.work-category {
    font-family: 'Prata', serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.work-client {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    opacity: 0.7;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .work-marquee {
        margin: 0 -10px;
    }
    
    .work-marquee .work-item {
        width: 300px;
        margin: 0 10px;
    }
    
    .featured-title {
        font-size: 48px;
    }
}















/* Testimonials Section Styling */
.testimonials-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
}

.testimonials-header {
    margin-bottom: 70px;
}

.testimonials-header .eyebrow {
    font-family: 'Garet', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.testimonials-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    margin-top: 10px;
}

.testimonials-slider {
    display: block;
    margin: 0 -20px;
    /* Offset the slide margins */
}

.testimonial-card {
    background: rgba(26, 26, 26, 1);
    border: 5.32px solid rgba(32, 32, 32, 0.93);
    border-radius: 20px;
    padding: 48px;
    min-height: 420px;
    position: relative;
    display: flex !important;
    flex-direction: column;
    /* margin: 0 20px;  Removed from here, applied to slick-slide instead */
}

.testimonial-card>img {
    width: 120px;
}

.testimonial-text {
    flex-grow: 1;
}

.testimonial-card p {
    font-family: 'Garet';
    font-weight: 300;
    font-size: 16px;
    line-height: 27.59px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.testimonial-author img {
    width: 87px;
    height: 87px;
}

.testimonial-author strong {
    font-family: 'Poppins';
    font-weight: 600;
    font-style: SemiBold;
    font-size: 23px;
    line-height: 26.97px;
    letter-spacing: -2%;
    text-transform: capitalize;
}

.testimonials-cta {
    text-align: center;
    margin-top: 70px;
}

.testimonials-slider .slick-track {
    display: flex !important;
}

.testimonials-slider .slick-slide {
    height: inherit !important;
    margin: 0 40px; /* Creates the 80px gap */
    
}

.testimonials-slider {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .testimonials-slider {
        margin: 0;
    }

    .testimonial-card {
        width: 100%;
        padding: 24px;
    }

    .testimonial-card>img {
        width: 80px;
    }

    .testimonial-author img {
        width: 87px;
        height: 87px;
    }

    .testimonial-author strong {
        font-size: 18px;
    }

    .testimonial-text p {
        font-size: 14px;
    }

    .testimonial-text p:last-child {
        margin-bottom: 0;
    }

    .testimonial-author {
        margin-top: 20px;
    }

    .testimonial-author img {
        width: 60px;
        height: 60px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }
}

/* Responsive Scaling */
@media (max-width: 992px) {
    .testimonials-title {
        font-size: 42px;
    }
}
@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 15px;
    }
    .testimonials-title {
        font-size: 36px;
    }
    .testimonial-card {
        padding: 20px;
        min-height: auto;
    }
}







/* The Method Section Styling */
.the-method-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.method-header {
    margin-bottom: 80px;
}

.method-main-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    margin-bottom: 25px;
}

.method-intro {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Method Grid */
.method-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* max-width: 1200px; */
    margin: 0 auto;
}

/* Method Card Styling */
.method-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    height: 100%;
}

/* Background Numbering Watermark */
.card-number {
    position: absolute;
    bottom: 0px;
    right: 14px;
    font-family: 'Prata', serif;
    font-size: 76px;
    color: rgba(255, 255, 255, 0.03); /* Extremely subtle watermark */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.method-card-title {
    font-family: 'Prata', serif;
    font-size: 32px;
    color: #A30933; /* Brand Red */
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.method-card-tagline {
    font-family: 'Garet', sans-serif;
    font-weight: 850; /* Garet-Bold */
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.method-card-text {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* Hover Effect */
.method-card:hover {
    border-color: rgba(163, 9, 51, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .method-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .method-main-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .the-method-section {
        padding: 60px 15px;
    }
    .method-main-title {
        font-size: 36px;
    }
    .method-header {
        margin-bottom: 40px;
    }
    .method-card {
        padding: 40px 25px;
    }
    .method-card-title {
        font-size: 28px;
    }
    .method-card-text, .method-intro {
        font-size: 16px;
    }
}







/* Three Ways To Begin Styling */
.three-ways-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.begin-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    margin-bottom: 80px;
}

.three-ways-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 100px;
    align-items: center;
}

/* Service Box Stack */
.service-stack {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 630px;
}

.service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.service-card {
    background: rgba(15, 15, 15, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px;
    backdrop-filter: blur(20px);
}

.service-header-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}


.service-name {
    font-family: 'Prata', serif;
    font-size: 28px;
    margin: 0;
}

.service-type {
    display: block;
    font-family: 'Garet', sans-serif;
    font-weight: 850;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.service-type::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 12px;
}

.service-details p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.85;
}

/* Specific Smaller Button Styling */
.sm-btn {
    padding: 15px 30px;
    font-size: 14px;
    width: fit-content;
}

/* Right Imagery with Aura */
.three-ways-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.deep-red-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.45) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.three-ways-image img {
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 1;
    filter: grayscale(100%);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .three-ways-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }
    .three-ways-image {
        order: -1;
        margin-bottom: 50px;
        display: none;
    }
}

@media (max-width: 768px) {
    .three-ways-section {
        padding: 60px 15px;
    }
    .begin-title {
        font-size: 38px;
        margin-bottom: 40px;
    }
    .three-ways-grid {
        gap: 50px;
    }
    .service-card {
        padding: 25px;
    }
    .service-name {
        font-size: 24px;
    }
    .deep-red-glow {
        max-width: 100%;
        height: 300px;
    }
    .service-details p {
        font-size: 16px;
    }
}



/* Archetype Quiz Section Styling */
.archetype-quiz-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow hitting the center background */
.archetype-quiz-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.archetype-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 100px;
    position: relative;
    z-index: 1;
    align-items: flex-start;
}

/* Typography Styling */
.archetype-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
}

.archetype-lead {
    font-family: 'Garet', sans-serif;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.archetype-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Quiz Specs List with Small Red Bullets */
.quiz-specs-list {
    list-style: none;
    padding: 0;
}

.quiz-specs-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.quiz-specs-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
    font-size: 12px;
}

/* Glass Card & Right Column */
.archetype-glass-card {
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 50px;
    border-radius: 4px;
    margin-bottom: 40px;
}

.archetype-example-list {
    list-style: none;
    padding: 0;
}

.archetype-example-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    opacity: 0.8;
}

.archetype-example-list li::before {
    content: '●';
    color: #A30933;
    position: absolute;
    left: 0;
}

.archetype-example-list .highlight {
    font-weight: 850; /* Garet-Bold */
    opacity: 1;
}

.archetype-manifesto {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .archetype-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .archetype-quiz-section {
        padding: 60px 15px;
    }
    .archetype-title {
        font-size: 38px;
    }
    .archetype-lead {
        font-size: 18px;
    }
    .archetype-description {
        font-size: 16px;
    }
    .archetype-glass-card {
        padding: 30px 20px;
    }
}










/* Proximity Section Styling */
.proximity-section {
    padding: 100px 24px 200px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red atmospheric glow behind the text card */
.proximity-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(163, 9, 51, 0.25) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
}

.proximity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Image Styling */
.proximity-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Typography Styling */
.proximity-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

.proximity-title .text-signature {
    font-size: 72px;
}

/* Glass Card Content */
.proximity-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;
}

.card-intro,
.card-closing {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.proximity-bullets {
    margin: 30px 0;
}

.proximity-bullets p {
    font-family: 'Garet', sans-serif;
    font-size: 20px;
    margin-bottom: 8px;
    opacity: 0.95;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .proximity-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .proximity-title {
        font-size: 42px;
    }

    .proximity-image {
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .proximity-section {
        padding: 60px 15px;
    }
    .proximity-title {
        font-size: 32px;
    }
    .proximity-title .text-signature {
        font-size: 42px;
    }
    .proximity-glass-card {
        padding: 30px 20px;
    }
    .proximity-bullets p, .card-intro, .card-closing {
        font-size: 16px;
    }
}




/* Investment Section */
.audit-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 */
.audit-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: 100%;
    height: auto;
    display: block;
    /* Optional: Grayscale to match previous images if needed */
    filter: grayscale(100%); 
}

/* Content Styling */
.investment-content {
    flex: 1;
    max-width: 744px;
}

.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-content ul{
    margin-top: 30px;
    list-style: none;
    padding: 0; 
}

.investment-content ul li{
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 8px;
    position: relative;
}

.investment-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .audit-investment-section {
        padding: 65px 24px;
        max-height: none;
    }
    .audit-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: 768px) {
    .audit-investment-section {
        padding: 40px 15px;
    }
    .investment-title {
        font-size: 32px;
    }
    .price-tag {
        font-size: 48px;
    }
    .investment-content ul li {
        font-size: 16px;
    }
    .investment-description {
        font-size: 16px;
    }
}















/* Minimalist Email Input */
.form-control-minimal {
    background: transparent;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
    color: #fff;
    padding: 10px 0 !important;
    width: 100% !important;
    max-width: 400px;
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control-minimal::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.form-control-minimal:focus {
    border-bottom-color: #A30933 !important; /* Brand Primary Red */
}

/* Newsletter Footer Notes */
.newsletter-footer-notes .note {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 4px;
    max-width: 100%;
}

/* Image Circular Mask (if your source image isn't already circular) */
.profile-circle-wrap {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(163, 9, 51, 0.3);
    margin-bottom: 20px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Enhanced Signature Glow to match image_f5c8d8.png */
.signature-glow {
    font-family: 'Brittney Signature', cursive;
    font-size: 64px;
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 
                 0 0 20px rgba(255, 255, 255, 0.4);
    margin-top: -50px; /* Pull signature up over the circle border */
    position: relative;
    z-index: 2;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .signature-glow {
        font-size: 48px;
        margin-top: -30px;
    }
    .born-ready-inner {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .born-ready-content {
        order: 2;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .born-ready-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .born-ready-section {
        padding: 60px 15px;
    }
    .born-ready-content .section-title {
        font-size: 36px;
    }
    .profile-circle-wrap {
        width: 300px;
        height: 300px;
    }
}


@media (max-width: 576px){
    .the-shift-section, 
    .authority-build-section,
    .first-step-section,
    .stats-section,
    .featured-work-section,
    .the-method-section,
    .three-ways-section,
    .archetype-quiz-section,
    .proximity-section{
        padding: 60px 24px;
    }
    .check-icon img{
        width: 20px;
        height: 20px;
    }
}