/* ═══════════════════════════════════════════════════
caixa-portfolio.css
═══════════════════════════════════════════════════ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

:root {
    --bg: #F7F5F2;
    --bg-warm: #EDEBE6;
    --bg-dark: #1A1814;
    --ink: #1A1814;
    --ink-2: #4A4540;
    --ink-3: #8C857D;
    --ink-4: #C4BDB5;
    --accent: #2B5CE6;
    --a-light: #EEF2FD;
    --a-mid: rgba(43, 92, 230, .1);
    --gold: #C4973A;
    --gold-bg: #FDF6EA;
    --border: rgba(26, 24, 20, .08);
    --brd-str: rgba(26, 24, 20, .13);
    --white: #fff;
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(26, 24, 20, .07);
    --shadow-md: 0 8px 32px rgba(26, 24, 20, .1);
    --shadow-lg: 0 24px 60px rgba(26, 24, 20, .13);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
}

/* ── CURSOR ── */
#cur {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    left: 0;
    top: 0;
    transition: transform .12s;
}

#ctr {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(43, 92, 230, .4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    left: 0;
    top: 0;
}

@media(hover:none), (max-width:768px) {

    #cur,
    #ctr {
        display: none !important
    }

    body {
        cursor: auto
    }
}

/* ── SCROLL REVEAL ── */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

.rv.d1 {
    transition-delay: .1s
}

.rv.d2 {
    transition-delay: .2s
}

.rv.d3 {
    transition-delay: .32s
}

.rv.d4 {
    transition-delay: .44s
}

/* ══════════════
BREADCRUMB
══════════════ */
.bc-nav {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(247, 245, 242, .94);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border);
    padding: 0 64px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bc-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-3);
}

.bc-left a {
    color: var(--ink-3);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s;
}

.bc-left a:hover {
    color: var(--accent)
}

.bc-sep {
    color: var(--ink-4);
    font-size: 11px;
}

.bc-cur {
    color: var(--ink);
    font-weight: 600;
    font-size: 13px;
}

.bc-tags {
    display: flex;
    gap: 8px;
}

.bc-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.bc-tag.blue {
    background: var(--a-light);
    color: var(--accent);
    border: 1px solid rgba(43, 92, 230, .15);
}

.bc-tag.gold {
    background: var(--gold-bg);
    color: var(--gold);
    border: 1px solid rgba(196, 151, 58, .2);
}

@media(max-width:768px) {
    .bc-nav {
        padding: 0 20px
    }

    .bc-tags {
        display: none
    }
}

/* ══════════════
HERO
══════════════ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 64px 0;
    gap: 48px;
    position: relative;
    overflow: hidden;
    background: var(--bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -160px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 92, 230, .05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp .65s .1s ease forwards;
}

.hero-eyebrow::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent)
}

.hero-h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(52px, 5.5vw, 86px);
    font-weight: 500;
    color: var(--ink);
    line-height: 1.0;
    letter-spacing: -2px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp .65s .2s ease forwards;
}

.hero-h1 em {
    font-style: italic;
    color: var(--accent)
}

.hero-sub {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-2);
    max-width: 460px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp .65s .3s ease forwards;
}

.hero-meta {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .65s .4s ease forwards;
}

.meta-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 4px
}

.meta-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink)
}

/* Hero phone — single main phone */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 480px;
    opacity: 0;
    animation: fadeIn .9s .3s ease forwards;
}

.phone-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ph {
    border-radius: 28px;
    overflow: hidden;
    /* box-shadow: 0 20px 48px rgba(26, 24, 20, .18), 0 3px 10px rgba(26, 24, 20, .1); */
}

.ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

/* Single main phone — centred, floats */
.ph-main {
    width: 80%;
    /* animation: floatMain 4s ease-in-out infinite; */
}

/* Hide side phones — only one shown now */
.ph-l,
.ph-r {
    display: none;
}

@keyframes floatMain {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 80px 24px 60px
    }

    .hero-visual {
        height: 300px
    }

    .ph-main {
        width: 160px;
        height: 328px
    }
}

/* ══════════════
   OVERVIEW STRIP
   ══════════════ */
.ov-strip {
    background: var(--bg-dark);
    padding: 56px 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.ov-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 8px
}

.ov-val {
    font-size: 15px;
    font-weight: 500;
    color: #fff
}

.ov-div {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, .1)
}

.ov-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(20px, 2.5vw, 30px);
    color: #fff;
    max-width: 380px;
    line-height: 1.35;
}

@media(max-width:768px) {
    .ov-strip {
        flex-direction: column;
        padding: 40px 24px;
        align-items: flex-start
    }

    .ov-div {
        display: none
    }
}

/* ══════════════
   SECTION WRAPPER
   ══════════════ */
.sec {
    padding: 100px 64px;
    max-width: 1360px;
    margin: 0 auto
}

.sec-full {
    padding: 100px 64px;
    background: var(--bg-warm)
}

.sec-full-inner {
    max-width: 1360px;
    margin: 0 auto
}

.sec-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sec-lbl::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--accent)
}

.sec-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 66px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 20px;
}

.sec-h2 em {
    font-style: italic;
    color: var(--accent)
}

.sec-lead {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink-2);
    max-width: 620px
}

@media(max-width:768px) {

    .sec,
    .sec-full {
        padding: 72px 24px
    }
}

/* ══════════════
   CHALLENGE / GOALS
   ══════════════ */
.ch-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.ch-card {
    padding: 52px;
    border: 1px solid var(--border)
}

.ch-card:first-child {
    background: var(--white);
    border-radius: var(--r-xl) 0 0 var(--r-xl)
}

.ch-card:last-child {
    background: var(--accent);
    border-radius: 0 var(--r-xl) var(--r-xl) 0
}

.ch-card-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-3);
    margin-bottom: 20px
}

.ch-card:last-child .ch-card-lbl {
    color: rgba(255, 255, 255, .5)
}

.ch-card-ttl {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px
}

.ch-card:last-child .ch-card-ttl {
    color: #fff
}

.ch-card-p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-2)
}

.ch-card:last-child .ch-card-p {
    color: rgba(255, 255, 255, .72)
}

.ch-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.ch-li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-2)
}

.ch-card:last-child .ch-li {
    color: rgba(255, 255, 255, .75)
}

.ch-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    margin-top: 8px
}

.ch-card:last-child .ch-dot {
    background: rgba(255, 255, 255, .45)
}

@media(max-width:768px) {
    .ch-grid {
        grid-template-columns: 1fr
    }

    .ch-card:first-child {
        border-radius: var(--r-xl) var(--r-xl) 0 0
    }

    .ch-card:last-child {
        border-radius: 0 0 var(--r-xl) var(--r-xl)
    }

    .ch-card {
        padding: 36px 28px
    }
}

/* ══════════════
   DESIGN PROCESS — full-width dark section
   ══════════════ */
.process-section {
    background: var(--bg-dark);
    padding: 100px 64px;
}

.process-section-inner {
    max-width: 1360px;
    margin: 0 auto;
}

.tl-wrap {
    position: relative;
    overflow: hidden;
}

.tl-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 92, 230, .08) 0%, transparent 70%);
    pointer-events: none
}

.tl-ttl {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 66px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 6px
}

.tl-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 0
}

/* Process sec-lbl for dark background */
.process-section .sec-lbl {
    color: rgba(255, 255, 255, .5);
}

.process-section .sec-lbl::before {
    background: rgba(255, 255, 255, .3);
}

.orbital {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0 40px
}

.orbital::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(43, 92, 230, .25) 10%, rgba(43, 92, 230, .25) 90%, transparent);
    transform: translateY(-50%);
    pointer-events: none
}

.planet {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    z-index: 2
}

.planet-num {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(43, 92, 230, .5);
    margin-bottom: 20px
}

.orb {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
    cursor: default
}

.planet:hover .orb {
    transform: translateY(-8px)
}

.orb::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(43, 92, 230, 0);
    transition: border-color .3s, inset .3s
}

.planet:hover .orb::after {
    border-color: rgba(43, 92, 230, .35);
    inset: -10px
}

.orb-s {
    width: 88px;
    height: 88px
}

.orb-m {
    width: 130px;
    height: 130px
}

.orb-l {
    width: 185px;
    height: 185px
}

.orb-xl {
    width: 256px;
    height: 256px
}

.orb-1 {
    background: radial-gradient(135deg at 30% 30%, rgba(43, 92, 230, .18), rgba(43, 92, 230, .04));
    border: 1px solid rgba(43, 92, 230, .18)
}

.orb-2 {
    background: radial-gradient(135deg at 30% 30%, rgba(43, 92, 230, .28), rgba(43, 92, 230, .06));
    border: 1px solid rgba(43, 92, 230, .25)
}

.orb-3 {
    background: radial-gradient(135deg at 30% 30%, rgba(43, 92, 230, .42), rgba(43, 92, 230, .10));
    border: 1px solid rgba(43, 92, 230, .36)
}

.orb-4 {
    background: radial-gradient(135deg at 30% 30%, rgba(43, 92, 230, .62), rgba(43, 92, 230, .22));
    border: 1px solid rgba(43, 92, 230, .52)
}

.orb-glow {
    position: absolute;
    width: 30%;
    height: 30%;
    border-radius: 50%;
    top: 20%;
    left: 22%;
    background: rgba(255, 255, 255, .1);
    filter: blur(4px)
}

.orb-label {
    font-size: clamp(11px, 1vw, 13px);
    font-weight: 600;
    color: #fff;
    text-align: center;
    letter-spacing: -.2px;
    position: relative;
    z-index: 1;
    padding: 0 12px;
    line-height: 1.3
}

.planet-desc {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    text-align: center;
    line-height: 1.6;
    max-width: 140px
}

.planet-desc strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 4px;
    letter-spacing: .3px
}

.p-dash {
    flex: 1;
    height: 1px;
    border-top: 1px dashed rgba(43, 92, 230, .18);
    margin-top: -80px;
    position: relative;
    z-index: 1
}

.process-foot {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap
}

.pfoot-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .3)
}

.pfoot-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0
}

.pfoot-item span {
    color: rgba(255, 255, 255, .6);
    font-weight: 500
}

/* Inline tl-wrap (inside .sec, kept for fallback) */
.sec .tl-wrap {
    background: var(--bg-dark);
    border-radius: var(--r-xl);
    padding: 64px;
    margin-top: 56px;
}

@media(max-width:768px) {
    .process-section {
        padding: 72px 24px
    }

    .sec .tl-wrap {
        padding: 36px 24px
    }

    .orbital {
        flex-direction: column;
        gap: 24px;
        padding: 40px 0
    }

    .orbital::before,
    .p-dash {
        display: none
    }

    .orb-xl {
        width: 160px;
        height: 160px
    }

    .orb-l {
        width: 130px;
        height: 130px
    }

    .orb-m {
        width: 100px;
        height: 100px
    }

    .orb-s {
        width: 72px;
        height: 72px
    }
}

/* ══════════════
   COMPETITOR ANALYSIS
   ══════════════ */
.comp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 56px;
    border-radius: var(--r-xl);
    overflow: hidden;
}

.comp-card {
    background: var(--white);
    padding: 44px 36px;
    border: 1px solid var(--border);
    transition: background .2s;
}

.comp-card:hover {
    background: var(--a-light)
}

.comp-logo {
    height: 36px;
    display: flex;
    align-items: center;
    margin-bottom: 24px
}

.comp-logo img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .65;
    transition: filter .2s, opacity .2s
}

.comp-card:hover .comp-logo img {
    filter: none;
    opacity: 1
}

.comp-logo-txt {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink-3)
}

.comp-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px
}

.comp-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--ink-3)
}

.comp-insight {
    margin-top: 32px;
    padding: 28px 36px;
    background: var(--accent);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    gap: 20px;
}

.comp-ins-icon {
    font-size: 24px;
    color: rgba(255, 255, 255, .55);
    flex-shrink: 0
}

.comp-ins-txt {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .85);
    font-style: italic
}

@media(max-width:768px) {
    .comp-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════
   REVIEWS
   ══════════════ */
.reviews-img-wrap {
    margin-top: 56px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
}

.reviews-img-wrap img {
    width: 100%;
    height: auto;
    display: block
}

.reviews-context {
    margin-top: 20px;
    padding: 20px 28px;
    background: var(--a-light);
    border-radius: var(--r-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent);
}

.reviews-context i {
    font-size: 18px;
    flex-shrink: 0
}

/* ══════════════
   PERSONAS
   ══════════════ */
.personas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.persona-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.persona-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg)
}

.pcard-top {
    padding: 32px 28px 24px;
    background: var(--bg-warm);
    display: flex;
    align-items: center;
    gap: 16px;
}

.pcard-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-sm)
}

.pcard-avatar-ph {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--white);
    background: linear-gradient(135deg, var(--a-light), var(--a-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--accent);
    flex-shrink: 0;
}

.pcard-name {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -.5px
}

.pcard-role {
    font-size: 12px;
    color: var(--ink-3);
    font-weight: 500;
    margin-top: 3px
}

.pcard-body {
    padding: 24px 28px 28px
}

.pcard-row {
    display: flex;
    gap: 8px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-2);
    align-items: flex-start;
}

.pcard-row:last-child {
    border-bottom: none
}

.pcard-k {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--ink-4);
    min-width: 88px;
    padding-top: 1px;
}

.pcard-v {
    flex: 1
}

.pcard-list {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border)
}

.pcard-list-ttl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 10px
}

.pcard-li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 7px;
}

.pcard-li::before {
    content: '—';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0
}

@media(max-width:900px) {
    .personas-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .personas-grid {
        grid-template-columns: 1fr
    }
}

/* ══════════════
   CJM
   ══════════════ */
.cjm-header-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
    margin-bottom: 2px;
}

.cjm-stage-col {
    background: transparent
}

.cjm-persona-head {
    background: var(--bg-dark);
    padding: 20px 24px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cjm-ph-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), #4F7BF7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.cjm-ph-name {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3
}

.cjm-ph-name span {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, .4);
    margin-top: 2px
}

.cjm-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    border-radius: 0 0 var(--r-xl) var(--r-xl);
    overflow: hidden;
}

.cjm-row {
    display: grid;
    grid-template-columns: 180px 1fr 1fr 1fr;
    gap: 2px
}

.cjm-row-alt .cjm-stage,
.cjm-row-alt .cjm-cell,
.cjm-row-alt .cjm-cell-pain {
    background: var(--bg)
}

.cjm-stage {
    background: var(--white);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-2);
    line-height: 1.4;
}

.cjm-stage-pain {
    color: var(--accent)
}

/* CJM SVG icons — replace emoji */
.cjm-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cjm-icon img,
.cjm-icon svg {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.cjm-cell {
    background: var(--white);
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-2);
}

.cjm-emotion {
    font-weight: 500;
    color: var(--ink)
}

.cjm-cell-pain {
    background: var(--white);
    padding: 18px 20px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--accent);
    font-weight: 500;
}

@media(max-width:768px) {

    .cjm-header-row,
    .cjm-row {
        grid-template-columns: 1fr
    }

    .cjm-stage-col {
        display: none
    }

    .cjm-persona-head {
        border-radius: var(--r-md)
    }

    .cjm-stage {
        font-size: 11px
    }
}

/* ══════════════
   FULL-WIDTH IMAGES
   ══════════════ */

/* fw-img — padded variant */
.fw-img {
    padding: 0 64px;
}

.fw-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
}

.fw-img-wrap img {
    width: 100%;
    height: auto;
    display: block
}

/* Chat phones — true full width, no padding, no border-radius */
.fw-img-full {
    padding: 0;
    margin: 80px 0;
}

.fw-img-full .fw-img-wrap {
    border-radius: 0;
}

@media(max-width:768px) {
    .fw-img {
        padding: 0 24px
    }

    .fw-img-full {
        margin: 48px 0
    }
}

/* ══════════════
   SCREEN DETAIL (alternating)
   ══════════════ */
.sd-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 100px 64px 100px 0px;
    max-width: 1360px;
    margin: 0 auto;
}

.sd-wrap.rev {
    direction: rtl
}

.sd-wrap.rev>* {
    direction: ltr
}

/* Individual phone image sizing — each gets its own class */
.sd-img {
    overflow: hidden
}

.sd-img img {
    width: 100%;
    height: auto;
    display: block
}

/* per-image size overrides — add to each .sd-img in HTML */
.sd-img--home {
    max-width: 380px;
    margin: 0 auto
}

.sd-img--chat {
    max-width: 380px;
    margin: 0 auto
}

.sd-img--redesign {
    max-width: 630px;
    margin: 0 auto
}

/* add more as needed: .sd-img--[name] */

.sd-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--ink-4);
    margin-bottom: 14px
}

.sd-h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.2vw, 50px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -1.2px;
    line-height: 1.08;
    margin-bottom: 14px
}

.sd-sub {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 18px
}

.sd-p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-2);
    margin-bottom: 28px
}

.sd-features {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.sd-feat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
}

.sd-feat-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--a-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
}

.sd-feat-ttl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 3px
}

.sd-feat-desc {
    font-size: 12px;
    color: var(--ink-3);
    line-height: 1.5
}

@media(max-width:900px) {
    .sd-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 72px 24px
    }

    .sd-wrap.rev {
        direction: ltr
    }
}

/* ══════════════
   SKETCHES
   ══════════════ */
.sketches-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 56px;
    align-items: center;
}

.sk-img-wrap {
    border-radius: var(--r-xl);
    overflow: hidden;
}

.sk-img-wrap img {
    width: 100%;
    height: auto;
    display: block
}

.sk-h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 18px
}

.sk-p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-2)
}

.sk-quotes {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.sk-quote {
    padding: 18px 22px;
    border-left: 3px solid var(--accent);
    background: var(--a-light);
    border-radius: 0 var(--r-sm) var(--r-sm) 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--accent);
    font-style: italic;
}

@media(max-width:768px) {
    .sketches-layout {
        grid-template-columns: 1fr
    }
}

/* ══════════════
   THEMES
   ══════════════ */
.themes-stmt {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3.2vw, 48px);
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    letter-spacing: -1px;
    margin: 40px 0 56px;
    max-width: 780px;
}

.themes-stmt em {
    font-style: italic;
    color: var(--accent)
}

/* .themes-vis {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md)
} */

.themes-vis img {
    width: 100%;
    height: auto;
    display: block
}

/* ══════════════
UI KIT
══════════════ */
.uikit-vis {
    margin-top: 56px;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 1px solid var(--border)
}

.uikit-vis img {
    width: 100%;
    height: auto;
    display: block
}

/* ══════════════
SITE MAP — SVG diagram
══════════════ */
.sitemap-section {
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

.sitemap-section-header {
    padding: 0 64px;
    max-width: 1360px;
    margin: 0 auto 56px;
}

.sitemap-diagram {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 64px;
    overflow-x: auto;
    width: 100%;
}

.sitemap-diagram svg {
    width: 100%;
    height: auto;
    min-width: 900px;
    display: block;
}

/* SVG node text styles */
.sm-node-main rect {
    fill: #1A1814
}

.sm-node-main text {
    fill: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600
}

.sm-node-nav rect {
    fill: #2B5CE6
}

.sm-node-nav text {
    fill: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500
}

.sm-node-sec rect {
    fill: #EEF2FD
}

.sm-node-sec text {
    fill: #2B5CE6;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600
}

.sm-node-leaf rect {
    fill: #F7F5F2;
    stroke: #EDEBE6;
    stroke-width: 1
}

.sm-node-leaf text {
    fill: #4A4540;
    font-family: 'Inter', sans-serif;
    font-size: 10px
}

.sm-line {
    stroke: #C4BDB5;
    stroke-width: 1.5;
    fill: none
}

.sm-line-blue {
    stroke: #2B5CE6;
    stroke-width: 1.5;
    fill: none
}

@media(max-width:768px) {
    .sitemap-section {
        padding: 72px 0
    }

    .sitemap-section-header {
        padding: 0 24px
    }

    .sitemap-diagram {
        padding: 32px 24px
    }
}

/* ══════════════
   OUTCOME (dark)
   ══════════════ */
.outcome {
    padding: 100px 64px;
    background: var(--bg-dark);
    text-align: center;
}

.outcome-inner {
    max-width: 860px;
    margin: 0 auto
}

.out-lbl {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.out-lbl::before,
.out-lbl::after {
    content: '';
    width: 20px;
    height: 1px;
    background: rgba(255, 255, 255, .2)
}

.out-h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(44px, 5.5vw, 80px);
    font-weight: 400;
    font-style: italic;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.out-p {
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 56px
}

.out-stats {
    display: flex;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap
}

.stat-n {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 500;
    color: #fff;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 6px
}

.stat-n span {
    color: var(--accent);
    font-style: italic
}

.stat-lbl {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

@media(max-width:768px) {
    .outcome {
        padding: 72px 24px
    }

    .out-stats {
        gap: 32px
    }
}

/* ══════════════
   FOOTER
   ══════════════ */
.yanas-footer {
    background: #0F0E0C;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.yanas-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1
}

.yanas-bg-element {
    position: absolute;
    opacity: .04;
    font-size: 4vw;
    color: #fff;
    animation: floatEl 15s ease-in-out infinite;
}

.yanas-bg-element:nth-child(1) {
    top: 5%;
    left: 8%;
    animation-delay: 0s
}

.yanas-bg-element:nth-child(2) {
    top: 12%;
    right: 15%;
    animation-delay: 2s
}

.yanas-bg-element:nth-child(3) {
    top: 25%;
    left: 25%;
    animation-delay: 4s
}

.yanas-bg-element:nth-child(4) {
    bottom: 30%;
    right: 8%;
    animation-delay: 1s
}

.yanas-bg-element:nth-child(5) {
    bottom: 15%;
    left: 18%;
    animation-delay: 3s
}

.yanas-bg-element:nth-child(6) {
    top: 40%;
    right: 35%;
    animation-delay: 5s
}

.yanas-bg-element:nth-child(7) {
    bottom: 45%;
    left: 45%;
    animation-delay: 2.5s
}

.yanas-bg-element:nth-child(8) {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s
}

@keyframes floatEl {

    0%,
    100% {
        transform: translateY(0) rotate(0deg)
    }

    33% {
        transform: translateY(-20px) rotate(5deg)
    }

    66% {
        transform: translateY(10px) rotate(-3deg)
    }
}

.yanas-footer_wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 64px;
    position: relative;
    z-index: 2
}

.yanas-footer_content {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 80px;
}

.yanas-footer_content-left {
    flex: 1;
    max-width: 420px
}

.yanas-title-140 {
    font-size: clamp(3rem, 8vw, 8.75rem);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -3px;
    font-family: 'DM Sans', sans-serif;
}

.footer-spacer {
    margin: 24px 0 40px
}

.yanas-text-32 {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #64748b;
    line-height: 1.4;
    font-family: 'DM Sans', sans-serif;
}

.yanas-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #1e293b;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.yanas-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .15)
}

.yanas-footer_content-right {
    flex: 1;
    max-width: 540px
}

.yanas-footer-form {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 40px
}

.yanas-form {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.yanas-text-40 {
    font-size: clamp(.75rem, 1.2vw, 1rem);
    color: #94a3b8;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.yanas-form-row {
    display: flex;
    gap: 12px
}

.yanas-footer-field {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
    font-family: 'DM Sans', sans-serif;
}

.yanas-footer-field:focus {
    border-color: rgba(255, 255, 255, .3)
}

.yanas-footer-field::placeholder {
    color: #64748b
}

.yanas-services-grid,
.yanas-budget-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.yanas-form-button_field {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50px;
    color: #94a3b8;
    font-size: 12px;
    cursor: pointer;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
}

.yanas-form-button_field:hover {
    border-color: rgba(255, 255, 255, .3);
    color: #fff
}

.yanas-form-button_field.active {
    background: #fff;
    color: #1e293b;
    border-color: #fff
}

.yanas-message-field {
    width: 100%;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 14px 16px;
    color: #fff;
    font-size: 13px;
    outline: none;
    resize: vertical;
    min-height: 100px;
    transition: border-color .2s;
    font-family: 'DM Sans', sans-serif;
}

.yanas-message-field:focus {
    border-color: rgba(255, 255, 255, .3)
}

.yanas-message-field::placeholder {
    color: #64748b
}

.yanas-form_button {
    width: 100%;
    background: #fff;
    color: #1e293b;
    border: none;
    padding: 15px;
    border-radius: 28px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'DM Sans', sans-serif;
}

.yanas-form_button:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, .14)
}

.yanas-status-message {
    padding: 11px 18px;
    border-radius: 8px;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 500;
    display: none;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
}

.yanas-success {
    background: rgba(16, 185, 129, .15);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, .3)
}

.yanas-error {
    background: rgba(239, 68, 68, .15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .3)
}

.yanas-footer_links {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding-top: 40px;
    position: relative;
    gap: 32px;
    flex-wrap: wrap;
}

.yanas-footer_links-left {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.yanas-text-36 {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    color: #fff;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif
}

.yanas-text-24 {
    font-size: clamp(.85rem, 1.3vw, 1.1rem);
    color: #64748b;
    font-family: 'DM Sans', sans-serif
}

.yanas-text-24 a {
    color: inherit;
    text-decoration: none
}

.yanas-text-24 a:hover {
    color: #fff
}

.yanas-footer_links-right {
    display: flex;
    gap: 56px
}

.yanas-footer_links-right-item h5 {
    font-size: 11px;
    color: #64748b;
    margin: 0 0 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
}

.yanas-footer_links-right-item-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none
}

.yanas-rolling-text {
    position: relative;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    overflow: hidden;
    height: 1.4em;
    font-family: 'DM Sans', sans-serif;
}

.yanas-text-block {
    display: block;
    transition: transform .35s cubic-bezier(.4, 0, .2, 1)
}

.yanas-text-block:nth-child(2) {
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--accent)
}

.yanas-rolling-text:hover .yanas-text-block:first-child {
    transform: translateY(-100%)
}

.yanas-rolling-text:hover .yanas-text-block:nth-child(2) {
    transform: translateY(-100%)
}

.yanas-copyright {
    color: #64748b;
    font-size: 12px;
    margin-top: 24px;
    font-family: 'DM Sans', sans-serif;
    width: 100%
}

@media(max-width:1024px) {
    .yanas-footer_content {
        flex-direction: column;
        gap: 56px
    }

    .yanas-footer_wrapper {
        padding: 0 40px
    }
}

@media(max-width:768px) {
    .yanas-footer_wrapper {
        padding: 0 24px
    }

    .yanas-footer-form {
        padding: 28px 20px
    }

    .yanas-form-row {
        flex-direction: column
    }

    .yanas-footer_links {
        flex-direction: column
    }

    .yanas-footer_links-right {
        flex-direction: column;
        gap: 28px
    }
}

/* ══════════════
   SCROLL TOP BUTTON
   ══════════════ */
.scroll-top {
    position: fixed;
    bottom: -20px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 800;
    transition: all .3s;
    visibility: hidden;
    opacity: 0;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(43, 92, 230, .4);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 24px
}

.scroll-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(43, 92, 230, .5)
}