.voice-followup-section {
    position: relative;
    padding: 96px 0;
    background:
        radial-gradient(circle at 12% 10%, rgba(249, 115, 22, 0.18), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(34, 211, 238, 0.12), transparent 30%),
        linear-gradient(180deg, #0f172a 0%, #111827 100%);
    overflow: hidden;
}

.voice-followup-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
}

.voice-followup-copy h2 {
    margin: 0 0 18px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.voice-followup-section .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f97316;
}

.voice-followup-section .eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
    flex: 0 0 6px;
}

.voice-followup-kicker {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #f97316;
}

.voice-followup-lead {
    margin: 0;
    max-width: 680px;
    font-size: 19px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.78);
}

.voice-followup-points {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.voice-followup-point {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(8px);
}

.voice-followup-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(249, 115, 22, 0.14);
    font-size: 22px;
}

.voice-followup-point strong {
    display: block;
    margin: 2px 0 6px;
    font-size: 18px;
    line-height: 1.3;
    color: #ffffff;
}

.voice-followup-point p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.voice-followup-media-card {
    position: relative;
    border-radius: 32px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.04) inset;
    backdrop-filter: blur(10px);
}

.voice-followup-gif {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #fff;
}

.voice-followup-example {
    max-width: 1240px;
    margin: 72px auto 0;
    padding: 0 24px;
}

.voice-example-head {
    max-width: 860px;
    margin-bottom: 26px;
}

.voice-example-head h3 {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.voice-example-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: stretch;
}

.voice-example-card {
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.voice-example-card-input {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
}

.voice-example-card-output {
    background: linear-gradient(
        180deg,
        rgba(249, 115, 22, 0.16) 0%,
        rgba(255, 255, 255, 0.08) 100%
    );
    border-color: rgba(249, 115, 22, 0.24);
    backdrop-filter: blur(8px);
}

.voice-example-label {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
}

.voice-example-card-output .voice-example-label {
    background: rgba(249, 115, 22, 0.16);
    color: #fdba74;
}

.voice-example-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.80);
}

.voice-example-arrow {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    font-size: 38px;
    font-weight: 700;
    color: #f97316;
}

@media (max-width: 1024px) {
    .voice-followup-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .voice-followup-copy {
        max-width: 100%;
    }

    .voice-example-grid {
        grid-template-columns: 1fr;
    }

    .voice-example-arrow {
        min-width: 0;
        min-height: 42px;
        transform: rotate(90deg);
    }
}

@media (max-width: 640px) {
    .voice-followup-section {
        padding: 64px 0;
    }

    .voice-followup-inner,
    .voice-followup-example {
        padding: 0 18px;
    }

    .voice-followup-copy h2 {
        font-size: 34px;
        line-height: 1.08;
    }

    .voice-followup-lead {
        font-size: 17px;
        line-height: 1.7;
    }

    .voice-followup-point {
        padding: 16px;
        border-radius: 20px;
    }

    .voice-followup-point strong {
        font-size: 17px;
    }

    .voice-followup-point p {
        font-size: 14px;
    }

    .voice-followup-media-card {
        padding: 12px;
        border-radius: 24px;
    }

    .voice-followup-gif {
        border-radius: 18px;
    }

    .voice-example-card {
        padding: 22px 18px;
        border-radius: 22px;
    }

    .voice-example-card p {
        font-size: 16px;
        line-height: 1.75;
    }

    .voice-example-head h3 {
        font-size: 30px;
        line-height: 1.14;
    }
}