.intro-centered-simple__content-area {
    max-width: 48rem;
}

.intro-centered-simple__text-block {
    max-width: 42rem;
}

/* process diagonal — bg blob, card clip-path variants, hover lift */
.process-diag__bg-blob {
    position: absolute;
    width: 35rem;
    height: 35rem;
    border-radius: 50%;
    filter: blur(6rem);
    opacity: 0.05;
    pointer-events: none;
    top: -10rem;
    left: 30%;
    background: var(--bs-primary);
}
.process-diag__card {
    transition: transform 200ms ease;
}
.process-diag__card:hover {
    transform: scale(1.01);
}
.process-diag__card--0 {
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
}
.process-diag__card--1 {
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 95%);
}
.process-diag__watermark {
    z-index: 0;
    max-width: 100%;
    overflow: hidden;
    user-select: none;
}

/* v25 - chat bubble speech tail (border-triangle trick has no TW/BS utility) */
[data-chat-bubble] {
    position: relative;
}

[data-bubble-side="left"] [data-chat-bubble]::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    left: -0.5rem;
    width: 0;
    height: 0;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-right: 0.5rem solid currentColor;
    color: inherit;
    opacity: 0.15;
}

[data-bubble-side="right"] [data-chat-bubble]::before {
    content: "";
    position: absolute;
    top: 1.25rem;
    right: -0.5rem;
    width: 0;
    height: 0;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.5rem solid currentColor;
    color: inherit;
    opacity: 0.15;
}

/* content frame tiles — animated icon stage (replaces photo area) */
.content-frame-tiles__icon-stage {
    min-height: 14rem;
}

.content-frame-tiles__icon-tile {
    width: 5.5rem;
    height: 5.5rem;
    animation: content-frame-tiles-float 6s ease-in-out infinite;
}

.content-frame-tiles__icon-ring {
    width: 7rem;
    height: 7rem;
    animation: content-frame-tiles-ring 4.5s ease-in-out infinite;
}

.content-frame-tiles__icon-pulse {
    animation: content-frame-tiles-pulse 3.5s ease-in-out infinite;
}

.content-frame-tiles__icon-glyph {
    animation: content-frame-tiles-tilt 5s ease-in-out infinite;
    transform-origin: center;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-tile {
    animation-delay: 0s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-ring {
    animation-delay: 0.3s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-pulse {
    animation-delay: 0s;
}

.content-frame-tiles__icon-stage--0 .content-frame-tiles__icon-glyph {
    animation-delay: 0.2s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-tile {
    animation-delay: 0.9s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-ring {
    animation-delay: 1.2s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-pulse {
    animation-delay: 0.8s;
}

.content-frame-tiles__icon-stage--1 .content-frame-tiles__icon-glyph {
    animation-delay: 1s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-tile {
    animation-delay: 1.8s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-ring {
    animation-delay: 2.1s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-pulse {
    animation-delay: 1.6s;
}

.content-frame-tiles__icon-stage--2 .content-frame-tiles__icon-glyph {
    animation-delay: 1.8s;
}

@keyframes content-frame-tiles-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-0.4rem);
    }
}

@keyframes content-frame-tiles-ring {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.08) rotate(12deg);
        opacity: 0.35;
    }
}

@keyframes content-frame-tiles-pulse {
    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.15;
    }
}

@keyframes content-frame-tiles-tilt {
    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(8deg) scale(1.08);
    }
}

@media (prefers-reduced-motion: reduce) {
    .content-frame-tiles__icon-tile,
    .content-frame-tiles__icon-ring,
    .content-frame-tiles__icon-pulse,
    .content-frame-tiles__icon-glyph {
        animation: none;
    }
}

/* FAQ v13 — JS hooks */
.handbook-support-resolve-veiled {
    display: none;
}

.handbook-support-mark.handbook-support-mark-expand {
    transform: rotate(180deg);
}


.conversion-boost__section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

@keyframes conversion-boost-highlight-throb-track {
    0%, 100% { opacity: 1; }
    50%       { opacity: .5; }
}
.conversion-boost__highlight--throb {
    animation: conversion-boost-highlight-throb-track 2s cubic-bezier(.4,0,.6,1) infinite;
}

.conversion-boost__jump--rise:hover { transform: scale(1.05); transition: transform .2s ease; }

