/* Section guide robots — homepage */
.section-intro {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}
.section-intro .section-header,
.section-intro .section-header-inline {
    text-align: start;
    margin-bottom: 0;
    flex: 1;
    min-width: min(100%, 260px);
}
[dir="rtl"] .section-intro .section-header,
[dir="rtl"] .section-intro .section-header-inline {
    text-align: end;
}

.section-robot {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}
.section-robot-stage {
    position: relative;
    width: 150px;
    height: 182px;
    flex-shrink: 0;
}
.section-robot-canvas {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
}
.section-robot-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}
.section-robot-pedestal {
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 88px;
    height: 14px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(0,212,170,0.42) 0%, rgba(0,102,255,0.12) 55%, transparent 72%);
    z-index: 1;
}
.section-robot-bubble {
    background: linear-gradient(145deg, rgba(10,22,40,0.94), rgba(0,102,255,0.18));
    border: 1px solid rgba(0,212,170,0.38);
    border-radius: 14px;
    padding: 14px 16px 12px;
    max-width: min(320px, 72vw);
    position: relative;
    box-shadow: 0 8px 28px rgba(0,102,255,0.12);
}
.section-robot-bubble::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 26px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 8px solid rgba(0,212,170,0.38);
}
[dir="rtl"] .section-robot-bubble::before {
    left: auto;
    right: -7px;
    border-right: none;
    border-left: 8px solid rgba(0,212,170,0.38);
}
.section-robot-bubble p {
    margin: 0 0 12px;
    font-size: 0.88rem;
    line-height: 1.58;
    color: rgba(255,255,255,0.92);
}
.section-robot-speak {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(0,212,170,0.45);
    background: rgba(0,212,170,0.12);
    color: #00d4aa;
    font: 650 0.76rem/1 Inter, sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.section-robot-speak:hover,
.section-robot-speak.is-active {
    background: #00d4aa;
    border-color: #00d4aa;
    color: #0a1628;
}
.section-robot.is-speaking .section-robot-stage {
    filter: drop-shadow(0 0 12px rgba(0,212,170,0.35));
}

/* Compact — trust strip, brands */
.section-robot--compact {
    align-items: center;
    width: 100%;
    max-width: 720px;
    margin: 0 auto 20px;
}
.section-robot--compact .section-robot-stage {
    width: 108px;
    height: 132px;
}
.section-robot--compact .section-robot-bubble {
    max-width: none;
    flex: 1;
}

/* Inline — CTA row */
.section-robot--inline {
    align-items: center;
}
.section-robot--inline .section-robot-stage {
    width: 120px;
    height: 148px;
}
.section-robot--inline .section-robot-bubble {
    max-width: 340px;
}

.trust-intro {
    margin-bottom: 8px;
}
.about-intro {
    margin-bottom: 32px;
}
.cta-inner-with-robot {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    flex-wrap: wrap;
    justify-content: space-between;
}
.cta-inner-with-robot .cta-text {
    flex: 1;
    min-width: 220px;
}
.promo-robot-wrap {
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .section-intro {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .section-intro .section-header,
    .section-intro .section-header-inline {
        text-align: center;
    }
    [dir="rtl"] .section-intro .section-header,
    [dir="rtl"] .section-intro .section-header-inline {
        text-align: center;
    }
    .section-robot {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .section-robot-bubble {
        max-width: 100%;
    }
    .section-robot-bubble::before {
        left: 50%;
        top: -7px;
        transform: translateX(-50%);
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
        border-bottom: 8px solid rgba(0,212,170,0.38);
        border-top: none;
    }
    [dir="rtl"] .section-robot-bubble::before {
        right: auto;
        left: 50%;
        border-left: 7px solid transparent;
        border-right: 7px solid transparent;
    }
    .section-robot--compact {
        flex-direction: row;
        align-items: flex-start;
    }
    .cta-inner-with-robot {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
