@import url('https://fonts.googleapis.com/css2?family=Prata&display=swap');

.brand-audit-hero-section{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 697px;
    position: relative;
}

.brand-audit-hero-section::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 342px;
    height: 342px;
    background: rgba(246, 0, 67, 0.7);
    border-radius: 50%;
    filter: blur(158.39999389648438px)
}

.brand-audit-hero-section .hero-inner{
    justify-content: center;
    height: 100%;
}

.brand-audit-hero-section .hero-inner .hero-content{
    text-align: center;
    align-items: center;
    padding-top: 0;
}

.brand-audit-hero-section .hero-inner .hero-content h1{
    font-size: 56px;
    line-height: 1.1;
    max-width: 1187px;
    text-wrap: balance;
}

.brand-audit-hero-section .hero-content p:first-of-type{
    text-transform: none;
    max-width: 665px;
    font-size: 20px;
}

.brand-audit-hero-section .hero-content p:nth-of-type(2){
    max-width: 1000px;
    font-size: 20px;
}

.brand-audit-hero-section .hero-content p:nth-of-type(2) strong{
    font-weight: 700;
}

.brand-audit-hero-section .hero-content .primary-btn{
    width: fit-content;
    font-size: 18px;
    line-height: 1.6;
}

@media (max-width: 576px){
    .brand-audit-hero-section{
        height: auto;
        padding: 60px 20px;
    }
    .brand-audit-hero-section::before{
        display: none;
    }
    .brand-audit-hero-section .hero-inner .hero-content h1{
        font-size: 40px;
    }
    .brand-audit-hero-section .hero-content p:first-of-type{
        font-size: 18px;
    }
    .brand-audit-hero-section .hero-content p:nth-of-type(2){
        max-width: 100%;
        font-size: 16px;
    }
}

/* Visibility Clarity Section */
.visibility-clarity-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Red glow in the top-left corner as seen in the design */
.visibility-clarity-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -5%;
    width: 342px;
    height: 342px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(60px);
    border-radius: 50%;
    z-index: 0;
}

.clarity-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.clarity-content {
    flex: 1;
}

.clarity-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 35px;
    color: var(--text-color);
}

.clarity-title .text-signature {
    display: inline-block;
    margin-left: 10px;
}

.clarity-lead {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.clarity-list {
    list-style: none;
    padding: 0;
    margin-bottom: 45px;
}

.clarity-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.clarity-list li::before {
    content: '◉';
    color: #A30933; /* Primary red */
    position: absolute;
    left: 0;
    font-size: 14px;
}

.clarity-statement {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
}

.clarity-statement strong {
    font-weight: 850; /* Garet-Bold */
}

/* Image Circular Masking */
.clarity-image-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-mask {
    width: 550px;
    height: 650px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.image-mask img {
    height: 110%; /* Slight zoom to pop out of mask */
    width: auto;
    object-fit: contain;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .clarity-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .image-mask {
        width: 350px;
        height: 350px;
        margin-top: 50px;
    }

    .clarity-title {
        font-size: 42px;
    }
}

.nothing-wrong-with-your-brand-section .work-led-description{
    font-size: 18px ;
}

.nothing-wrong-with-your-brand-section .work-led-content h2{
    font-size: 56px;
}

/* Why This Audit Works Section */
.audit-works-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
}

.audit-works-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.audit-works-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* .audit-works-title .text-signature {
    font-size: 72px;
} */

/* Glassmorphism Content Card */
.audit-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: 60px 50px;
    border-radius: 4px;
}

.audit-intro, 
.audit-description, 
.audit-closing {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.audit-closing {
    margin-bottom: 0;
}

.audit-glass-card strong {
    font-weight: 850; /* Garet-Bold */
    color: #fff;
}

/* Image Styling */
.audit-works-image img {
    width: 100%;
    border-radius: 8px;
    filter: grayscale(100%);
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .audit-works-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .audit-works-title {
        font-size: 42px;
        text-align: center;
    }

    .audit-glass-card {
        padding: 40px 30px;
    }

    .audit-works-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* What You'll Receive Section */
.audit-receive-section {
    padding: 0 24px 100px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

.audit-receive-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%);
    width: 552px;
    height: 552px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.audit-receive-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.audit-receive-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 40px;
    color: var(--text-color);
}

/* Glass Card Styling */
.receive-glass-card {
    background: rgba(15, 15, 15, 1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    border-radius: 8px;
}

/* Updated List with PNG Icon */
.receive-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.receive-list li {
    display: flex;
    align-items: flex-start; /* Aligns check to top of multi-line text */
    gap: 20px;
    margin-bottom: 30px;
}

.receive-check {
    width: 32px;
    height: auto;
    flex-shrink: 0;
    margin-top: 4px; /* Slight offset to center with the first line of text */
}

.receive-list p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.receive-list strong {
    font-weight: 850; /* Garet-Bold */
}

/* Footer Text */
.receive-footer p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
    opacity: 0.7;
}

/* Background Effects */
.audit-receive-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.audit-receive-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    height: auto;
}
@media (max-width: 576px){
    .audit-receive-section::before{
        width: 300px;
        height: 300px;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .audit-receive-section{
        padding: 100px 24px;
    }
    .audit-receive-section::before{
        transform: translate(-50%);
    }
    .audit-receive-grid {
        grid-template-columns: 1fr;
    }
    
    .audit-receive-title {
        font-size: 42px;
        text-align: center;
    }

    .receive-glass-card {
        padding: 40px 25px;
    }

    .receive-list p {
        font-size: 18px;
    }
}

/* Audit Process Section */
.audit-process-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.process-header {
    margin-bottom: 80px;
}

.process-title {
    font-family: 'Prata', serif;
    font-size: 56px;
    color: var(--text-color);
}

/* Step Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

/* Card Styling */
.process-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    max-width: 360px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 49, 81, 0.4);
}

.step-title {
    font-family: 'Prata', serif;
    font-size: 24px;
    color: rgba(166, 49, 81, 1); /* Brand Accent */
    margin-bottom: 20px;
}

.step-description {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Large Numbering Watermark */
.step-number {
    font-family: 'Prata', serif;
    font-size: 100px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03); /* Subtle watermark */
    align-self: flex-end;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .process-title {
        font-size: 42px;
    }

    .process-card {
        min-height: auto;
        margin: 0 auto;
    }
}


/* Difference Clarity Section */
.clarity-difference-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    text-align: center;
    position: relative;
}

/* Central red glow background */
.clarity-difference-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 552px;
    height: 552px;
    background: rgba(246, 0, 67, 0.4);
    filter: blur(80px);
    border-radius: 50%;
    z-index: 0;
}

.difference-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    color: var(--text-color);
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}

/* Comparison Card Styling */
.difference-card {
    background: rgba(15, 15, 15, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 60px 50px;
    text-align: left;
    backdrop-filter: blur(10px);
    height: 100%;
}

.clarity-difference-section .difference-card .card-subtitle {
    font-family: 'Prata', serif;
    font-size: 24px;
    color: rgba(166, 49, 81, 1); /* Brand Pink/Red */
    margin-bottom: 40px;
    text-align: left;
}

/* List with Brand Bullets */
.difference-list {
    list-style: none;
    padding: 0;
}

.difference-list li {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    padding-left: 35px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.difference-list li::before {
    content: '◉';
    position: absolute;
    left: 0;
    top: 10px;
    color: #A30933;
}

@media (max-width: 576px){
    .clarity-difference-section::before{
        width: 300px;
        height: 300px;
    }
}
/* Mobile Responsiveness */
@media (max-width: 992px) {
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .difference-title {
        font-size: 42px;
    }
}

/* Audit Qualification Section */
.audit-qualification-section {
    padding: 100px 24px;
    background-color: var(--body-bg);
    position: relative;
    overflow: hidden;
}

/* Subtle red glow hitting the center-left behind the image */
.audit-qualification-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 274px;
    height: 274px;
    background: rgba(246, 0, 67, 0.4);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.qualification-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.qualification-image img {
    width: 100%;
    border-radius: 12px;
    filter: grayscale(100%); /* Matches the greyscale theme in designs */
    display: block;
}

.qualification-title {
    font-family: 'Prata', serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 45px;
    color: var(--text-color);
}

.qualification-title .text-signature {
    font-size: 72px;
}

/* Qualification Glass Card */
.qualification-glass-card {
    background: rgba(15, 15, 15, 1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 50px;
    border-radius: 4px;
}

.qualification-list {
    list-style: none;
    padding: 0;
}

.qualification-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.qualification-list li:last-child {
    margin-bottom: 0;
}

.qualification-check {
    width: 28px;
    height: auto;
    flex-shrink: 0;
}

.qualification-list p {
    font-family: 'Garet', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .qualification-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .qualification-title {
        font-size: 42px;
        text-align: center;
    }

    .qualification-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* 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: 600px;
}

.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) {
    .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: 576px){
    .visibility-clarity-section, 
    .audit-works-section,
    .audit-receive-section,
    .audit-process-section,
    .clarity-difference-section,
    .audit-qualification-section
    {
        overflow-x: hidden;
        padding: 60px 24px;
    }
    .difference-card{
        padding: 18px;
    }
    .qualification-glass-card, .receive-glass-card{
        padding: 23px;
    }
}