/* -------------------------------------------------------------------------- */
/*	Visual Identity Page Styles
/* -------------------------------------------------------------------------- */

.aw-iv-page {
    padding-top: var(--aw-header-height);
    background-color: var(--aw-color-light);
    overflow-x: hidden;
}

.aw-iv-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.aw-section-title {
    font-family: var(--aw-font-sans);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--aw-color-dark);
}

.text-center {
    text-align: center;
}

/* Hero */
.aw-iv-hero {
    padding: 8rem 0;
    min-height: 85vh;
    /* Increased slightly */
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Contain SVG */
}

.aw-iv-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Balanced columns */
    gap: 6rem;
    /* More breathing room */
    align-items: center;
}

.aw-iv-hero__title {
    font-family: var(--aw-font-sans);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    color: var(--aw-color-dark);
}

.aw-iv-hero__desc {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 500px;
    color: rgba(26, 11, 10, 0.7);
}

/* Visual SVG Animation */
.aw-iv-hero__visual {
    position: relative;
    color: var(--aw-color-primary);
    /* SVG currentColor */
}

.aw-iv-blueprint {
    width: 100%;
    height: auto;
    max-height: 600px;
}

/* Guide Line Animations */
.aw-iv-guides {
    opacity: 0;
    animation: fadeInGuides 2s ease forwards 0.5s;
}

@keyframes fadeInGuides {
    to {
        opacity: 0.3;
    }
}

/* Shape Animations (Draw Effect) */
/* Shape Animations (Draw Effect) */
:root {
    --logo-purple: #9500FF;
    --logo-pink: #FF005F;
}

.logo-purple {
    stroke: var(--logo-purple);
}

.logo-pink {
    stroke: var(--logo-pink);
}

.shape-e-block {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    fill: transparent;
    animation: drawLine 2s ease-out forwards 0.5s, fillPurple 1s ease forwards 2.5s;
}

.shape-x-block {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    fill: transparent;
    animation: drawLine 2.5s ease-out forwards 1s, fillPink 1s ease forwards 3s;
}

.shape-p-block {
    stroke-dasharray: 5000;
    stroke-dashoffset: 5000;
    fill: transparent;
    animation: drawLine 2s ease-out forwards 1.5s, fillPurple 1s ease forwards 3.2s;
}

.shape-dot {
    opacity: 0;
    transform: scale(0);
    fill: var(--logo-pink);
    transform-box: fill-box;
    transform-origin: center;
    animation: popIn 0.5s ease-out forwards 3.5s;
}

@keyframes fillPurple {
    to {
        fill: var(--logo-purple);
    }
}

@keyframes fillPink {
    to {
        fill: var(--logo-pink);
    }
}

/* Accents */
.aw-iv-accents circle {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.aw-iv-accents circle:nth-child(1) {
    animation-delay: 2.0s;
    transform-origin: 100px 200px;
}

.aw-iv-accents circle:nth-child(2) {
    animation-delay: 2.1s;
    transform-origin: 100px 400px;
}

.aw-iv-accents circle:nth-child(3) {
    animation-delay: 2.2s;
    transform-origin: 100px 300px;
}

.aw-iv-accents circle:nth-child(4) {
    animation-delay: 2.8s;
    transform-origin: 270px 300px;
}

.aw-iv-accents circle:nth-child(5) {
    animation-delay: 3.5s;
    transform-origin: 390px 200px;
}

.aw-iv-accents circle:nth-child(6) {
    animation-delay: 3.6s;
    transform-origin: 390px 300px;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .aw-iv-hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .aw-iv-hero__desc {
        margin: 0 auto;
    }

    .aw-iv-hero__visual {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Intro */
.aw-iv-intro {
    padding: 6rem 0;
    background-color: #fff;
}

.aw-iv-intro__grid {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.aw-iv-intro__highlight {
    background: var(--aw-color-dark);
    color: #fff;
    padding: 3rem;
    position: relative;
    border-radius: 4px;
}

.aw-iv-intro__highlight blockquote {
    font-size: 1.5rem;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.aw-iv-intro__highlight cite {
    font-family: var(--aw-font-sans);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.7;
}

/* Process */
.aw-iv-process {
    padding: 8rem 0;
    background-color: var(--aw-color-light);
}

.aw-iv-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.aw-iv-step {
    padding: 2rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.aw-iv-step:hover {
    transform: translateY(-10px);
}

.aw-iv-step__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--aw-color-primary);
    opacity: 0.2;
    margin-bottom: 1rem;
    line-height: 1;
}

.aw-iv-step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--aw-color-dark);
}

.aw-iv-step__desc {
    font-size: 0.95rem;
    color: rgba(26, 11, 10, 0.7);
    line-height: 1.6;
}

/* Deliverables */
.aw-iv-deliverables {
    padding: 8rem 0;
    background-color: var(--aw-color-dark);
    color: #fff;
}

.aw-iv-deliverables .aw-section-title {
    color: #fff;
    margin-bottom: 4rem;
}

.aw-iv-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.aw-iv-list li {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aw-iv-list__icon {
    font-size: 1.5rem;
    color: var(--aw-color-primary);
}

.aw-iv-list strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.aw-iv-list span {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.5;
}

/* FAQ */
.aw-iv-faq {
    padding: 8rem 0;
    background-color: #fff;
}

.aw-accordion {
    max-width: 800px;
    margin: 4rem auto 0;
}

.aw-accordion__item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.aw-accordion__header {
    list-style: none;
    padding: 1.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aw-accordion__header::-webkit-details-marker {
    display: none;
}

.aw-accordion__icon {
    font-weight: 300;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.aw-accordion__item[open] .aw-accordion__icon {
    transform: rotate(45deg);
}

.aw-accordion__content {
    padding-bottom: 2rem;
    color: rgba(26, 11, 10, 0.7);
    line-height: 1.6;
}



/* Responsive */
@media (max-width: 768px) {

    .aw-iv-intro__grid,
    .aw-iv-list {
        grid-template-columns: 1fr;
    }

    .aw-iv-intro__highlight {
        margin-top: 2rem;
    }
}