/* ===== Niche Landing Pages — Shared Styles ===== */

/* ----- Hero Overrides ----- */
.niche-hero {
    position: relative;
    overflow: hidden;
}

.niche-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;
}

.niche-hero .hero-wrapper {
    position: relative;
    z-index: 1;
}

.niche-hero .hero-social-proof,
.niche-hero .proof-strip-inner {
    position: relative;
    z-index: 1;
}

.niche-hero .hero-eyebrow {
    align-self: flex-start;
}

/* ----- Combined How It Works + Benefits ----- */
.benefits-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-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;
}

.benefit-card {
    position: relative;
}

@media (max-width: 809px) {
    .benefits-grid-3 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ----- Hero Phone Animation ----- */
.niche-hero .hero-visualization {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 580px;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: #151515;
    border-radius: 44px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18), 0 0 0 2px #333333, inset 0 0 0 2px #222222;
    overflow: hidden;
    position: relative;
    padding: 12px;
}

.phone-frame.wiggle {
    animation: phoneWiggle 0.4s ease-in-out infinite;
}

@keyframes phoneWiggle {
    0%, 100% { transform: rotate(0deg); }
    20% { transform: rotate(-2deg); }
    40% { transform: rotate(2deg); }
    60% { transform: rotate(-1.5deg); }
    80% { transform: rotate(1.5deg); }
}

.phone-inner {
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.phone-notch {
    width: 100px;
    height: 28px;
    background: #151515;
    border-radius: 0 0 18px 18px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 20px 0;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #151515;
    position: relative;
    z-index: 10;
    margin-top: -28px;
}

.phone-status-time {
    font-weight: 600;
}

.phone-status-icons {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ----- Phone Screens (3 distinct screens) ----- */
.phone-screen-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.phone-screen-layer.active {
    opacity: 1;
    pointer-events: auto;
}

/* ----- Screen 1: Incoming Call ----- */
.call-screen {
    align-items: center;
    justify-content: center;
    padding: 60px 24px 40px;
    text-align: center;
    background: #000000;
}

.call-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.call-avatar svg {
    color: #ffffff;
}

.call-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.call-name {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 4px;
}

.call-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 40px;
}

.call-actions {
    display: flex;
    gap: 56px;
}

.call-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.call-btn-decline {
    background: #ff3b30;
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.call-btn-accept {
    background: #34c759;
    box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3);
    animation: callPulse 1.5s ease-in-out infinite;
}

@keyframes callPulse {
    0%, 100% { box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3); }
    50% { box-shadow: 0 4px 12px rgba(52, 199, 89, 0.3), 0 0 0 12px rgba(52, 199, 89, 0); }
}

.call-ring-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    margin-bottom: 24px;
}

.ring-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: ringBlink 1s ease-in-out infinite;
}

@keyframes ringBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ----- Screen 2: Active Call ----- */
.activecall-screen {
    background: #000000;
    padding: 0;
}

/* Call top bar — iPhone style */
.activecall-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 52px 16px 16px;
}

.activecall-name {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 4px;
}

.activecall-timer {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Transcript area — centered single bubble */
.activecall-transcript {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.transcript-item {
    position: absolute;
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.transcript-item.active {
    opacity: 1;
    transform: translateY(0);
}

.transcript-item.exit-up {
    opacity: 0;
    transform: translateY(-60px);
}

.transcript-line {
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.transcript-line-hidden {
    opacity: 0;
    transform: translateY(8px);
}

.transcript-line-visible {
    opacity: 1;
    transform: translateY(0);
}

.transcript-bubble {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    width: 100%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Speaker label with voice bars */
.transcript-speaker {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.transcript-speaker.is-client {
    color: rgba(255, 255, 255, 0.6);
}

.transcript-speaker.is-assistant {
    color: #ff6b35;
}

/* Voice waveform bars */
.voice-bars {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 14px;
}

.voice-bar {
    width: 3px;
    border-radius: 2px;
    animation: voiceWave 0.8s ease-in-out infinite;
}

.transcript-speaker.is-client .voice-bar {
    background: rgba(255, 255, 255, 0.5);
}

.transcript-speaker.is-assistant .voice-bar {
    background: #ff6b35;
}

.voice-bar:nth-child(1) { height: 4px; animation-delay: 0s; }
.voice-bar:nth-child(2) { height: 8px; animation-delay: 0.1s; }
.voice-bar:nth-child(3) { height: 12px; animation-delay: 0.2s; }
.voice-bar:nth-child(4) { height: 6px; animation-delay: 0.3s; }
.voice-bar:nth-child(5) { height: 10px; animation-delay: 0.15s; }

@keyframes voiceWave {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

/* End call button */
.activecall-end {
    display: flex;
    justify-content: center;
    padding: 16px 0 24px;
}

.activecall-end-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ff3b30;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
}

/* ----- Screen 3: Job Card ----- */
.job-screen {
    padding: 44px 8px 0;
    background: #000000;
    align-items: center;
}

.job-screen-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-top: 16px;
}

.job-screen-logo img {
    filter: brightness(10);
}

.job-screen-logo span {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #ffffff;
}

.job-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 16px;
    width: 100%;
    margin: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.job-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 53, 0.15);
    color: #ff6b35;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.job-card-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.job-card-address {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.job-card-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.job-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.job-card-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.job-card-detail svg {
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.job-card-actions {
    display: flex;
    gap: 8px;
}

.job-card-accept {
    flex: 1;
    padding: 10px;
    background: #ff6b35;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    cursor: default;
}

.job-card-reject {
    flex: 1;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: none;
    border-radius: 8px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    cursor: default;
}

/* ----- Niche-Specific Section ----- */
.niche-section {
    padding: 120px 50px;
    background-color: #ffffff;
}

.niche-container {
    position: relative;
    z-index: 1;
}

.niche-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.niche-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.niche-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #737373;
}

.niche-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 16px;
}

.niche-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.niche-stat-number {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    color: #ff6b35;
    flex-shrink: 0;
}

.niche-stat-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #525252;
    line-height: 1.4;
}

.niche-takeaway {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    line-height: 1.5;
    color: #151515;
    margin-top: 16px;
    padding: 16px 20px;
    background: #ffffff;
    border-left: 4px solid #ff6b35;
    border-radius: 0 8px 8px 0;
}

/* Timeline visual */
.niche-visual {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.niche-day-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a1a1a1;
    margin-bottom: 16px;
}

.niche-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 3px solid #e5e5e5;
}

.timeline-block {
    padding: 16px 0 16px 24px;
    position: relative;
    border-bottom: 1px solid #eeeeee;
}

.timeline-block:last-child {
    border-bottom: none;
}

.timeline-block::before {
    content: '';
    position: absolute;
    left: -5.5px;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d0d0d0;
}

.timeline-block.timeline-busy::before {
    background: #ff6b35;
}

.timeline-time {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #151515;
    margin-bottom: 4px;
}

.timeline-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin-bottom: 4px;
}

.timeline-calls {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #ff6b35;
}

.timeline-tag {
    display: inline-block;
    margin-top: 6px;
    padding: 2px 8px;
    border-radius: 4px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timeline-tag-peak {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.niche-day-footer {
    margin-top: 20px;
    padding: 0 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.niche-day-lost {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #151515;
}

.niche-day-cost {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #ff6b35;
}

@media (max-width: 809px) {
    .niche-section {
        padding: 80px 24px;
    }

    .niche-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .niche-stat-number {
        font-size: 24px;
    }
}

/* ----- Why Niche Section ----- */
.niche-why-section {
    padding: 120px 50px;
    background-color: #fafafa;
}

.niche-why-container {
    max-width: 1100px;
    margin: 0 auto;
}

.niche-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.niche-why-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 32px;
}

.niche-why-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;
}

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

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

@media (max-width: 809px) {
    .niche-why-section {
        padding: 80px 24px;
    }

    .niche-why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ----- Audio Player Override ----- */
.niche-hero ~ .audio-demo-section {
    padding: 80px 50px;
}

.niche-hero ~ .audio-demo-section::before {
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.06) 0%, transparent 50%);
}

.niche-hero ~ .audio-demo-section .audio-demo-container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    text-align: left;
}

.niche-hero ~ .audio-demo-section .audio-demo-content {
    margin-bottom: 0;
}

.niche-hero ~ .audio-demo-section .audio-demo-badge {
    margin-left: 0;
}

.niche-hero ~ .audio-demo-section .audio-demo-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.niche-hero ~ .audio-demo-section .audio-demo-player {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.niche-hero ~ .audio-demo-section .audio-tabs {
    display: flex;
    gap: 4px;
    background: #f0f0f0;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 20px;
}

.niche-hero ~ .audio-demo-section .audio-tab {
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background: transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.niche-hero ~ .audio-demo-section .audio-tab:hover {
    color: #333;
}

.niche-hero ~ .audio-demo-section .audio-tab.active {
    background: #ff6b35;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.niche-hero ~ .audio-demo-section .audio-player-card {
    padding: 24px 32px;
    border-radius: 16px;
    max-width: 100%;
    width: 100%;
}

.niche-hero ~ .audio-demo-section .audio-waveform {
    display: none;
}

.niche-hero ~ .audio-demo-section .audio-play-btn {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
}

@media (max-width: 809px) {
    .niche-hero ~ .audio-demo-section {
        padding: 60px 24px;
    }

    .niche-hero ~ .audio-demo-section .audio-demo-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .niche-hero ~ .audio-demo-section .audio-tabs {
        flex-wrap: wrap;
        justify-content: center;
    }

    .niche-hero ~ .audio-demo-section .audio-tab {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ----- Niche Pricing Section ----- */
.niche-pricing-section {
    padding: 100px 50px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.niche-pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.niche-pricing-container {
    position: relative;
    z-index: 1;
}

.niche-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.niche-pricing-left {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.niche-pricing-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6b35;
    margin-bottom: 16px;
}

.niche-pricing-left .pricing-toggle {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 20px;
}

.niche-pricing-left .pricing-toggle-label {
    font-size: 13px;
}

.niche-pricing-left .pricing-switch {
    width: 40px;
    height: 22px;
}

.niche-pricing-left .pricing-slider:before {
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
}

.niche-pricing-left .pricing-switch input:checked + .pricing-slider:before {
    transform: translateX(18px);
}

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

.niche-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.niche-pricing-from {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #888888;
}

.niche-pricing-amount {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    font-weight: 400;
    color: #151515;
    letter-spacing: -0.02em;
}

.niche-pricing-period {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #888888;
}

.niche-pricing-trial {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin-bottom: 24px;
}

.niche-pricing-left .cta-button {
    align-self: flex-start;
    margin-bottom: 16px;
}

.pricing-upgrade-note {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #888888;
}

.pricing-upgrade-note a {
    color: #ff6b35;
    text-decoration: none;
}

.pricing-upgrade-note a:hover {
    text-decoration: underline;
}

.niche-pricing-right {
    padding-top: 8px;
}

.niche-pricing-features-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    margin-bottom: 24px;
}

.niche-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.niche-pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #525252;
}

.niche-pricing-features li svg {
    flex-shrink: 0;
}

@media (max-width: 809px) {
    .niche-pricing-section {
        padding: 80px 24px;
    }

    .niche-pricing-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .niche-pricing-amount {
        font-size: 48px;
    }

    .niche-pricing-left .cta-button {
        align-self: stretch;
        text-align: center;
    }
}

/* ----- FAQ Override ----- */
.niche-hero ~ .faq-section {
    background-color: #ffffff;
}

.niche-hero ~ .faq-section::before {
    display: none;
}

/* ----- Phone Replay Button ----- */
.phone-replay {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 6px 14px;
    background: none;
    border: none;
    color: #888888;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.phone-replay:hover {
    color: #ff6b35;
}

.phone-replay svg {
    transition: transform 0.3s ease;
}

.phone-replay:hover svg {
    transform: rotate(-45deg);
}

/* ----- Benefits Section ----- */
.benefits-section {
    padding: 80px 24px;
    background: #ffffff;
}

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

/* Override section-title to be consistent across niche pages */
.niche-hero ~ .benefits-section .section-title,
.niche-hero ~ .faq-section .section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #d4d4d4;
    border-radius: 100px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #525252;
    margin: 0 auto 16px;
}

.section-tag svg {
    color: #ff6b35;
    flex-shrink: 0;
}

.benefits-section .section-tag {
    display: flex;
    width: fit-content;
}

.section-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #737373;
    text-align: center;
    max-width: 600px;
    margin: -48px auto 64px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.benefit-card:hover {
    box-shadow: none;
    transform: none;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5a9a8a;
    border-radius: 12px;
    color: #ffffff;
    flex-shrink: 0;
}

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

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

/* ----- Final CTA Section ----- */
.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;
    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) {
    .niche-hero .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 24px 60px;
    }

    .niche-hero .hero-visualization {
        min-height: auto;
    }

    .phone-frame {
        width: 260px;
        height: 540px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

}
