/* ===== Feature Pages — Shared Styles ===== */

/* ----- Hero ----- */
.feature-hero {
    padding: 180px 50px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.feature-hero-container {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    padding: 8px 16px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #ff6b35;
    margin-bottom: 24px;
}

.feature-hero-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #151515;
    margin: 0 0 20px 0;
}

.feature-hero-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-hero .hero-cta-group {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ----- Shared Section Styles ----- */
.feature-section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #ff6b35;
    margin-bottom: 16px;
}

.feature-section-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.015em;
    color: #151515;
    margin: 0 0 16px 0;
}

.feature-section-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
    margin: 0 0 40px 0;
    max-width: 560px;
}

/* ----- Audio Section ----- */
.feature-audio-section {
    padding: 80px 50px;
    background: #fafafa;
    text-align: center;
}

.feature-audio-container {
    max-width: 600px;
    margin: 0 auto;
}

.feature-audio-section .feature-section-desc {
    margin-left: auto;
    margin-right: auto;
}

.feature-audio-section .audio-demo-player {
    max-width: 480px;
    margin: 0 auto;
}

.feature-audio-section .audio-player-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.feature-audio-section .audio-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 32px;
}

.feature-audio-section .waveform-bar {
    width: 3px;
    height: 100%;
    background: #ff6b35;
    border-radius: 2px;
    opacity: 0.3;
    animation: waveAnim 1.2s ease-in-out infinite;
}

.feature-audio-section .waveform-bar:nth-child(1) { height: 40%; animation-delay: 0s; }
.feature-audio-section .waveform-bar:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.feature-audio-section .waveform-bar:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.feature-audio-section .waveform-bar:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.feature-audio-section .waveform-bar:nth-child(5) { height: 60%; animation-delay: 0.4s; }
.feature-audio-section .waveform-bar:nth-child(6) { height: 80%; animation-delay: 0.15s; }
.feature-audio-section .waveform-bar:nth-child(7) { height: 45%; animation-delay: 0.25s; }
.feature-audio-section .waveform-bar:nth-child(8) { height: 95%; animation-delay: 0.35s; }
.feature-audio-section .waveform-bar:nth-child(9) { height: 55%; animation-delay: 0.05s; }
.feature-audio-section .waveform-bar:nth-child(10) { height: 75%; animation-delay: 0.45s; }
.feature-audio-section .waveform-bar:nth-child(11) { height: 40%; animation-delay: 0.2s; }
.feature-audio-section .waveform-bar:nth-child(12) { height: 85%; animation-delay: 0.3s; }
.feature-audio-section .waveform-bar:nth-child(13) { height: 50%; animation-delay: 0.1s; }
.feature-audio-section .waveform-bar:nth-child(14) { height: 65%; animation-delay: 0.4s; }
.feature-audio-section .waveform-bar:nth-child(15) { height: 45%; animation-delay: 0.25s; }

@keyframes waveAnim {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.feature-audio-section .audio-play-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ff6b35;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.feature-audio-section .audio-play-btn:hover {
    background: #e55a2b;
    transform: scale(1.05);
}

.feature-audio-section .audio-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.feature-audio-section .audio-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #151515;
}

.feature-audio-section .audio-duration {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #999999;
}

.feature-audio-section .audio-progress {
    width: 100%;
}

.feature-audio-section .audio-progress-bar {
    width: 100%;
    height: 4px;
    background: #eaeaea;
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.feature-audio-section .audio-progress-fill {
    height: 100%;
    background: #ff6b35;
    border-radius: 2px;
    width: 0%;
    transition: width 0.1s linear;
}

/* ----- Steps Section ----- */
.feature-steps-section {
    padding: 120px 50px;
    text-align: center;
    background: #ffffff;
}

.feature-steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-step {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: left;
    position: relative;
}

.feature-step-number {
    position: absolute;
    top: -14px;
    left: 24px;
    width: 28px;
    height: 28px;
    background: #ff6b35;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-step-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ff6b35;
}

.feature-step-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 8px 0;
}

.feature-step-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ----- Detail Grid Section ----- */
.feature-grid-section {
    padding: 120px 50px;
    background: #fafafa;
    text-align: center;
}

.feature-grid-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-detail-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.feature-detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ff6b35;
}

.feature-detail-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 8px 0;
}

.feature-detail-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

/* ----- Call Flows Section ----- */
.feature-flows-section {
    padding: 120px 50px;
    background: #ffffff;
    text-align: center;
}

.feature-flows-container {
    max-width: 1000px;
    margin: 0 auto;
}

.feature-flows-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.feature-flow-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.feature-flow-label {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 12px;
}

.feature-flow-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 8px 0;
}

.feature-flow-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #737373;
    margin: 0 0 20px 0;
}

.feature-flow-example {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 16px;
}

.feature-flow-example-label {
    display: inline-block;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 8px;
}

.feature-flow-example p {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #525252;
    margin: 0 0 8px 0;
}

.feature-flow-example p:last-child {
    margin-bottom: 0;
}

.feature-flow-example .feature-flow-ai {
    color: #ff6b35;
    font-style: italic;
}

/* ----- Compare Section ----- */
.feature-compare-section {
    padding: 120px 50px;
    background: #fafafa;
    text-align: center;
}

.feature-compare-container {
    max-width: 800px;
    margin: 0 auto;
}

.feature-compare-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.feature-compare-col {
    border-radius: 12px;
    padding: 32px;
    text-align: left;
}

.feature-compare-before {
    background: #ffffff;
    border: 1px solid #eaeaea;
}

.feature-compare-after {
    background: #ffffff;
    border: 1px solid #d4edda;
}

.feature-compare-header {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eaeaea;
}

.feature-compare-after .feature-compare-header {
    border-bottom-color: #d4edda;
}

.feature-compare-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #525252;
}

.feature-compare-row svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* ----- Final CTA (reuse from niche) ----- */
.final-cta-section {
    padding: 80px 24px;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
    margin-bottom: 32px;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff6b35;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    transition: background 0.2s ease;
}

.final-cta-button:hover {
    background: #e55a2b;
}

.final-cta-trial {
    font-size: 13px;
    color: #888888;
    margin-top: 12px;
}

/* ----- Responsive ----- */
@media (max-width: 809px) {
    .feature-hero {
        padding: 140px 24px 60px;
    }

    .feature-hero .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .feature-hero .hero-cta-group .cta-button,
    .feature-hero .hero-cta-group .cta-button-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .feature-audio-section,
    .feature-steps-section,
    .feature-grid-section,
    .feature-flows-section,
    .feature-compare-section {
        padding: 80px 24px;
    }

    .feature-steps-grid,
    .feature-detail-grid,
    .feature-flows-grid {
        grid-template-columns: 1fr;
    }

    .feature-compare-table {
        grid-template-columns: 1fr;
    }
}
