.verra-conclusion {
    background: #BFE3BA;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl) var(--spacing-lg) var(--spacing-2xl);
}

.verra-conclusion .vervy-concept__title,
.verra-conclusion .vervy-concept__subtitle,
.verra-conclusion .vervy-conclusion__text {
    color: #272E35;
}

.verra-conclusion .container {
    max-width: 90rem;
    margin: 0 auto;
}

/* Verra Project Specific Styles */

.verra-project {
    background: var(--color-background);
}

/* Hero Section */
.verra-hero {
    background: var(--color-background);
    padding: 4rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.verra-hero::before {
    content: none;
}

.verra-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Hero Video */
.verra-hero__video {
    width: 100vw;
    margin: 0 calc(50% - 50vw) 3rem;
}

/* Project Title */
.verra-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-white);
    margin-top: -15.4375rem;
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 3;
}

/* Info Card */
.verra-info-card {
    background: #BFE3BA;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 1000px;
    margin: -0.0625rem auto 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.verra-info-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.verra-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #424242;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.verra-info-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.verra-info-section {
    margin-bottom: 2rem;
}

.verra-info-section h3 {
    color: #424242;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.verra-info-section p {
    color: #424242;
    line-height: 1.6;
    font-size: 1rem;
}

.verra-info-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.verra-info-item h4 {
    color: #424242;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.verra-info-item p {
    color: #424242;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Video Player in Hero */
.verra-video__player {
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #000;
}

/* Summary Section */
.verra-summary {
    padding: 6rem 0;
    text-align: center;
}

.verra-summary__title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4rem;
    font-family: 'Outfit', sans-serif;
}

.verra-summary__blobs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.verra-blob {
    background: url('../../assets/images/projects/Verra/SVG/Puddle.svg') no-repeat center center;
    background-size: contain;
    border-radius: 0;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    box-shadow: none;
    transition: transform 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.verra-blob:hover {
    transform: translateY(-5px);
}

.verra-blob__icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.verra-blob__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.verra-blob__text {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.verra-blob h3 {
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
}

.verra-blob p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Current Problem Section */
.verra-problem {
    padding: 6rem 0;
    background: var(--color-background);
}

.verra-problem__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.verra-problem__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verra-problem__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.verra-problem__text p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.verra-problem__text ul {
    list-style: none;
    padding: 0;
}

.verra-problem__text li {
    color: var(--color-text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.verra-problem__text li::before {
    content: '•';
    color: var(--color-poppy);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Research Section */
.verra-research {
    padding: 6rem 0;
    background: var(--color-background);
}

.verra-research__title,
.verra-creativity__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.verra-creativity {
    margin-top: 65px;
}

.verra-creativity__totems {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: nowrap;
    width: 1176px;
    height: 517px;
    flex-shrink: 0;
    margin-left: auto;
    margin-right: auto;
}

.verra-creativity__totem-image-wrapper {
    position: relative;
    display: inline-block;
}

.verra-creativity__totem-image {
    height: 390px;
    width: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.verra-creativity__totem-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 390px;
    width: auto;
    display: block;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

.verra-creativity__totem-image-wrapper:hover .verra-creativity__totem-overlay {
    opacity: 1;
}

.verra-creativity__totem-caption {
    margin-top: var(--spacing-sm);
    text-align: center;
    color: var(--color-text);
    font-family: var(--font-family-primary);
    font-size: 1.125rem;
    line-height: 1.5;
}

.verra-creativity__totem-image--small {
    height: 338px;
}

.verra-creativity__totem-image--small ~ .verra-creativity__totem-overlay {
    height: 338px;
}

.verra-empathy {
    padding: var(--spacing-3xl) 0;
}

.verra-empathy__visual {
    margin-top: var(--spacing-2xl);
    display: flex;
    justify-content: center;
}

.verra-empathy__image {
    width: 100%;
    max-width: 72rem;
    display: block;
}

.verra-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    border: none;
}

.verra-carousel__image {
    width: 100% !important;
    height: 500px !important;
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: none;
    object-fit: cover;
    object-position: center;
}

.verra-carousel__image.active {
    display: block;
    opacity: 1;
}

.verra-carousel__caption {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: rgba(25, 25, 25, 0.6);
    font-style: italic;
    text-align: center;
}

.verra-heroshot-image {
    margin-top: 4rem;
    width: 100%;
    padding: 0;
}

.verra-heroshot-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}

.verra-empathy__text {
    max-width: 60rem;
    margin: var(--spacing-lg) 0 0;
    text-align: left;
    color: var(--color-text);
    line-height: 1.6;
}

.verra-research__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.verra-research__item img {
    width: 415px;
    max-width: 100%;
    height: 323px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.verra-research__item p {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* User Journey Section */
.verra-user-journey {
    padding: 6rem 0;
    background: var(--color-background);
}

.verra-user-journey__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.verra-user-journey__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.verra-user-journey__item {
    text-align: center;
}

.verra-user-journey__item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Mockups Section */
.verra-mockups {
    padding: 6rem 0;
    background: var(--color-background);
}

.verra-mockups__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}

.verra-mockups__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

.verra-mockup img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.verra-mockup img:hover {
    transform: scale(1.05);
}

/* Research Part 2 Section */
.verra-research-part2__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.verra-research-part2__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verra-research-part2__image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.verra-research-part2__text p {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Pain Points / Insights Section */
.pain-points {
    /* Aligned with page background to avoid white cards on grey */
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-background);
}

.pain-points__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: left;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-primary);
}

.pain-points__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.pain-points__item {
    /* Make cards breathe on the page without stark white on grey */
    background-color: transparent;
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    /* include background-color in transitions to avoid snapping */
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.pain-points__item:hover {
    /* Softer, interpolated hover with reduced lift and subtle lightening */
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255,255,255,0.1); /* subtle lightening on hover */
}

/* Patient Journey Section */
.verra-patient-journey {
    padding: var(--spacing-3xl) 0;
    background-color: var(--color-background);
}

.verra-patient-journey__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: left;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-primary);
}

.verra-patient-journey__content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    gap: var(--spacing-lg);
}

.verra-patient-journey__content > p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-text);
}

.verra-patient-journey__diagram {
    margin-top: var(--spacing-xl);
    display: flex;
    justify-content: center;
}

.verra-patient-journey__diagram img {
    width: min(100%, 1120px);
    height: auto;
    display: block;
}

.verra-patient-journey__caption {
    margin-top: var(--spacing-lg);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.verra-patient-journey__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--spacing-lg);
    counter-reset: journey-step;
}

.verra-patient-journey__step {
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: grid;
    gap: var(--spacing-sm);
}

.verra-patient-journey__step::before {
    counter-increment: journey-step;
    content: counter(journey-step, decimal-leading-zero);
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: var(--font-size-md);
    font-weight: var(--font-weight-semibold);
    color: var(--color-poppy);
    opacity: 0.6;
}

.verra-patient-journey__step h3 {
    font-size: 1.25rem;
    color: var(--color-text);
    font-family: var(--font-family-primary);
}

.verra-patient-journey__step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

.pain-points__item-title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    color: #BFE3BA;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: var(--spacing-sm);
}

.pain-points__item-description {
    font-size: var(--font-size-base);
    color: rgba(25,25,25,0.85);
    line-height: 1.6;
}

.verra-low-fidelity {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.verra-low-fidelity__description {
    max-width: 56rem;
    margin: var(--spacing-md) 0 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    text-align: left;
}

.verra-low-fidelity__image-wrapper {
    max-width: var(--container-max-width);
    margin: var(--spacing-2xl) auto 0;
    padding: 0 var(--container-padding);
}

.verra-low-fidelity__image {
    width: min(100%, 1120px);
    height: auto;
    display: block;
    margin: 0 auto;
}

.verra-prototype {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.verra-prototype__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: var(--spacing-2xl);
}

.verra-prototype__content--reverse {
    grid-template-columns: 1fr 1.5fr;
    margin-top: calc(var(--spacing-3xl) + var(--spacing-lg));
}

.verra-prototype__image {
    display: flex;
    justify-content: center;
}

.verra-prototype__image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.verra-prototype__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

.verra-prototype__screens {
    margin-top: var(--spacing-3xl);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-xl);
}

.verra-prototype__screen {
    width: 10.851rem;
    height: 22.442rem;
    aspect-ratio: 173.62 / 359.08;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.08);
}

.verra-app,
.verra-wireframe {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.verra-wireframe {
    padding-top: var(--spacing-xl);
}

.verra-app__text {
    margin-top: var(--spacing-md);
    max-width: 56rem;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

.verra-app-summary {
    padding: var(--spacing-3xl) 0 var(--spacing-4xl);
    background: var(--color-background);
    text-align: center;
}

.verra-app-summary__text {
    margin: var(--spacing-md) auto var(--spacing-xl);
    max-width: 56rem;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

.verra-app-summary__frame {
    width: min(100%, 65rem);
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    border: 0.0625rem solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--color-white);
}

.verra-app-summary__iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 768px) {
    .verra-app-summary__frame {
        border-radius: var(--radius-md);
    }
}

.verra-solution {
    padding: var(--spacing-lg) 0;
    background: var(--color-background);
}

.verra-solution:not(:last-of-type) {
    padding-bottom: var(--spacing-md);
}

.verra-solution + .verra-solution {
    margin-top: 6px;
    padding-top: var(--spacing-xs);
}

.verra-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 3rem;
    font-family: 'Outfit', sans-serif;
}

.verra-section-title--conclusion {
    color: #272E35;
}

.verra-conclusion .verra-low-fidelity__title,
.verra-conclusion .pain-points__title,
.verra-conclusion .verra-wireframe__title {
    color: #272E35;
}

.verra-solution__section {
    margin-top: var(--spacing-xl);
}

.verra-solution__mascots {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: var(--spacing-sm);
    align-self: center;
    margin-top: var(--spacing-lg);
}

.verra-solution__mascot {
    width: 7.5rem;
    height: auto;
    object-fit: contain;
}

.verra-solution__text {
    margin-top: var(--spacing-md);
    text-align: left;
    max-width: 40rem;
    margin-left: 0;
    margin-right: auto;
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    white-space: nowrap;
}

.verra-solution__insights-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.verra-solution__insights-content .vervy-pretotyping-buddy__image {
    flex: 0 0 637px;
}

.verra-solution__insights-content .vervy-pretotyping-buddy__image img {
    width: 637px;
    height: 415px;
    display: block;
    border-radius: 33px;
    background: url('../../assets/images/projects/Verra/Mobilier.png') lightgray -149.013px 0px / 173.731% 100% no-repeat;
}

.verra-solution__insights-content .vervy-pretotyping-buddy__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.verra-wireframe__title {
    color: var(--Other-Slate, #272E35);
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.25;
    margin-top: var(--spacing-xs);
}

.verra-wireframe__grid {
    display: flex;
    width: 45.688rem;
    flex-direction: column;
    align-items: center;
    gap: 1.188rem;
    margin: var(--spacing-xl) auto 0;
}

.verra-wireframe__row {
    display: flex;
    width: 100%;
    justify-content: center;
    gap: var(--spacing-lg);
}

.verra-wireframe__row:first-child .verra-wireframe__item {
    flex: 1 1 calc((100% - (var(--spacing-lg) * 4)) / 5);
}

.verra-wireframe__row:last-child .verra-wireframe__item {
    flex: 1 1 calc((100% - (var(--spacing-lg) * 3)) / 4);
}

.verra-wireframe__item {
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: var(--shadow-sm);
    min-width: 0;
    width: 8.738rem;
    height: 18.942rem;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

@media (max-width: 768px) {
    .verra-wireframe__grid {
        width: 100%;
        gap: var(--spacing-lg);
    }

    .verra-wireframe__row {
        flex-wrap: wrap;
        gap: var(--spacing-md);
    }

    .verra-wireframe__row:first-child .verra-wireframe__item,
    .verra-wireframe__row:last-child .verra-wireframe__item {
        flex: 1 1 calc(50% - var(--spacing-md));
        max-width: none;
    }
}

@media (max-width: 480px) {
    .verra-wireframe__row:first-child .verra-wireframe__item,
    .verra-wireframe__row:last-child .verra-wireframe__item {
        flex: 1 1 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .verra-title {
        font-size: 2.5rem;
        margin-top: 0;
        margin-bottom: var(--spacing-xl);
    }
    
    .verra-info-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verra-info-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .verra-summary__blobs {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verra-problem__content,
    .verra-research-part2__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verra-research__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .verra-user-journey__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .verra-prototype__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .verra-prototype__image img {
        max-width: 20rem;
        margin: 0 auto;
    }

    .verra-prototype__screens {
        gap: var(--spacing-lg);
    }

    .verra-prototype__screen {
        width: 9rem;
        height: auto;
    }
    
    .verra-mockups__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .verra-hero {
        padding: 2rem 0 4rem;
    }
    
    .verra-title {
        font-size: 2rem;
    }
    
    .verra-info-card {
        padding: 1.5rem;
    }
    
    .verra-summary,
    .verra-problem,
    .verra-research,
    .verra-user-journey,
    .verra-mockups {
        padding: 3rem 0;
    }
    
    .verra-summary__title,
    .verra-problem__title,
    .verra-research__title,
    .verra-mockups__title {
        font-size: 2rem;
    }
    
    .verra-mockups__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .verra-research-part2__title {
        font-size: 2rem;
    }
}

/* Responsive adjustments for Pain Points */
@media (max-width: 768px) {
    .pain-points__grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-5);
    }

    .pain-points__title {
        font-size: var(--font-size-h3);
        margin-bottom: var(--spacing-5);
    }
}

@media (max-width: 480px) {
    .pain-points {
        padding: var(--spacing-6) 0;
    }

    .pain-points__item {
        padding: var(--spacing-4);
    }

    .pain-points__item-title {
        font-size: var(--font-size-md);
    }

    .pain-points__item-description {
        font-size: var(--font-size-sm);
    }
}

/* Section persona */
.verra-persona {
    padding: var(--spacing-3xl) 0;
    background: var(--color-background);
}

.verra-persona__section-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-secondary);
    text-align: left;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-family-primary);
}

.verra-persona__content {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-2xl);
    align-items: center;
    margin-bottom: var(--spacing-2xl);
}

.verra-persona__image {
    display: flex;
    justify-content: center;
}

.verra-persona__image img {
    width: 100%;
    max-width: 30rem;
    border-radius: var(--radius-md);
}

.verra-persona__text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    font-size: var(--font-size-md);
    color: var(--color-text);
}

.verra-persona__list {
    margin: 0;
    padding-left: var(--spacing-lg);
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.verra-persona__title {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    margin-bottom: var(--spacing-xs);
}

.verra-personas-insights {
    padding: var(--spacing-3xl) 0;
    background: #BFE3BA;
}

.verra-personas-insights p:not(.verra-personas-insights__question) {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

.verra-personas-insights ul {
    margin-top: var(--spacing-md);
    padding-left: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.verra-personas-insights li {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
}

.verra-personas-insights__question {
    color: var(--Other-Slate, #272E35);
    text-align: center;
    font-family: 'Fredoka', var(--font-family-primary);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 120%;
}

@media (max-width: 768px) {
    .verra-persona__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        margin-bottom: var(--spacing-xl);
    }

    .verra-persona__text {
        text-align: left;
    }
}

/* Section Figma Prototype */
.verra-figma-prototype {
    padding: calc(var(--spacing-xl) * 2) 0;
    background-color: var(--color-bg);
}

.verra-figma-prototype__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: calc(var(--spacing-xl) * 1.5);
}

.verra-figma-prototype__wrapper iframe {
    max-width: 100%;
    width: 1200px;
    height: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1280px) {
    .verra-figma-prototype__wrapper iframe {
        width: 100%;
        max-width: 1000px;
        height: 700px;
    }
}

@media (max-width: 1024px) {
    .verra-figma-prototype__wrapper iframe {
        width: 100%;
        max-width: 800px;
        height: 550px;
    }
}

@media (max-width: 768px) {
    .verra-figma-prototype {
        padding: var(--spacing-xl) 0;
    }

    .verra-figma-prototype__wrapper iframe {
        height: 450px;
    }
}

@media (max-width: 480px) {
    .verra-figma-prototype__wrapper iframe {
        height: 350px;
    }
}