:root {
    --youwe-dark: #141414;
    --youwe-green: #c8f902;
    --youwe-teal: #4fd79d;
    --youwe-purple: #9c88ff;
    --youwe-muted: #f0f2f5;
    --site-width: 80rem;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

body {
    background: #fff;
    color: var(--youwe-dark);
    font-family: Jost, Arial, sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    color: var(--youwe-dark);
    transition: background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header--transparent:not(.is-scrolled) {
    color: #fff;
    background: transparent;
}

.site-header--sticky,
.site-header.is-scrolled,
.site-header.is-mobile-open {
    color: var(--youwe-dark);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
    max-width: var(--site-width);
    height: 4rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.desktop-nav {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

.nav-link,
.nav-dropdown__button,
.footer-dropdown__button {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border: 0;
    background: transparent;
    color: inherit;
    padding: 0.65rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

.nav-link:hover,
.nav-dropdown__button:hover,
.footer-dropdown__button:hover {
    opacity: 0.7;
}

.nav-chevron {
    width: 0.45rem;
    height: 0.45rem;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
}

.nav-dropdown,
.footer-dropdown {
    position: relative;
}

.nav-dropdown__panel,
.footer-dropdown__panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: min(44rem, calc(100vw - 2rem));
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    padding: 1.5rem 2rem 2rem;
    color: var(--youwe-dark);
    background: #fff;
    border: 1px solid #f0f0f0;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.footer-dropdown__panel {
    left: 0;
    transform: none;
}

.nav-dropdown.is-open .nav-dropdown__panel,
.footer-dropdown.is-open .footer-dropdown__panel,
.nav-dropdown:hover .nav-dropdown__panel,
.footer-dropdown:hover .footer-dropdown__panel {
    display: grid;
}

.nav-dropdown__title {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.nav-dropdown__column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-dropdown__column li + li {
    margin-top: 0.45rem;
}

.nav-dropdown__column li a {
    color: #6b7280;
    font-size: 0.8rem;
}

.nav-dropdown__column li a:hover {
    color: var(--youwe-dark);
}

.header-cta,
.mobile-menu__cta {
    display: none;
    align-items: center;
    gap: 0.65rem;
    border-radius: 999px;
    background: var(--youwe-green);
    color: var(--youwe-dark);
    padding: 0.65rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 700;
}

.header-cta:hover,
.mobile-menu__cta:hover {
    background: #fff;
}

.mobile-toggle {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.mobile-toggle span:not(.sr-only) {
    width: 1.35rem;
    height: 2px;
    background: currentColor;
    border-radius: 99px;
}

.mobile-menu {
    padding: 1rem 1.5rem 1.5rem;
    color: var(--youwe-dark);
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.mobile-menu__service-toggle,
.mobile-menu__link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border: 0;
    background: transparent;
    color: var(--youwe-dark);
    font-weight: 600;
    text-align: left;
}

.mobile-menu__services {
    display: grid;
    gap: 1rem;
    padding: 0.5rem 0 1rem 1rem;
}

.mobile-menu__service-title,
.mobile-menu__sub-link {
    display: block;
}

.mobile-menu__service-title {
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.mobile-menu__sub-link {
    padding: 0.2rem 0 0.2rem 0.75rem;
    color: #6b7280;
    font-size: 0.85rem;
}

.mobile-menu__cta {
    display: inline-flex;
    margin-top: 1rem;
}

.site-footer {
    background: var(--youwe-dark);
    color: #fff;
}

.site-footer__top,
.site-footer__bottom {
    border-color: rgba(255, 255, 255, 0.1);
    border-style: solid;
}

.site-footer__top {
    border-width: 0 0 1px;
}

.site-footer__bottom {
    border-width: 1px 0 0;
}

.site-footer__nav,
.site-footer__main,
.site-footer__bottom {
    max-width: var(--site-width);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.site-footer__nav {
    min-height: 5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.site-footer__nav a,
.footer-dropdown__button {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
}

.site-footer__main {
    padding-top: 4rem;
    padding-bottom: 4rem;
    display: grid;
    gap: 3rem;
}

.footer-brand-line {
    display: flex;
    gap: 0.5rem;
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 0.9;
    font-weight: 800;
    letter-spacing: -0.08em;
}

.footer-brand-line .accent,
.footer-statements span:first-child {
    color: var(--youwe-green);
}

.footer-statements {
    display: grid;
    gap: 0.25rem;
    margin-top: 2rem;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.footer-statements span:nth-child(2) {
    color: var(--youwe-teal);
}

.footer-statements span:nth-child(3) {
    color: var(--youwe-purple);
}

.site-footer__columns {
    display: grid;
    gap: 2rem;
}

.site-footer__columns h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
}

.site-footer__columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.55rem;
}

.site-footer__columns li,
.site-footer__columns a,
.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.9rem;
}

.site-footer__columns a:hover,
.site-footer__bottom a:hover {
    color: #fff;
}

.site-footer__bottom {
    min-height: 4.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.site-logo--footer span:first-child {
    color: #fff;
}

.site-footer__socials {
    display: flex;
    gap: 1rem;
}

.page-shell {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 9rem 1.5rem 5rem;
}

.page-shell h1 {
    margin: 0 0 1rem;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.05em;
}

.page-shell p {
    max-width: 42rem;
    color: #4b5563;
    font-size: 1.1rem;
    line-height: 1.7;
}

.page-shell--dark {
    max-width: none;
    min-height: 34rem;
    padding: 10rem 1.5rem 7rem;
    background: var(--youwe-dark);
    color: #fff;
}

.page-shell--dark > div {
    max-width: var(--site-width);
    margin: 0 auto;
}

.page-shell--dark p {
    color: rgba(255, 255, 255, 0.72);
}

.page-shell__accent {
    color: var(--youwe-green);
}

.container {
    max-width: var(--site-width);
    margin: 0 auto;
    padding-inline: 1.5rem;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.eyebrow {
    margin: 0 0 1.5rem;
    color: #9ca3af;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: rgba(255, 255, 255, 0.45);
}

.btn-green {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    border: 1.5px solid var(--youwe-green);
    border-radius: 999px;
    background: var(--youwe-green);
    color: var(--youwe-dark);
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-green:hover {
    background: #fff;
    border-color: #fff;
}

.home-hero {
    position: relative;
    overflow: hidden;
    min-height: 35rem;
    display: grid;
    place-items: center;
    background: var(--youwe-dark);
    color: #fff;
    padding: 7rem 0 5rem;
}

.hero-dots {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-hero h1 {
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.home-hero h1 span {
    color: var(--youwe-green);
}

.home-intro {
    position: relative;
    overflow: hidden;
    background: var(--youwe-muted);
    padding: 6rem 0 8rem;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
}

.home-intro::before {
    content: "";
    position: absolute;
    left: -10%;
    top: 28%;
    width: 120%;
    height: 42%;
    background: rgba(0, 0, 0, 0.04);
    transform: skewY(8deg);
}

.home-intro .container {
    position: relative;
    z-index: 1;
}

.home-intro h2,
.services-section h2,
.podcast-section h2,
.logo-section h2 {
    margin: 0;
    color: var(--youwe-dark);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.home-intro p,
.podcast-section p,
.podcast-section li {
    color: var(--youwe-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.home-intro__cases-cta {
    margin-top: 5rem;
}

.home-intro__cases-cta h2 {
    margin-bottom: 2rem;
}

.services-section,
.podcast-section {
    padding: 6rem 0;
    background: #fff;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    display: flex;
    min-height: 28rem;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #fff;
}

.service-card__body {
    padding: 1.5rem;
}

.service-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    letter-spacing: 0;
}

.service-card p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-card img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img,
.case-card:hover img,
.team-photos img:hover {
    transform: scale(1.04);
}

.service-card__arrow {
    display: flex;
    justify-content: flex-end;
    padding: 1rem;
}

.case-highlight-section {
    padding: 6rem 0;
    background: #7a7a7a;
}

.case-highlight-section h2 {
    margin: 0 0 2.5rem;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.case-collage,
.case-collage__column,
.case-collage__pair {
    display: grid;
    gap: 1rem;
}

.case-collage__pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-card {
    position: relative;
    display: block;
    overflow: hidden;
    background: #222;
}

.case-card--large {
    min-height: 22.5rem;
}

.case-card--small {
    min-height: 13.75rem;
}

.case-card--tall {
    min-height: 26.25rem;
}

.case-card--short {
    min-height: 10rem;
}

.case-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 1.5rem;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent);
}

.case-card__overlay h2,
.case-card__overlay h3,
.case-card__overlay p {
    margin: 0;
}

.case-card__overlay h2,
.case-card__overlay h3 {
    font-size: 1.1rem;
    line-height: 1.2;
}

.case-card__overlay p {
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.4;
}

.center-cta {
    margin-top: 2.5rem;
    text-align: center;
}

.podcast-section__image {
    width: 100%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.logo-section {
    overflow: hidden;
    padding: 5rem 0;
    background: var(--youwe-muted);
}

.logo-section h2 {
    margin-bottom: 2.5rem;
    font-size: clamp(1.6rem, 3vw, 2rem);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.logo-scroll-track:hover {
    animation-play-state: paused;
}

.logo-item {
    width: 9.5rem;
    height: 5rem;
    margin-inline: 2rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
}

.logo-item img {
    max-width: 7.5rem;
    max-height: 3rem;
    filter: grayscale(1);
    object-fit: contain;
    transition: filter 0.2s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
}

.team-photos {
    display: grid;
    grid-template-columns: 1fr;
}

.team-photos img {
    width: 100%;
    height: 17.5rem;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.page-title {
    padding: 8rem 0 3rem;
    background: #fff;
}

.page-title h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.cases-listing {
    padding: 0 0 6rem;
    background: #fff;
}

.case-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.case-filter {
    border: 1px solid var(--youwe-dark);
    border-radius: 999px;
    background: #fff;
    color: var(--youwe-dark);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.case-filter:hover,
.case-filter.is-active {
    background: var(--youwe-dark);
    color: #fff;
}

.case-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.case-grid--related {
    margin-top: 0;
}

.case-card--listing {
    min-height: 21.25rem;
    border-radius: 0.8rem;
}

.case-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.case-card__tags span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.cases-empty {
    margin-top: 2rem;
    color: var(--youwe-dark);
}

.contact-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

.contact-page__info,
.contact-page__form {
    padding: 8rem 1.5rem 3rem;
}

.contact-page__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--youwe-dark);
    color: #fff;
}

.contact-page__info h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.contact-page__info h1 span {
    color: var(--youwe-green);
}

.contact-page__intro,
.contact-page__direct,
.feature-list p {
    color: rgba(255, 255, 255, 0.72);
}

.contact-page__intro {
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    display: grid;
    gap: 1.5rem;
}

.feature-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-list__check {
    width: 1.35rem;
    height: 1.35rem;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--youwe-green);
    color: var(--youwe-dark);
    font-size: 0.8rem;
    font-weight: 800;
}

.feature-list strong {
    display: block;
    color: #fff;
}

.feature-list p {
    margin: 0.25rem 0 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-page__direct {
    margin: 3rem 0 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-page__direct a {
    color: #fff;
    text-decoration: underline;
}

.contact-page__direct a:hover {
    color: var(--youwe-green);
}

.contact-page__form {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: #fff;
}

.hubspot-form {
    width: 100%;
    max-width: 34rem;
}

.image-hero {
    background: #fff;
    padding-top: 8rem;
}

.image-hero h1 {
    margin: 0 0 2.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.image-hero > img {
    display: block;
    width: 100%;
    max-height: 38rem;
    object-fit: cover;
}

.content-section {
    padding: 5rem 0;
    background: #fff;
}

.content-section--muted {
    background: var(--youwe-muted);
}

.content-section h2 {
    margin: 0 0 1.5rem;
    color: var(--youwe-dark);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.content-section h3 {
    margin: 0 0 0.5rem;
    color: var(--youwe-dark);
    font-size: 1.25rem;
}

.content-section p,
.content-section a {
    color: var(--youwe-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.content-section a {
    font-weight: 700;
}

.content-section a:hover {
    text-decoration: underline;
}

.content-section__media-row {
    align-items: center;
}

.content-section__media-row > img {
    width: 100%;
    object-fit: cover;
}

.content-section__media-row--reverse > img {
    order: 2;
}

.service-hero {
    padding-top: 9rem;
}

.service-hero h1 {
    margin: 0;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.inline-cta {
    margin-top: 2rem;
    padding: 0.5rem 0 0.5rem 1.5rem;
    border-left: 4px solid var(--youwe-green);
}

.inline-cta strong {
    display: block;
    margin-bottom: 0.4rem;
}

.inline-cta p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
    line-height: 1.55;
}

.inline-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.narrow-content {
    max-width: 48rem;
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
}

.value-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-card img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: contain;
}

.value-card h3 {
    margin: 0;
}

.value-card p {
    margin: 0;
    white-space: normal;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.thanks-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr;
}

.thanks-page__image,
.thanks-page__content {
    padding-top: 8rem;
}

.thanks-page__image {
    display: flex;
    flex-direction: column;
    background: var(--youwe-muted);
}

.thanks-page__image img {
    width: 100%;
    flex: 1;
    min-height: 24rem;
    object-fit: cover;
}

.thanks-page__image p {
    margin: 0;
    padding: 1.5rem;
    border-top: 1px solid #d1d5db;
    color: #4b5563;
    font-size: 0.9rem;
}

.thanks-page__image a {
    color: var(--youwe-dark);
    text-decoration: underline;
}

.thanks-page__image a:hover {
    color: var(--youwe-green);
}

.thanks-page__content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1.5rem;
    padding-bottom: 4rem;
    background: #fff;
}

.thanks-page__content > div {
    max-width: 34rem;
}

.thanks-page__content h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.thanks-page__content p {
    color: var(--youwe-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.thanks-page__content span {
    color: #6b7280;
}

.ai-hero,
.ai-dark-section,
.ai-cta {
    background: var(--youwe-dark);
    color: #fff;
}

.ai-hero {
    padding: 9rem 0 5rem;
}

.ai-hero__grid {
    align-items: center;
}

.ai-hero h1 {
    margin: 0 0 0.25rem;
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.ai-hero h1 span,
.eyebrow--green {
    color: var(--youwe-green);
}

.ai-hero h2 {
    margin: 0 0 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.2;
    font-weight: 300;
}

.ai-hero p,
.ai-dark-section p,
.ai-cta p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.75;
}

.ai-hero img {
    width: 100%;
    object-fit: cover;
}

.section-intro {
    max-width: 42rem;
    margin: 1.5rem 0 0;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.compact-grid {
    margin-top: 0;
}

.info-card,
.dark-card {
    padding: 2rem;
}

.info-card {
    background: var(--youwe-muted);
}

.content-section--muted .info-card {
    background: #fff;
}

.info-card--accent {
    border-left: 4px solid var(--youwe-green);
}

.info-card h3,
.dark-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.25;
}

.info-card p,
.dark-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline {
    position: relative;
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.timeline__item {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 2rem;
}

.timeline__item span {
    font-size: 0.9rem;
    font-weight: 800;
    text-align: right;
}

.timeline__item h3 {
    margin-bottom: 0.4rem;
}

.timeline__item p {
    margin: 0;
}

.ai-dark-section,
.ai-cta {
    padding: 5rem 0;
}

.ai-dark-section h2,
.ai-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.dark-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-card h3 {
    color: var(--youwe-green);
}

.ai-dark-section blockquote {
    margin: 4rem 0 0;
    padding-left: 2rem;
    border-left: 4px solid var(--youwe-green);
    color: #fff;
    font-size: clamp(1.3rem, 3vw, 2rem);
    line-height: 1.25;
    font-weight: 800;
}

.ai-dark-section cite {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.team-card {
    overflow: hidden;
    background: var(--youwe-muted);
}

.team-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top;
}

.team-card div {
    padding: 1.25rem;
}

.team-card h3,
.team-card p {
    margin: 0;
}

.team-card h3 {
    font-size: 1rem;
    line-height: 1.25;
}

.team-card p:nth-child(2) {
    margin: 0.25rem 0 0.75rem;
    color: rgba(20, 20, 20, 0.6);
    font-size: 0.9rem;
    line-height: 1.35;
}

.team-card p:nth-child(3) {
    font-size: 0.82rem;
    line-height: 1.55;
}

.faq-item {
    border-bottom: 1px solid rgba(20, 20, 20, 0.2);
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: var(--youwe-dark);
    padding: 1.25rem 0;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-item [data-faq-panel] {
    padding-bottom: 1.25rem;
}

.faq-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.ai-cta .container {
    max-width: 54rem;
}

.ai-cta h2 {
    margin-bottom: 1rem;
}

.ai-cta .btn-green {
    margin-top: 2rem;
}

.ai-cta__contact {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.42) !important;
    font-size: 0.9rem !important;
}

.ai-cta__contact a {
    text-decoration: underline;
}

.case-detail-hero {
    padding: 9rem 0 5rem;
    background: #fff;
}

.case-detail-hero__grid {
    align-items: center;
}

.case-detail-hero h1 {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 7vw, 5rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.06em;
}

.case-detail-hero p:not(.eyebrow) {
    color: var(--youwe-dark);
    font-size: 1.25rem;
    line-height: 1.5;
}

.case-detail-hero img {
    width: 100%;
    min-height: 20rem;
    object-fit: cover;
}

.case-detail-section {
    max-width: 56rem;
}

.case-detail-section > p {
    margin: 0 0 1.25rem;
    color: var(--youwe-dark);
    font-size: 1rem;
    line-height: 1.75;
}

.result-list {
    display: grid;
    gap: 0.75rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}

.result-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--youwe-dark);
    line-height: 1.6;
}

.result-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--youwe-green);
}

.case-quote {
    padding: 5rem 0;
    background: var(--youwe-dark);
    color: #fff;
}

.case-quote blockquote {
    max-width: 62rem;
    margin: 0;
    padding-left: 2rem;
    border-left: 4px solid var(--youwe-green);
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1.25;
    font-weight: 800;
}

.case-quote cite {
    display: block;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    font-style: normal;
    font-weight: 500;
}

.legal-page {
    padding: 9rem 0 5rem;
    background: #fff;
}

.legal-page .container {
    max-width: 58rem;
}

.legal-page h1 {
    margin: 0 0 3rem;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.legal-section {
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
}

.legal-section h2 {
    margin: 0 0 1rem;
    font-size: 1.35rem;
    line-height: 1.25;
}

.legal-section p,
.legal-section li {
    color: var(--youwe-dark);
    font-size: 0.98rem;
    line-height: 1.7;
}

.legal-section ul {
    margin: 1rem 0 0;
    padding-left: 1.25rem;
}

@media (min-width: 768px) {
    .desktop-nav,
    .header-cta {
        display: inline-flex;
    }

    .mobile-toggle {
        display: none;
    }

    .site-footer__main {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }

    .site-footer__columns {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .two-column {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 4rem;
    }

    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-collage {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-photos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-page__info,
    .contact-page__form {
        padding-inline: 3rem;
    }

    .value-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .thanks-page {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .thanks-page__image p,
    .thanks-page__content {
        padding-inline: 4rem;
    }

    .card-grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid--three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .case-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .card-grid--three {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .team-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .nav-dropdown__panel,
    .footer-dropdown__panel {
        position: static;
        min-width: 0;
        transform: none;
        grid-template-columns: 1fr;
    }
}
