.cta {
    background: #000;
    color: #fff;
    text-align: center;
}

.cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: 1.1;
    color: #fff;
}

.cta__desc {
    opacity: 0.86;
    margin-bottom: var(--space-5);
    font-size: 1.05rem;
}

.cta__actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-3);
}

.cta .btn--primary {
    background: #fff;
    color: #000;
}
.cta .btn--primary:hover { background: var(--bg-1); color: #000; }

.cta .btn--ghost {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.45);
}
.cta .btn--ghost:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.10);
    color: #fff;
}

/* About strip */
.about-strip { background: var(--bg-1); }
.about-strip__inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-8);
    align-items: center;
}
.about-strip__bio {
    color: var(--text-2);
    font-size: 1.05rem;
    margin-bottom: var(--space-5);
    max-width: 540px;
    line-height: 1.65;
}
.about-strip__points {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}
.about-strip__points li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--text-1);
    font-weight: 500;
}
.about-strip__points svg {
    color: var(--text-0);
    flex-shrink: 0;
}

.about-strip__visual {
    aspect-ratio: 4/5;
    max-width: 380px;
    margin-left: auto;
    position: relative;
}
.about-strip__tile {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    background: #000 url("/assets/img/logo.webp") center/70% no-repeat;
    box-shadow: var(--shadow-lg);
    border: 6px solid #fff;
    transform: rotate(-2deg);
}

@media (max-width: 880px) {
    .about-strip__inner { grid-template-columns: 1fr; }
    .about-strip__visual { margin: 0 auto; }
}
