/* CTA — minimal panel, no glows */
.gr-cta {
    padding: var(--gr-section-py) 0;
}

.gr-cta__inner {
    background: var(--gr-bg-elevated);
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius);
    padding: clamp(56px, 8vw, 96px) clamp(32px, 6vw, 64px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* subtle accent line at top */
.gr-cta__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gr-orange), transparent);
    pointer-events: none;
}

.gr-cta__title {
    color: var(--gr-white);
    font-size: var(--gr-fs-h2);
    margin-bottom: 16px;
    letter-spacing: var(--gr-tracking-tighter);
    position: relative;
    z-index: 1;
}

.gr-cta__text {
    color: var(--gr-text-muted);
    font-size: 1.0625rem;
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
    line-height: 1.55;
}

.gr-cta__inner .gr-btn {
    position: relative;
    z-index: 1;
}

.gr-cta__badge {
    display: inline-block;
    padding: 4px 10px;
    background: transparent;
    border: 1px solid var(--gr-border);
    border-radius: var(--gr-radius-full);
    color: var(--gr-orange);
    font-size: var(--gr-fs-xs);
    font-weight: 500;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.01em;
}
