* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #efe8dc;
    color: #111111;
}

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

button {
    font: inherit;
}

/* HEADER */

.brutal-header {
    top: 0;
    z-index: 1000;
    padding: 18px;
}

.brutal-navbar {
    max-width: 1400px;
    margin: 0 auto;
    min-height: 110px;
    display: grid;
    grid-template-columns: 1.3fr 1fr auto;
    align-items: start;
    gap: 18px;
    padding: 18px 20px;
    background: #111111;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #ff5a36;
}

.brutal-brand {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.brutal-brand-small {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #f3efe6;
    opacity: 0.72;
}

.brutal-brand-main {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    font-weight: 900;
    letter-spacing: -0.09em;
    color: #f3efe6;
}

.brutal-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding-top: 8px;
}

.brutal-nav a {
    position: relative;
    display: inline-block;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f3efe6;
    border: 1px solid transparent;
    transition: transform 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.brutal-nav a:hover {
    background: #f3efe6;
    color: #111111;
    transform: translate(-4px, -4px);
    box-shadow: 4px 4px 0 #8b7cff;
}

.brutal-actions {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}



/* MOBILE MENU */

.brutal-toggle {
    display: none;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 2px solid #111111;
    background: #8b7cff;
    position: relative;
    cursor: pointer;
    box-shadow: 4px 4px 0 #f3efe6;
}

.brutal-toggle span {
    position: absolute;
    left: 50%;
    width: 22px;
    height: 3px;
    background: #111111;
    transform: translateX(-50%);
    transition: top 0.2s ease, transform 0.2s ease;
}

.brutal-toggle span:first-child {
    top: 22px;
}

.brutal-toggle span:last-child {
    top: 32px;
}

.brutal-toggle.is-active span:first-child {
    top: 27px;
    transform: translateX(-50%) rotate(45deg);
}

.brutal-toggle.is-active span:last-child {
    top: 27px;
    transform: translateX(-50%) rotate(-45deg);
}

.brutal-mobile-wrap {
    position: fixed;
    inset: 0;
    background: rgba(17, 17, 17, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.brutal-mobile-wrap.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.brutal-mobile-panel {
    position: absolute;
    inset: 18px;
    background: #f3efe6;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.brutal-mobile-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 26px;
}

.brutal-mobile-kicker {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.brutal-mobile-index {
    font-size: 1.1rem;
    font-weight: 900;
}

.brutal-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 24px;
}

.brutal-mobile-nav a {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 2px solid #111111;
    font-size: clamp(1.6rem, 5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -0.05em;
    transition: transform 0.16s ease;
}

.brutal-mobile-nav a:hover {
    transform: translateX(8px);
}

.brutal-mobile-nav a span {
    min-width: 30px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.brutal-mobile-cta {
    width: 100%;
    margin-top: auto;
}

/* HERO */

.hero-brutal {
    padding: 36px 18px 60px;
}

.hero-brutal-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.hero-brutal-main {
    background: #111111;
    color: #f5efe4;
    padding: 28px;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.hero-brutal-kicker {
    margin: 0 0 18px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.hero-brutal-title {
    margin: 0;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.hero-brutal-text {
    max-width: 720px;
    margin: 26px 0 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(245, 239, 228, 0.8);
}

.hero-brutal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-brutal-cta-primary,
.hero-brutal-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 22px;
    font-size: 0.9rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 2px solid #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.hero-brutal-cta-primary {
    background: #ffe600;
    color: #111111;
    box-shadow: 5px 5px 0 #f5efe4;
}

.hero-brutal-cta-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #ff5a36;
}

.hero-brutal-cta-secondary {
    background: transparent;
    color: #f5efe4;
    border-color: #f5efe4;
}

.hero-brutal-cta-secondary:hover {
    background: #f5efe4;
    color: #111111;
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #8b7cff;
}

.hero-brutal-side {
    display: grid;
    grid-template-rows: repeat(3, 1fr);
    gap: 18px;
}

.hero-brutal-card {
    min-height: 160px;
    padding: 22px;
    border: 2px solid #111111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-brutal-card-top {
    background: #f5efe4;
    box-shadow: 8px 8px 0 #111111;
}

.hero-brutal-card-middle {
    background: #8b7cff;
    color: #111111;
    box-shadow: 8px 8px 0 #111111;
}

.hero-brutal-card-bottom {
    background: #ff5a36;
    color: #111111;
    box-shadow: 8px 8px 0 #111111;
}

.hero-brutal-card-label {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.hero-brutal-card-value {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

/* STATS */

.stats-brutal {
    padding: 48px 18px 72px;
}

.stats-brutal-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.stats-brutal-intro {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.stats-brutal-kicker {
    margin: 0 0 18px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.stats-brutal-title {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.3rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.stats-brutal-text {
    margin: 22px 0 0;
    max-width: 420px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.stats-brutal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stats-brutal-card {
    min-height: 260px;
    padding: 22px;
    border: 2px solid #111111;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 8px 8px 0 #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.stats-brutal-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #111111;
}

.stats-brutal-card-dark {
    background: #f5efe4;
    color: #111111;
}

.stats-brutal-card-yellow {
    background: #ffe600;
    color: #111111;
}

.stats-brutal-card-violet {
    background: #8b7cff;
    color: #111111;
}

.stats-brutal-card-orange {
    background: #ff5a36;
    color: #111111;
}

.stats-brutal-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.stats-brutal-value {
    display: block;
    margin: 10px 0 0;
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.88;
    letter-spacing: -0.09em;
    text-transform: uppercase;
}

.stats-brutal-note {
    margin: 22px 0 0;
    max-width: 320px;
    font-size: 0.98rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
}

/* FAQ */

.faq-brutal {
    padding: 48px 18px 72px;
}

.faq-brutal-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.faq-brutal-heading {
    position: sticky;
    top: 24px;
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.faq-brutal-kicker {
    margin: 0 0 18px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.faq-brutal-title {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5.4rem);
    line-height: 0.9;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.faq-brutal-text {
    margin: 22px 0 0;
    max-width: 460px;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.faq-brutal-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.faq-brutal-item {
    border: 2px solid #111111;
    background: #f5efe4;
    box-shadow: 8px 8px 0 #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.faq-brutal-item:hover {
    transform: translate(-3px, -3px);
    box-shadow: 11px 11px 0 #8b7cff;
}

.faq-brutal-item.active {
    background: #ffe600;
}

.faq-brutal-question {
    width: 100%;
    padding: 22px 24px;
    border: 0;
    background: transparent;
    color: #111111;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    cursor: pointer;
}

.faq-brutal-question span:first-child {
    font-size: clamp(1.15rem, 2.6vw, 1.75rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.faq-brutal-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.faq-brutal-icon::before,
.faq-brutal-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: #111111;
    transform: translate(-50%, -50%);
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.faq-brutal-icon::before {
    width: 20px;
    height: 3px;
}

.faq-brutal-icon::after {
    width: 3px;
    height: 20px;
}

.faq-brutal-item.active .faq-brutal-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) scaleY(0.2);
}

.faq-brutal-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.22s ease;
}

.faq-brutal-answer p {
    overflow: hidden;
    margin: 0;
    padding: 0 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.82);
}

.faq-brutal-item.active .faq-brutal-answer {
    grid-template-rows: 1fr;
}

.faq-brutal-item.active .faq-brutal-answer p {
    padding-bottom: 24px;
}

/* INTERNAL PAGES */

.page-brutal,
.legal-brutal {
    padding: 36px 18px 72px;
}

.page-hero-brutal,
.contact-brutal,
.legal-brutal-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.page-hero-brutal {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 24px;
    align-items: stretch;
}

.page-hero-brutal-main,
.contact-brutal-intro,
.legal-brutal-heading {
    padding: 28px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.page-brutal-kicker {
    margin: 0 0 18px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    opacity: 0.72;
}

.page-brutal-title,
.legal-brutal-heading h1 {
    margin: 0;
    max-width: 980px;
    font-size: clamp(2.8rem, 7vw, 6.8rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.page-brutal-text,
.legal-brutal-heading p {
    max-width: 760px;
    margin: 26px 0 0;
    font-size: 1.08rem;
    line-height: 1.6;
    color: rgba(245, 239, 228, 0.8);
}

.page-hero-brutal-side {
    min-height: 300px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #8b7cff;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.page-hero-brutal-side-orange {
    background: #ff5a36;
}

.page-hero-brutal-side-yellow {
    background: #ffe600;
}

.page-hero-brutal-side span {
    font-size: 1rem;
    font-weight: 900;
}

.page-hero-brutal-side strong {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.service-brutal-grid,
.work-brutal-grid,
.manifesto-brutal-list,
.process-brutal {
    max-width: 1400px;
    margin: 42px auto 0;
}

.service-brutal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-brutal-card,
.work-brutal-card,
.manifesto-brutal-list article {
    padding: 24px;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.service-brutal-card {
    min-height: 330px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-brutal-card h2,
.work-brutal-card h2,
.manifesto-brutal-list h2,
.process-brutal-heading h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.service-brutal-card p,
.work-brutal-card p,
.manifesto-brutal-list p,
.process-brutal-list p {
    margin: 20px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
}

.service-brutal-index,
.work-brutal-tag,
.manifesto-brutal-list span,
.process-brutal-list span {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.service-brutal-card-yellow,
.work-brutal-card-yellow {
    background: #ffe600;
}

.service-brutal-card-violet,
.work-brutal-card-violet {
    background: #8b7cff;
}

.service-brutal-card-orange {
    background: #ff5a36;
}

.service-brutal-card-dark {
    background: #111111;
    color: #f5efe4;
}

.service-brutal-card-dark p {
    color: rgba(245, 239, 228, 0.78);
}

.process-brutal {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
}

.process-brutal-heading {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.process-brutal-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.process-brutal-list div {
    min-height: 190px;
    padding: 22px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.work-brutal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-proof-strip,
.case-proof-snapshot,
.case-before-after-brutal,
.case-problems-brutal,
.case-testimonial-brutal {
    max-width: 1400px;
    margin: 42px auto 0;
}

.work-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.work-proof-strip article {
    min-height: 180px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.work-proof-strip article:nth-child(2) {
    background: #ffe600;
}

.work-proof-strip article:nth-child(3) {
    background: #8b7cff;
}

.work-proof-strip span,
.case-before-after-brutal span,
.case-problems-brutal li,
.case-visual-top span {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.work-proof-strip strong {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.09em;
}

.work-proof-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 620px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.work-proof-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 12px 12px 0 #8b7cff;
}

.case-visual-mockup {
    min-height: 260px;
    padding: 18px;
    display: grid;
    gap: 14px;
    background: #111111;
    color: #f5efe4;
    border-bottom: 2px solid #111111;
}

.case-visual-mockup img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    border: 2px solid #111111;
}

.case-visual-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    background: #f5efe4;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #ff5a36;
}

.case-visual-top strong {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -0.08em;
}

.case-visual-bars {
    display: grid;
    gap: 10px;
}

.case-visual-bars i {
    display: block;
    height: 24px;
    background: #8b7cff;
    border: 2px solid #111111;
}

.case-visual-bars i:nth-child(2) {
    width: 72%;
    background: #ffe600;
}

.case-visual-bars i:nth-child(3) {
    width: 88%;
    background: #ff5a36;
}

.case-visual-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.case-visual-cards b {
    min-height: 82px;
    padding: 14px;
    display: flex;
    align-items: flex-end;
    background: #f5efe4;
    color: #111111;
    border: 2px solid #111111;
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.work-proof-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
}

.work-proof-content h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 2.7rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.work-proof-content p {
    margin: 18px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.78);
}

.work-proof-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: auto;
    padding-top: 24px;
}

.work-proof-metrics div {
    padding: 12px;
    background: #efe8dc;
    border: 2px solid #111111;
}

.work-proof-metrics strong,
.work-proof-metrics span {
    display: block;
}

.work-proof-metrics strong {
    font-size: clamp(1.4rem, 3vw, 2.3rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
}

.work-proof-metrics span {
    margin-top: 8px;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.work-brutal-card {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    background: #f5efe4;
}

.work-brutal-card strong {
    display: block;
    margin-top: auto;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.manifesto-brutal-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.manifesto-brutal-list article {
    min-height: 260px;
    background: #f5efe4;
}

.manifesto-brutal-list article:nth-child(2) {
    background: #ffe600;
}

.manifesto-brutal-list article:nth-child(3) {
    background: #8b7cff;
}

.manifesto-brutal-list article:nth-child(4) {
    background: #ff5a36;
}

.case-study-metrics-brutal {
    max-width: 1400px;
    margin: 42px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.case-proof-snapshot {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.case-proof-snapshot-main,
.case-proof-snapshot-meta {
    padding: 26px;
    border: 2px solid #111111;
}

.case-proof-snapshot-main {
    background: #111111;
    color: #f5efe4;
    box-shadow: 10px 10px 0 #ff5a36;
}

.case-proof-snapshot-main h2,
.case-before-after-brutal h2,
.case-problems-brutal h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.case-proof-snapshot-main p,
.case-before-after-brutal p {
    margin: 22px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.case-proof-snapshot-meta {
    display: grid;
    gap: 14px;
    background: #f5efe4;
    box-shadow: 10px 10px 0 #111111;
}

.case-proof-snapshot-meta div {
    padding: 16px;
    background: #efe8dc;
    border: 2px solid #111111;
}

.case-proof-snapshot-meta span,
.case-proof-snapshot-meta strong {
    display: block;
}

.case-proof-snapshot-meta span {
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.case-proof-snapshot-meta strong {
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.case-before-after-brutal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.case-before-after-brutal article {
    min-height: 300px;
    padding: 24px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.case-before-after-brutal article:nth-child(2) {
    background: #ffe600;
}

.case-before-after-brutal p {
    color: rgba(17, 17, 17, 0.78);
}

.case-problems-brutal {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.case-problems-brutal ul {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.case-problems-brutal li {
    padding: 16px;
    background: #f5efe4;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #8b7cff;
}

.case-testimonial-brutal {
    padding: 28px;
    background: #8b7cff;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
}

.case-testimonial-brutal blockquote {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.6rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.case-testimonial-brutal p {
    margin: 24px 0 0;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.case-testimonial-brutal span {
    display: block;
    margin-top: 6px;
    color: rgba(17, 17, 17, 0.68);
}

.case-study-metrics-brutal article {
    min-height: 190px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffe600;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.case-study-metrics-brutal article:nth-child(2) {
    background: #8b7cff;
}

.case-study-metrics-brutal article:nth-child(3) {
    background: #ff5a36;
}

.case-study-metrics-brutal span {
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.case-study-metrics-brutal strong {
    font-size: clamp(3rem, 6vw, 5.4rem);
    line-height: 0.88;
    font-weight: 900;
    letter-spacing: -0.09em;
    text-transform: uppercase;
}

.contact-brutal {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    align-items: start;
}

.contact-brutal-direct {
    margin-top: 34px;
    padding: 20px;
    background: #ffe600;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 6px 6px 0 #f5efe4;
}

.contact-brutal-direct span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.contact-brutal-direct a {
    font-size: clamp(1.4rem, 3vw, 2.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.05em;
}

.contact-brutal-form {
    display: grid;
    gap: 18px;
    padding: 26px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
}

.contact-brutal-form label {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.contact-brutal-form input,
.contact-brutal-form select,
.contact-brutal-form textarea {
    width: 100%;
    border: 2px solid #111111;
    background: #efe8dc;
    color: #111111;
    padding: 15px 16px;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 4px 4px 0 #111111;
}

.contact-brutal-form textarea {
    resize: vertical;
}

.contact-brutal-submit {
    width: 100%;
    min-height: 60px;
    margin-top: 8px;
}

.legal-brutal-shell {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.legal-brutal-content {
    padding: 28px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
}

.legal-brutal-content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.legal-brutal-content h2:not(:first-child) {
    margin-top: 34px;
}

.legal-brutal-content p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.82);
}

/* FUNNEL HOME */

.home-funnel-brutal {
    max-width: 1400px;
    margin: 0 auto 72px;
    padding: 0 18px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    align-items: stretch;
}

.home-funnel-main {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.home-funnel-main h2 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.4rem, 6vw, 5.4rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.home-funnel-main p {
    max-width: 720px;
    margin: 22px 0 0;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(245, 239, 228, 0.78);
}

.home-funnel-actions {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    background: #ffe600;
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.home-funnel-actions a:not(.brutal-button) {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 22px;
    border: 2px solid #111111;
    background: #f5efe4;
    box-shadow: 5px 5px 0 #111111;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.home-funnel-actions a:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #111111;
}

.service-brutal-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 24px;
    padding: 0 16px;
    border: 2px solid currentColor;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.service-brutal-link:hover {
    transform: translate(-3px, -3px);
    box-shadow: 5px 5px 0 currentColor;
}

/* AUDIT */

.audit-brutal,
.resource-brutal {
    padding: 36px 18px 72px;
}

.audit-brutal-shell,
.resource-brutal-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
    align-items: start;
}

.audit-brutal-intro,
.resource-brutal-main {
    position: sticky;
    top: 24px;
    padding: 28px;
    background: #111111;
    color: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #ff5a36;
}

.audit-brutal-proof,
.resource-brutal-list {
    margin-top: 32px;
    padding: 20px;
    background: #ffe600;
    color: #111111;
    border: 2px solid #111111;
    box-shadow: 6px 6px 0 #f5efe4;
}

.audit-brutal-proof span,
.resource-brutal-list span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.audit-brutal-proof strong {
    display: block;
    font-size: clamp(1.3rem, 3vw, 2.2rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.audit-form-brutal,
.resource-form-brutal {
    padding: 26px;
    background: #f5efe4;
    border: 2px solid #111111;
    box-shadow: 10px 10px 0 #111111;
}

.audit-error-brutal {
    margin-bottom: 20px;
    padding: 18px;
    background: #ff5a36;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #111111;
}

.audit-error-brutal strong,
.audit-error-brutal p {
    margin: 0;
}

.audit-error-brutal strong {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
}

.audit-error-brutal p {
    margin-top: 8px;
    font-weight: 700;
}

.contact-success-brutal {
    background: #8b7cff;
}

.audit-progress-brutal {
    margin-bottom: 24px;
}

.audit-progress-brutal span {
    display: block;
    margin-bottom: 10px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.audit-progress-brutal div {
    height: 18px;
    background: #efe8dc;
    border: 2px solid #111111;
    box-shadow: 4px 4px 0 #111111;
}

.audit-progress-brutal i {
    display: block;
    width: 12.5%;
    height: 100%;
    background: #8b7cff;
    transition: width 0.18s ease;
}

.audit-step-brutal {
    display: none;
}

.audit-step-brutal.is-active {
    display: block;
}

.audit-step-index {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.audit-step-brutal h2 {
    margin: 0 0 24px;
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.7rem);
    line-height: 0.92;
    font-weight: 900;
    letter-spacing: -0.07em;
    text-transform: uppercase;
}

.audit-field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.audit-form-brutal label,
.resource-form-brutal label,
.audit-wide-field {
    display: grid;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.audit-form-brutal input,
.audit-form-brutal select,
.audit-form-brutal textarea,
.resource-form-brutal input,
.resource-form-brutal select {
    width: 100%;
    border: 2px solid #111111;
    background: #efe8dc;
    color: #111111;
    padding: 15px 16px;
    font: inherit;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: 4px 4px 0 #111111;
}

.audit-form-brutal textarea {
    resize: vertical;
}

.audit-wide-field {
    margin-top: 18px;
}

.audit-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.audit-check-grid label,
.audit-privacy-brutal {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    background: #efe8dc;
    border: 2px solid #111111;
    box-shadow: 4px 4px 0 #111111;
    cursor: pointer;
}

.audit-check-grid input,
.audit-privacy-brutal input {
    width: auto;
    margin-top: 3px;
    box-shadow: none;
    accent-color: #8b7cff;
}

.audit-review-brutal {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.audit-review-brutal div {
    display: grid;
    grid-template-columns: 0.45fr 1fr;
    gap: 12px;
    padding: 12px;
    background: #efe8dc;
    border: 2px solid #111111;
}

.audit-review-brutal span {
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.audit-review-brutal strong {
    font-size: 0.95rem;
    line-height: 1.4;
}

.audit-actions-brutal {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 28px;
}

.audit-prev-brutal {
    background: #f5efe4;
    box-shadow: 5px 5px 0 #111111;
}

.audit-submit-brutal,
.audit-next-brutal {
    margin-left: auto;
}

.resource-brutal-list ul {
    margin: 0;
    padding-left: 18px;
    font-weight: 800;
    line-height: 1.55;
}

.resource-form-brutal {
    display: grid;
    gap: 18px;
}

.resource-audit-link {
    display: inline-block;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* FOOTER */

.brutal-footer {
    padding: 48px 18px 28px;
}

.brutal-footer-shell {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 18px;
    align-items: stretch;
}

.brutal-footer-brand,
.brutal-footer-panel,
.brutal-footer-bottom {
    border: 2px solid #111111;
    box-shadow: 8px 8px 0 #111111;
}

.brutal-footer-brand {
    padding: 26px;
    background: #111111;
    color: #f5efe4;
    box-shadow: 10px 10px 0 #ff5a36;
}

.brutal-footer-kicker,
.brutal-footer-label {
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.brutal-footer-kicker {
    color: rgba(245, 239, 228, 0.72);
}

.brutal-footer-title {
    display: block;
    margin-top: 14px;
    font-size: clamp(3rem, 7vw, 6.2rem);
    line-height: 0.86;
    font-weight: 900;
    letter-spacing: -0.09em;
}

.brutal-footer-brand p,
.brutal-footer-contact p {
    margin: 22px 0 0;
    max-width: 520px;
    font-size: 1rem;
    line-height: 1.65;
}

.brutal-footer-brand p {
    color: rgba(245, 239, 228, 0.78);
}

.brutal-footer-panel {
    padding: 24px;
    background: #f5efe4;
}

.brutal-footer-nav {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
}

.brutal-footer-nav a {
    padding: 14px 0;
    border-bottom: 2px solid #111111;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    transition: transform 0.16s ease, color 0.16s ease;
}

.brutal-footer-nav a:hover {
    color: #ff5a36;
    transform: translateX(8px);
}

.brutal-footer-contact {
    display: flex;
    flex-direction: column;
    background: #8b7cff;
}

.brutal-footer-contact p {
    color: rgba(17, 17, 17, 0.82);
}

.brutal-footer-cta {
    width: 100%;
    margin-top: auto;
}

.brutal-footer-bottom {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: #ffe600;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.brutal-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    background: #ffe600;
    color: #111111;
    font-size: 0.92rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #111111;
    box-shadow: 5px 5px 0 #f3efe6;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.brutal-button:hover {
    transform: translate(-3px, -3px);
    box-shadow: 8px 8px 0 #ff5a36;
    background: #fff06a;
}

/* RESPONSIVE */

@media (max-width: 1020px) {
    .brutal-navbar {
        grid-template-columns: 1fr auto;
        align-items: center;
        min-height: 84px;
        box-shadow: 6px 6px 0 #ff5a36;
    }

    .brutal-nav,
    .brutal-cta {
        display: none;
    }

    .brutal-brand-main {
        font-size: 2.4rem;
    }

    .brutal-toggle {
        display: inline-block;
    }
}

@media (max-width: 980px) {

    .hero-brutal-grid,
    .stats-brutal-shell,
    .faq-brutal-shell,
    .page-hero-brutal,
    .process-brutal,
    .contact-brutal,
    .legal-brutal-shell,
    .home-funnel-brutal,
    .audit-brutal-shell,
    .resource-brutal-shell,
    .case-proof-snapshot,
    .case-before-after-brutal,
    .case-problems-brutal {
        grid-template-columns: 1fr;
    }

    .hero-brutal-main,
    .stats-brutal-intro,
    .faq-brutal-heading {
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .hero-brutal-title {
        font-size: clamp(2.4rem, 12vw, 4.4rem);
    }

    .hero-brutal-text {
        font-size: 1rem;
    }

    .hero-brutal-side {
        grid-template-rows: auto;
    }

    .hero-brutal-card {
        min-height: 140px;
    }

    .stats-brutal-grid {
        grid-template-columns: 1fr;
    }

    .stats-brutal-card {
        min-height: 220px;
    }

    .stats-brutal-title,
    .faq-brutal-title {
        font-size: clamp(2.2rem, 12vw, 4rem);
    }

    .faq-brutal-heading {
        position: static;
    }

    .faq-brutal-question {
        padding: 20px;
    }

    .faq-brutal-answer p {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq-brutal-item.active .faq-brutal-answer p {
        padding-bottom: 20px;
    }

    .page-hero-brutal-main,
    .contact-brutal-intro,
    .legal-brutal-heading,
    .process-brutal-heading {
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .page-brutal-title,
    .legal-brutal-heading h1 {
        font-size: clamp(2.3rem, 12vw, 4.4rem);
    }

    .service-brutal-grid,
    .work-brutal-grid,
    .work-proof-strip,
    .manifesto-brutal-list,
    .process-brutal-list,
    .audit-field-grid,
    .case-study-metrics-brutal,
    .audit-check-grid {
        grid-template-columns: 1fr;
    }

    .work-proof-metrics,
    .case-visual-cards {
        grid-template-columns: 1fr;
    }

    .page-hero-brutal-side,
    .service-brutal-card,
    .work-brutal-card,
    .manifesto-brutal-list article {
        min-height: 220px;
    }

    .home-funnel-brutal {
        padding: 0 18px;
    }

    .audit-brutal-intro,
    .resource-brutal-main {
        position: static;
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .audit-form-brutal,
    .resource-form-brutal {
        box-shadow: 8px 8px 0 #111111;
    }

    .audit-actions-brutal {
        flex-direction: column;
    }

    .audit-prev-brutal,
    .audit-next-brutal,
    .audit-submit-brutal {
        width: 100%;
        margin-left: 0;
    }

    .audit-review-brutal div {
        grid-template-columns: 1fr;
    }

    .brutal-footer-shell {
        grid-template-columns: 1fr;
    }

    .brutal-footer-brand,
    .brutal-footer-panel,
    .brutal-footer-bottom {
        box-shadow: 8px 8px 0 #111111;
    }

    .brutal-footer-brand {
        box-shadow: 8px 8px 0 #ff5a36;
    }

    .brutal-footer-bottom {
        flex-direction: column;
    }

}
