/* Font imports from Rogo */
@font-face {
    font-family: "BR Sonoma Medium";
    src: url("https://framerusercontent.com/assets/gwoSe7SdW1paq1oa52gL444qzIE.woff2");
    font-display: block;
}

@font-face {
    font-family: "BR Sonoma Regular";
    src: url("https://framerusercontent.com/assets/UEwcmtfcPoiFI5TQFY4y77HQxg.woff2");
    font-display: block;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive visibility helpers */
.mobile-only {
    display: none;
}

@media (max-width: 809px) {
    .desktop-only {
        display: none;
    }
    .mobile-only {
        display: inline;
    }
}

body {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fdfcfd;
    color: #151515;
}

/* Header */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #f5f5f5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 50px;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    flex-shrink: 0;
}

.logo-text {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #151515;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav-link {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #525252;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-nav-link:hover {
    color: #ff6b35;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background-color: transparent;
    color: #ff6b35;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
    color: #e55a2b;
}

.header.header-scrolled .header-cta,
.header-cta.header-cta-filled {
    background-color: #ff6b35;
    color: #ffffff;
}

.header-cta.header-cta-filled:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

.header.header-scrolled .header-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 70vh;
    padding: 100px 50px 80px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-centered .hero-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.hero-centered .hero-content {
    align-items: center;
    position: relative;
}

.hero-centered .hero-subtitle {
    margin: 0 auto;
}

.hero-dots-bg {
    position: absolute;
    width: 800px;
    height: 800px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.35) 2px, transparent 2px);
    background-size: 40px 40px;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    opacity: 0;
    animation: dotsFadeIn 0.8s ease-out forwards;
    -webkit-mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 70%);
    mask-image: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 70%);
}

@media (max-width: 809px) {
    .hero-dots-bg {
        width: 400px;
        height: 400px;
        background-size: 24px 24px;
    }
}

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

.hero-visualization {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-flow {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    max-width: 400px;
}

.hero-flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.hero-flow-step:hover {
    border-color: #d0d0d0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.hero-flow-step-active {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff8f5 0%, #ffffff 100%);
}

.hero-flow-step-active:hover {
    border-color: #ff6b35;
}

.hero-flow-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 10px;
    flex-shrink: 0;
    color: #525252;
}

.hero-flow-step-active .hero-flow-icon {
    background: #ff6b35;
    color: #ffffff;
}

.hero-flow-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-flow-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151515;
}

.hero-flow-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
}


/* Hero step cards */
.hero-step-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-step-card.hero-step-1 {
    animation: heroCard1 6s ease-in-out infinite;
}

.hero-step-card.hero-step-2 {
    animation: heroCard2 6s ease-in-out infinite;
}

.hero-step-card.hero-step-3 {
    animation: heroCard3 6s ease-in-out infinite;
}

@keyframes heroCard1 {
    0%, 1% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    24% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    25%, 100% { border-color: #e5e5e5; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transform: translateY(0); }
}

@keyframes heroCard2 {
    0%, 32% { border-color: #e5e5e5; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transform: translateY(0); }
    33% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    57% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    58%, 100% { border-color: #e5e5e5; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transform: translateY(0); }
}

@keyframes heroCard3 {
    0%, 65% { border-color: #e5e5e5; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transform: translateY(0); }
    66% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    99% { border-color: #5a9a8a; box-shadow: 0 8px 24px rgba(90, 154, 138, 0.15); transform: translateY(-2px); }
    100% { border-color: #e5e5e5; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); transform: translateY(0); }
}

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

.hero-step-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-step-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #151515;
}

.hero-step-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    line-height: 1.4;
}

/* Hero flow arrows - looping sequence */
.hero-flow-arrow {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    color: #d4d4d4;
}

.hero-arrow-1 {
    animation: heroArrow1 6s ease-in-out infinite;
}

.hero-arrow-2 {
    animation: heroArrow2 6s ease-in-out infinite;
}

@keyframes heroArrow1 {
    0%, 24% { opacity: 0.3; color: #d4d4d4; }
    25%, 32% { opacity: 1; color: #ff6b35; }
    33%, 100% { opacity: 0.3; color: #d4d4d4; }
}

@keyframes heroArrow2 {
    0%, 57% { opacity: 0.3; color: #d4d4d4; }
    58%, 65% { opacity: 1; color: #ff6b35; }
    66%, 100% { opacity: 0.3; color: #d4d4d4; }
}

/* Step 1: Phone ring animation - looping */
.hero-step-icon-phone {
    animation: heroIcon1Color 6s ease-in-out infinite;
}

.hero-phone-ring-anim {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid #ff6b35;
    border-radius: 16px;
    animation: heroPhoneRing 6s ease-out infinite;
}

@keyframes heroPhoneRing {
    0% { opacity: 0; transform: scale(0.95); }
    2% { opacity: 0.6; transform: scale(0.95); }
    15% { opacity: 0; transform: scale(1.2); }
    16%, 100% { opacity: 0; transform: scale(0.95); }
}

.hero-step-icon-phone svg {
    animation: heroPhoneShake 6s ease-in-out infinite;
}

@keyframes heroPhoneShake {
    0%, 2% { transform: rotate(0deg); }
    4% { transform: rotate(-12deg); }
    6% { transform: rotate(12deg); }
    8% { transform: rotate(-12deg); }
    10% { transform: rotate(12deg); }
    12% { transform: rotate(-12deg); }
    14%, 100% { transform: rotate(0deg); }
}

@keyframes heroIcon1Color {
    0%, 1% { background: #fff5f2; color: #ff6b35; }
    24% { background: #fff5f2; color: #ff6b35; }
    25%, 100% { background: #eef6f4; color: #5a9a8a; }
}

/* Step 2: Notes animation - looping */
.hero-step-icon-notes {
    animation: heroIcon2Color 6s ease-in-out infinite;
}

.hero-note-line {
    stroke-dasharray: 10;
}

.hero-note-line-1 {
    animation: heroNoteLine1 6s ease-out infinite;
}

.hero-note-line-2 {
    animation: heroNoteLine2 6s ease-out infinite;
}

@keyframes heroNoteLine1 {
    0%, 33% { stroke-dashoffset: 10; }
    40%, 60% { stroke-dashoffset: 0; }
    66%, 100% { stroke-dashoffset: 10; }
}

@keyframes heroNoteLine2 {
    0%, 38% { stroke-dashoffset: 10; }
    45%, 60% { stroke-dashoffset: 0; }
    66%, 100% { stroke-dashoffset: 10; }
}

@keyframes heroIcon2Color {
    0%, 32% { background: #eef6f4; color: #5a9a8a; }
    33% { background: #fff5f2; color: #ff6b35; }
    57% { background: #fff5f2; color: #ff6b35; }
    58%, 100% { background: #eef6f4; color: #5a9a8a; }
}

/* Step 3: Notification animation - looping */
.hero-step-icon-check {
    animation: heroIcon3Color 6s ease-in-out infinite;
}

.hero-notif-dot {
    animation: heroNotifPulse 6s ease-out infinite;
}

@keyframes heroNotifPulse {
    0%, 65% { opacity: 0; transform: scale(0.5); }
    68% { opacity: 1; transform: scale(1.2); }
    72%, 95% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.5); }
}

@keyframes heroIcon3Color {
    0%, 65% { background: #eef6f4; color: #5a9a8a; }
    66% { background: #fff5f2; color: #ff6b35; }
    99% { background: #fff5f2; color: #ff6b35; }
    100% { background: #eef6f4; color: #5a9a8a; }
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border: 1px solid #d4d4d4;
    border-radius: 100px;
    margin-bottom: 10px;
}

.hero-eyebrow svg {
    color: #ff6b35;
    flex-shrink: 0;
}

.hero-eyebrow span {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #525252;
    letter-spacing: 0.01em;
}

.hero-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #151515;
}

.highlight-orange {
    background-color: #ff6b35;
    color: #ffffff;
    padding: 0 12px;
}

.hero-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.5;
    color: #525252;
    max-width: 600px;
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5a9a8a;
    border-radius: 12px;
    color: #ffffff;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-feature:hover .hero-feature-icon {
    box-shadow: 0 0 20px rgba(102, 88, 83, 0.4);
    transform: scale(1.05);
}

.hero-feature-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #525252;
}

/* Video Demo Section */
.video-demo {
    padding: 0 50px 80px;
}

@media (max-width: 809px) {
    .video-demo {
        padding: 0 8px 60px;
    }
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    display: block;
    cursor: pointer;
}

.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.video-play-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.video-play-overlay svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.2s ease;
}

.video-play-overlay:hover svg {
    transform: scale(1.1);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
}

.video-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.video-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.video-try-demo-btn {
    padding: 12px 24px;
    background-color: #ff6b35;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.video-try-demo-btn:hover {
    background-color: #e55a2b;
    transform: scale(1.05);
}

/* Mobile CTA below video - hidden on desktop */
.video-mobile-cta {
    display: none;
}

@media (max-width: 809px) {
    /* Hide Try Demo button in video on mobile */
    .video-try-demo-btn {
        display: none;
    }

    /* Show mobile CTA below video */
    .video-mobile-cta {
        display: flex;
        justify-content: center;
        padding: 24px 16px 0;
    }

    .video-mobile-cta .cta-button-large {
        width: 100%;
        max-width: 400px;
    }

    /* Smaller video control buttons on mobile */
    .video-btn {
        width: 40px;
        height: 40px;
    }

    .video-btn svg {
        width: 20px;
        height: 20px;
    }

    .video-controls {
        bottom: 12px;
        right: 12px;
        gap: 8px;
    }
}

.video-progress-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-progress-container {
    opacity: 1;
}

.video-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.video-progress-fill {
    height: 100%;
    background-color: #ff6b35;
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

/* Value Prop Section */
.value-prop {
    padding: 120px 50px;
    background-color: #f5f5f4;
}

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

.value-prop-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.value-prop-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;
}

.value-prop-description {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
    margin-bottom: 8px;
}

.value-prop-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.value-prop-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.value-prop-feature:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

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

.value-prop-feature-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

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

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

/* Social Proof Section */
.social-proof {
    padding: 60px 50px;
    background-color: #fafafa;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
}

.social-proof-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Inline stats bar */
.social-proof-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-inline {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #737373;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.stat-inline strong {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    color: #151515;
    font-size: 16px;
}

.stat-divider {
    width: 1px;
    height: 20px;
    background-color: #d4d4d4;
}

.stat-stars-inline {
    display: inline-flex;
    gap: 1px;
    margin-left: 2px;
    margin-right: 4px;
}

/* Testimonials carousel */
.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.testimonials-carousel {
    position: relative;
    min-height: 220px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.testimonial-card.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.testimonial-content {
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #151515;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f5f5f5;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #151515;
}

.testimonial-role {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
}

/* Carousel dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background-color: #d4d4d4;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot:hover {
    background-color: #a3a3a3;
}

.testimonial-dot.active {
    background-color: #ff6b35;
    transform: scale(1.2);
}

/* What Is RingAssist Section */
.what-is-ringassist {
    padding: 120px 50px;
    background-color: #f5f5f4;
}

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

.what-is-content {
    order: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

.what-is-visual {
    order: 1;
}

.what-is-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;
}

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

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

.what-is-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 8px;
}

.what-is-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    transition: box-shadow 0.2s ease;
}

.what-is-feature:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.what-is-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5a9a8a;
    border-radius: 8px;
    color: #ffffff;
    flex-shrink: 0;
}

.what-is-feature-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

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

.what-is-feature-desc {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
    margin: 0;
    line-height: 1.4;
}

.what-is-not {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 12px 16px;
    background-color: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
}

.what-is-not-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
}

.what-is-not-item {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #525252;
}

.what-is-not-divider {
    color: #d4d4d4;
}

.what-is-visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

/* Example Job Card */
.example-job-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.example-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.example-card-main-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.example-job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.example-job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
}

.example-job-meta svg {
    color: #a1a1a1;
}

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

.example-btn-action {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    border: 1px solid #e5e5e5;
    background-color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.example-btn-accept {
    color: #10b981;
}

.example-btn-accept:hover {
    background-color: #d1fae5;
    border-color: #10b981;
}

.example-btn-reject {
    color: #dc2626;
}

.example-btn-reject:hover {
    background-color: #fee2e2;
    border-color: #dc2626;
}

.example-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.example-detail-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.example-section-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

.example-job-description {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #151515;
    margin: 0;
}

.example-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
}

.example-detail-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
}

.example-detail-value {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #151515;
}

.example-view-photos-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #151515;
    cursor: default;
    pointer-events: none;
}

.example-view-photos-btn svg {
    color: #ff6b35;
}

.example-audio-player {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.example-play-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #d4d4d4;
    border: none;
    cursor: default;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.example-audio-progress {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.example-progress-bar {
    height: 4px;
    background-color: #e5e5e5;
    border-radius: 2px;
    overflow: hidden;
}

.example-progress-fill {
    height: 100%;
    background-color: #ff6b35;
    border-radius: 2px;
}

.example-audio-time {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #737373;
}

.example-transcription {
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 200px;
    overflow-y: auto;
    padding: 16px;
    background-color: #fafafa;
    border-radius: 8px;
}

.example-transcript-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.example-speaker {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-speaker-ai {
    color: #10b981;
}

.example-speaker-caller {
    color: #ff6b35;
}

.example-text {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #525252;
    line-height: 1.5;
}

.example-two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.example-map {
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.example-map iframe {
    height: 100%;
    min-height: 180px;
}

.example-action-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.example-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 6px;
    border: 2px solid;
    background-color: transparent;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    cursor: default;
    pointer-events: none;
}

.example-action-accept {
    border-color: #10b981;
    color: #10b981;
}

.example-action-reject {
    border-color: #dc2626;
    color: #dc2626;
}

.example-action-followup {
    border-color: #ff6b35;
    color: #ff6b35;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background-image: radial-gradient(circle, rgba(255, 107, 53, 0.15) 2px, transparent 2px);
    background-size: 40px 40px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    animation: dotsFadeIn 0.8s ease-out forwards;
}

@keyframes dotsFadeIn {
    to {
        opacity: 1;
    }
}

.phone-mockup {
    width: 100%;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.call-notification {
    width: 100%;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    border: 1px solid #e5e5e5;
}

.call-blocked {
    border-left: 4px solid #dc2626;
}

.call-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.call-status {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.caller-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
}

.caller-name {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 28px;
    color: #151515;
    line-height: 1.2;
}

.caller-number {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #737373;
}

.blocked-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #dc2626;
    border-radius: 8px;
    color: #ffffff;
}

.blocked-badge span {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.block-reason {
    padding: 0;
}

.reason-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #737373;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.reason-text {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #151515;
}

.listen-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: transparent;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    color: #151515;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.listen-button:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.listen-button svg {
    color: #737373;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: 1px solid #ff6b35;
    width: fit-content;
}

.cta-button::after {
    content: '→';
    font-size: 1.2rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.cta-button:hover {
    background-color: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-1px);
}

.cta-button:hover::after {
    transform: translateX(4px);
}

/* Problem Section */
.problem-section {
    padding: 120px 50px;
    background-color: #fafafa;
}

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

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

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

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

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

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

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

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

.problem-source {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #737373;
    margin: 0;
}

.problem-source a {
    color: #737373;
    text-decoration: underline;
}

.problem-source a:hover {
    color: #ff6b35;
}

/* Calculator Box */
.calculator-box {
    background-color: #0a0a0a;
    border-radius: 16px;
    padding: 48px;
}

.calculator-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.calculator-slider-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calculator-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 24px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 8px;
}

.slider-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.slider-wrapper {
    position: relative;
    flex: 1;
    padding: 20px 0;
}

.calculator-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    background: #333333;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}

.calculator-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.calculator-slider::-webkit-slider-thumb:hover {
    transform: scale(1.05);
}

.calculator-slider::-moz-range-thumb {
    width: 48px;
    height: 48px;
    background: #ffffff;
    border: 2px solid #ff6b35;
    border-radius: 50%;
    cursor: pointer;
}

.slider-value {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #ff6b35;
    pointer-events: none;
    width: 48px;
    text-align: center;
    left: 0;
}

.slider-range-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #a1a1a1;
    min-width: 40px;
    text-align: center;
}

.calculator-result {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid #222222;
    border-bottom: 1px solid #222222;
}

.result-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #737373;
    margin: 0 0 12px 0;
}

.result-value {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 56px;
    color: #dc2626;
    margin: 0;
    line-height: 1;
}

.calculator-cta {
    align-self: center;
}

/* How It Works Section (New) */
.how-it-works-new {
    padding: 120px 50px;
    background-color: #ffffff;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-flow {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
}

.flow-step {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.flow-step:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.flow-step-number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 36px;
    height: 36px;
    background-color: #5a9a8a;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 160px;
    padding: 16px;
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
}

/* Taller boxes for steps 3 and 4 */
.flow-step:nth-child(3) .flow-step-visual,
.flow-step:nth-child(4) .flow-step-visual {
    height: 200px;
}

.flow-step-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

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

/* Step 1: Phone + AI */
.flow-phone-incoming {
    position: relative;
    width: 64px;
    height: 64px;
    background-color: #5a9a8a;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-phone-ring {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 3px solid #5a9a8a;
    border-radius: 20px;
    opacity: 0;
    animation: phoneRing 1.5s ease-out infinite;
}

@keyframes phoneRing {
    0% {
        opacity: 0.6;
        transform: scale(0.9);
    }
    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

.flow-arrow {
    margin: 0 16px;
}

.flow-ai-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background-color: #ff6b35;
    border-radius: 100px;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

/* Step 2: Simple Scrolling Conversation */
.flow-conversation-simple {
    width: 100%;
    max-width: 280px;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.flow-chat-scroll {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    animation: simpleScroll 12s linear infinite;
}

@keyframes simpleScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.flow-chat-msg {
    padding: 7px 11px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
    max-width: 85%;
    flex-shrink: 0;
}

.flow-msg-ai {
    background-color: #5a9a8a;
    color: #ffffff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.flow-msg-customer {
    background-color: #e5e5e5;
    color: #151515;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.flow-message-text {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    line-height: 1.4;
}

/* Step 3: Phone Mockup with Notification */
.flow-phone-mockup {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    width: 100%;
    height: 100%;
}

.flow-phone-frame {
    width: 180px;
    height: 100px;
    background-color: transparent;
    border: 3px solid #d4d4d4;
    border-bottom: none;
    border-radius: 28px 28px 0 0;
    padding: 8px;
    position: relative;
    overflow: hidden;
}

.flow-phone-frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(to bottom, transparent 0%, #fafafa 100%);
}

.flow-phone-notch {
    width: 80px;
    height: 24px;
    background-color: #e5e5e5;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.flow-phone-screen {
    width: 100%;
    height: 100%;
    background-color: #f5f5f5;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.flow-phone-time {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #a1a1a1;
    text-align: center;
    padding: 28px 0 4px;
}

.flow-phone-content {
    flex: 1;
}

.flow-popup-notification {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation: popupSlide 3s ease-in-out infinite;
}

@keyframes popupSlide {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(-5px);
        opacity: 1;
    }
}

.flow-popup-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.flow-popup-app-icon {
    width: 24px;
    height: 24px;
    background-color: #ff6b35;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-popup-app-name {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #525252;
    flex: 1;
}

.flow-popup-time {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #a1a1a1;
}

.flow-popup-body {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.flow-popup-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #151515;
}

.flow-popup-text {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #525252;
    margin: 0;
    line-height: 1.3;
}

.flow-popup-action {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #ff6b35;
    margin-top: 6px;
}

/* Step 4: Job Card */
.flow-job-card-compact {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 14px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.flow-job-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.flow-job-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.flow-job-card-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #151515;
}

.flow-job-card-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #525252;
}

.flow-job-card-meta {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #737373;
}

.flow-job-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 10px;
}

.flow-job-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 12px;
}

.flow-job-detail-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 11px;
    color: #525252;
}

.flow-job-detail-row svg {
    flex-shrink: 0;
    color: #a1a1a1;
}

.flow-job-badge-new {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 9px;
    color: #ffffff;
    background-color: #ff6b35;
    padding: 3px 8px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.flow-action-btn-compact {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 6px 8px;
    border-radius: 6px;
    border: 1.5px solid;
    background-color: transparent;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 10px;
    cursor: default;
}

.flow-action-accept-compact {
    border-color: #10b981;
    color: #10b981;
}

.flow-action-followup-compact {
    border-color: #f59e0b;
    color: #f59e0b;
}

.flow-action-reject-compact {
    border-color: #dc2626;
    color: #dc2626;
}

.how-it-works-cta {
    display: flex;
    justify-content: center;
    margin-top: 64px;
}

/* Mobile responsive for How It Works */
@media (max-width: 809px) {
    .how-it-works-new {
        padding: 80px 24px;
    }

    .how-it-works-flow {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .flow-step {
        padding: 24px;
    }

    .flow-step-visual {
        height: 150px;
        padding: 12px;
    }

    .flow-arrow {
        margin: 0 8px;
    }

    .flow-arrow svg {
        width: 24px;
        height: 24px;
    }

    .flow-phone-incoming {
        width: 48px;
        height: 48px;
        border-radius: 12px;
    }

    .flow-phone-incoming svg {
        width: 24px;
        height: 24px;
    }

    .flow-ai-badge {
        padding: 8px 14px;
        font-size: 12px;
    }

    .flow-ai-badge svg {
        width: 18px;
        height: 18px;
    }

    .how-it-works-cta {
        margin-top: 48px;
    }
}

/* Will It Work Section */
.will-it-work {
    padding: 120px 50px;
    background-color: #ffffff;
}

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

.will-it-work-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.will-it-work-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;
}

.will-it-work-description {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #737373;
}

.will-it-work-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.will-it-work-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.will-it-work-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.will-it-work-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
}

.will-it-work-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background-color: #5a9a8a;
    border: none;
    border-radius: 100px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(102, 88, 83, 0.4);
    white-space: nowrap;
}

.will-it-work-tag-1 {
    top: -10px;
    left: 10%;
}

.will-it-work-tag-2 {
    top: 15%;
    right: -5%;
}

.will-it-work-tag-3 {
    top: 45%;
    left: -8%;
}

.will-it-work-tag-4 {
    bottom: 20%;
    right: 5%;
}

.will-it-work-tag-5 {
    bottom: -10px;
    left: 20%;
}

.will-it-work-tag-6 {
    bottom: 40%;
    right: -10%;
}

/* How It Works Section */
.how-it-works {
    padding: 120px 50px;
    background-color: #fdfcfd;
}

.how-it-works > .section-title,
.how-it-works > .steps-grid {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-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;
    text-align: center;
    margin-bottom: 80px;
}

.orange-text {
    color: #ff6b35;
}

.gray-text {
    color: #a1a1a1;
}

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

.step-card {
    background-color: #f5f5f5;
    padding: 40px;
    display: flex;
    gap: 24px;
    position: relative;
}

.step-number {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ff6b35;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 20px;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.step-icon {
    margin-bottom: 8px;
}

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

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

/* Vetting Section */
.vetting {
    padding: 120px 50px;
    background-color: #fafafa;
}

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

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

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

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

.vetting-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #151515;
}

.vetting-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vetting-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.vetting-card-header {
    margin-bottom: 20px;
}

.vetting-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.vetting-status-checking {
    background-color: #fef3c7;
    color: #92400e;
}

.vetting-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vetting-question {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #151515;
    margin: 0;
}

.vetting-answer {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    color: #737373;
    margin: 0;
    padding-left: 20px;
}

.vetting-result {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px;
    border-radius: 8px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
}

.vetting-approved {
    background-color: #d1fae5;
    color: #065f46;
}

/* Pricing Section */
.pricing-section {
    padding: 120px 50px;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.pricing-toggle-label {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    color: #737373;
    transition: color 0.3s ease;
}

.pricing-toggle-label.pricing-toggle-active {
    color: #151515;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
}

.pricing-save-badge {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f0fdf4;
    color: #166534;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 8px;
}

.pricing-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 30px;
}

.pricing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e5e5e5;
    transition: 0.3s;
    border-radius: 30px;
}

.pricing-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-switch input:checked + .pricing-slider {
    background-color: #ff6b35;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #fafafa;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #e5e5e5;
}

.pricing-card-featured {
    background-color: #fafafa;
    border-color: #ff6b35;
}

.pricing-card-featured:hover {
    border-color: #ff6b35;
}

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

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

.price-amount {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #151515;
    line-height: 1;
}

.pricing-card-featured .price-amount {
    color: #ff6b35;
}

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

.pricing-trial {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #ff6b35;
    margin: 0;
    min-height: 24px;
    font-weight: 500;
}

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

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

.pricing-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: #151515;
    text-decoration: none;
    border: 1px solid #151515;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-top: auto;
}

.pricing-button:hover {
    background-color: #151515;
    color: #ffffff;
}

.pricing-button-featured {
    background-color: #ff6b35;
    color: #ffffff;
    border-color: #ff6b35;
}

.pricing-button-featured:hover {
    background-color: #e55a25;
    border-color: #e55a25;
}

/* CTA Section */
.cta-section {
    padding: 120px 50px;
    background-color: #ffffff;
}

.cta-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.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: 0;
}

.cta-description {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    color: #737373;
    margin: 0 0 16px 0;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 28px;
    background-color: #ff6b35;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: none;
}

.cta-button-large:hover {
    background-color: #e55a25;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

/* What Is CTA Row */
.what-is-cta-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.listen-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    background-color: #151515;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.listen-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 21, 21, 0.2);
}

.listen-btn.playing {
    background-color: #1a1a1a;
}

.listen-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ff6b35;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.listen-btn:hover .listen-btn-icon {
    transform: scale(1.05);
}

.listen-btn.playing .listen-btn-icon {
    animation: pulse-icon 1.5s ease-in-out infinite;
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.listen-btn-icon .play-icon {
    margin-left: 2px;
}

.listen-btn-icon .pause-icon {
    margin-left: 0;
}

.listen-btn-text {
    white-space: nowrap;
    transition: opacity 0.2s ease;
}

/* Sound wave animation */
.listen-btn-waves {
    display: none;
    align-items: center;
    gap: 3px;
    margin-left: 8px;
}

.listen-btn.playing .listen-btn-waves {
    display: flex;
}

.listen-btn-waves .wave {
    width: 3px;
    height: 12px;
    background-color: #ff6b35;
    border-radius: 2px;
    animation: wave-animation 1s ease-in-out infinite;
}

.listen-btn-waves .wave:nth-child(1) {
    animation-delay: 0s;
    height: 8px;
}

.listen-btn-waves .wave:nth-child(2) {
    animation-delay: 0.2s;
    height: 14px;
}

.listen-btn-waves .wave:nth-child(3) {
    animation-delay: 0.4s;
    height: 10px;
}

@keyframes wave-animation {
    0%, 100% { transform: scaleY(0.5); }
    50% { transform: scaleY(1); }
}

/* Listen button outline variant - orange with white icon */
.listen-btn-outline {
    background-color: transparent;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    height: 48px;
    padding: 0 24px;
    font-size: 1rem;
}

.listen-btn-outline:hover {
    background-color: #ff6b35;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.listen-btn-outline:hover .listen-btn-icon {
    background-color: #ffffff;
}

.listen-btn-outline:hover .listen-btn-icon svg {
    fill: #ff6b35;
}

.listen-btn-outline .listen-btn-icon {
    background-color: #ff6b35;
}

.listen-btn-outline .listen-btn-icon svg {
    fill: #ffffff;
}

.listen-btn-outline.playing {
    background-color: #ff6b35;
    color: #ffffff;
}

.listen-btn-outline.playing .listen-btn-icon {
    background-color: #ffffff;
}

.listen-btn-outline.playing .listen-btn-icon svg {
    fill: #ff6b35;
}

.listen-btn-outline .listen-btn-waves .wave {
    background-color: #ffffff;
}

/* Value prop CTA row */
.value-prop-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Features Section */
.features-section {
    padding: 120px 50px;
    background-color: #fafafa;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #737373;
    text-align: center;
    margin: -40px auto 60px;
    max-width: 700px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    background-color: #ffffff;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
}

.feature-icon {
    margin-bottom: 8px;
}

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

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

/* Blog Section */
.blog-section {
    padding: 120px 50px;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background-color: #fafafa;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-card-category {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #151515;
    line-height: 1.4;
    margin: 0;
}

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

.blog-cta {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    color: #151515;
    text-decoration: none;
    border: 1px solid #151515;
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    transition: all 0.2s ease;
}

.blog-view-all:hover {
    background-color: #151515;
    color: #ffffff;
}

/* Blog Page */
.blog-page-hero {
    padding: 120px 50px 60px;
    background-color: #fdfcfd;
    text-align: center;
}

.blog-page-container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-page-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 400;
    color: #151515;
    margin: 0 0 16px 0;
}

.blog-page-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #737373;
    margin: 0;
}

.blog-page-content {
    padding: 60px 50px 120px;
    background-color: #ffffff;
}

/* Legal Pages (Privacy Policy, Terms of Service) */
.legal-page {
    padding: 120px 50px 80px;
    background-color: #fdfcfd;
}

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

.legal-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 400;
    color: #151515;
    margin-bottom: 8px;
}

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

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

.legal-content h2 {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: #151515;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #151515;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
}

@media (max-width: 809px) {
    .legal-page {
        padding: 80px 24px 60px;
    }

    .legal-title {
        font-size: 28px;
    }

    .legal-updated {
        margin-bottom: 32px;
    }

    .legal-content h2 {
        font-size: 18px;
        margin-top: 32px;
    }
}

/* Audio Demo Section */
.audio-demo-section {
    padding: 120px 50px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

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

.audio-demo-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.audio-demo-content {
    margin-bottom: 48px;
}

.audio-demo-badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #fff7ed;
    color: #ff6b35;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audio-demo-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.audio-demo-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    color: #525252;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.audio-demo-player {
    display: flex;
    justify-content: center;
}

.audio-player-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 20px;
    padding: 40px 48px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
}

.audio-waveform {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    height: 60px;
    margin-bottom: 24px;
}

.waveform-bar {
    width: 4px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: height 0.1s ease, background-color 0.3s ease;
}

.audio-player-card.playing .waveform-bar {
    animation: waveform 0.5s ease-in-out infinite alternate;
    background-color: #ff6b35;
}

.waveform-bar:nth-child(1) { animation-delay: 0s; }
.waveform-bar:nth-child(2) { animation-delay: 0.1s; }
.waveform-bar:nth-child(3) { animation-delay: 0.2s; }
.waveform-bar:nth-child(4) { animation-delay: 0.3s; }
.waveform-bar:nth-child(5) { animation-delay: 0.4s; }
.waveform-bar:nth-child(6) { animation-delay: 0.5s; }
.waveform-bar:nth-child(7) { animation-delay: 0.6s; }
.waveform-bar:nth-child(8) { animation-delay: 0.7s; }
.waveform-bar:nth-child(9) { animation-delay: 0.6s; }
.waveform-bar:nth-child(10) { animation-delay: 0.5s; }
.waveform-bar:nth-child(11) { animation-delay: 0.4s; }
.waveform-bar:nth-child(12) { animation-delay: 0.3s; }
.waveform-bar:nth-child(13) { animation-delay: 0.2s; }
.waveform-bar:nth-child(14) { animation-delay: 0.1s; }
.waveform-bar:nth-child(15) { animation-delay: 0s; }

@keyframes waveform {
    0% { height: 15px; }
    100% { height: 50px; }
}

.audio-play-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #e85a2a 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.audio-play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 53, 0.5);
}

.audio-play-btn:active {
    transform: scale(0.98);
}

.audio-play-btn .play-icon {
    margin-left: 4px;
}

.audio-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

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

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

.audio-progress {
    width: 100%;
}

.audio-progress-bar {
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
}

.audio-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b35, #ff8a5c);
    border-radius: 3px;
    transition: width 0.1s linear;
}

/* FAQ Section */
.faq-section {
    padding: 100px 50px;
    background-color: #f5f5f4;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 16px 20px;
}

.faq-question {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 6px 0;
}

.faq-answer {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #737373;
    margin: 0;
}

/* Footer */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 80px 50px 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-text {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #ffffff;
}

.footer-tagline {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #a1a1a1;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-column-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.footer-link {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #ff6b35;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid #1a1a1a;
}

.footer-copyright {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #737373;
    margin: 0;
}

/* Exit Intent Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup {
    background: linear-gradient(135deg, #ffffff 0%, #fef7f4 100%);
    border-radius: 20px;
    padding: 48px;
    max-width: 480px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.exit-popup-overlay.active .exit-popup {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background-color: #f5f5f5;
    border-radius: 50%;
    font-size: 24px;
    color: #737373;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.exit-popup-close:hover {
    background-color: #e5e5e5;
    color: #151515;
}

.exit-popup-content {
    text-align: center;
}

.exit-popup-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: #ff6b35;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.exit-popup-title {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #151515;
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.exit-popup-subtitle {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    color: #525252;
    margin: 0 0 24px 0;
}

.exit-popup-offer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
    padding: 24px;
    background-color: #fff7ed;
    border: 2px dashed #ff6b35;
    border-radius: 12px;
}

.exit-popup-days {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 64px;
    font-weight: 400;
    color: #ff6b35;
    line-height: 1;
}

.exit-popup-days-label {
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 20px;
    color: #151515;
}

.exit-popup-note {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #737373;
    margin: 0 0 24px 0;
}

.exit-popup-cta {
    display: block;
    width: 100%;
    padding: 16px 32px;
    background-color: #ff6b35;
    color: #ffffff;
    font-family: "BR Sonoma Medium", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    margin-bottom: 16px;
}

.exit-popup-cta:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.exit-popup-skip {
    font-family: "BR Sonoma Regular", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: #a3a3a3;
    margin: 0;
    cursor: pointer;
    transition: color 0.2s ease;
}

.exit-popup-skip:hover {
    color: #737373;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 809px) {
    .header {
        padding: 12px 24px;
    }

    .header-container {
        padding: 0;
    }

    .header-logo {
        gap: 8px;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .logo-text {
        font-size: 16px;
    }

    .header-nav {
        display: none;
    }

    .header-cta {
        padding: 8px 14px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero {
        padding: 80px 24px 60px;
        min-height: auto;
    }

    .hero-eyebrow {
        display: none;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-flow {
        max-width: 100%;
    }

    .hero-flow-arrow {
        padding: 6px 0;
    }

    .hero-flow-arrow svg {
        width: 20px;
        height: 20px;
    }

    .hero-step-card {
        padding: 16px 20px;
        gap: 12px;
    }

    .hero-step-icon {
        width: 40px;
        height: 40px;
    }

    .hero-step-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-step-title {
        font-size: 15px;
    }

    .hero-step-desc {
        font-size: 13px;
    }

    .hero-features {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }

    .hero-feature-icon {
        width: 48px;
        height: 48px;
    }

    .hero-feature-label {
        font-size: 13px;
    }

    .phone-mockup {
        max-width: 100%;
    }

    .call-notification {
        padding: 24px;
    }

    .caller-name {
        font-size: 24px;
    }

    .problem-section {
        padding: 80px 24px;
    }

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

    .problem-content {
        order: -1;
    }

    .calculator-box {
        padding: 32px 24px;
    }

    .result-value {
        font-size: 42px;
    }

    .problem-stat-number {
        font-size: 28px;
    }

    .how-it-works {
        padding: 80px 24px;
    }

    .section-title {
        margin-bottom: 48px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-card {
        padding: 32px 24px;
    }

    .value-prop {
        padding: 80px 24px;
    }

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

    .value-prop-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .social-proof {
        padding: 40px 24px;
    }

    .social-proof-bottom {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .what-is-ringassist {
        padding: 80px 24px;
    }

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

    .what-is-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .what-is-not {
        display: none;
    }

    .example-two-columns {
        grid-template-columns: 1fr;
    }

    .example-two-columns .example-detail-section:last-child {
        order: -1;
    }

    .example-two-columns .example-detail-section:first-child {
        display: none;
    }

    .example-map {
        height: 150px;
    }

    .example-action-buttons {
        flex-direction: column;
    }

    .example-action-btn {
        width: 100%;
        justify-content: center;
    }

    .will-it-work {
        padding: 80px 24px;
    }

    .will-it-work-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .will-it-work-tag {
        padding: 6px 12px;
        font-size: 12px;
    }

    .will-it-work-tag-2 {
        right: -2%;
    }

    .will-it-work-tag-3 {
        left: -4%;
    }

    .will-it-work-tag-6 {
        right: -4%;
    }

    .vetting {
        padding: 80px 24px;
    }

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

    .pricing-section {
        padding: 80px 24px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-section {
        padding: 80px 24px;
    }

    .features-section {
        padding: 80px 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .blog-section {
        padding: 80px 24px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-page-hero {
        padding: 80px 24px 40px;
    }

    .blog-page-content {
        padding: 40px 24px 80px;
    }

    .faq-section {
        padding: 60px 24px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-item {
        padding: 14px 16px;
    }

    .faq-question {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .faq-answer {
        font-size: 13px;
    }

    /* Social proof mobile */
    .social-proof {
        padding: 40px 24px;
    }

    .social-proof-container {
        gap: 32px;
    }

    .social-proof-stats-bar {
        gap: 16px;
    }

    .stat-inline {
        font-size: 13px;
    }

    .stat-inline strong {
        font-size: 14px;
    }

    .stat-divider {
        height: 16px;
    }

    .testimonials-carousel {
        min-height: auto;
    }

    .testimonial-card {
        padding: 24px;
    }

    .testimonial-text {
        font-size: 16px;
    }

    .testimonial-avatar {
        width: 48px;
        height: 48px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-role {
        font-size: 13px;
    }

    /* Audio demo mobile */
    .audio-demo-section {
        padding: 80px 24px;
    }

    .audio-demo-title {
        font-size: 28px;
    }

    .audio-demo-subtitle {
        font-size: 16px;
    }

    .audio-player-card {
        padding: 24px;
        border-radius: 16px;
    }

    .audio-waveform {
        gap: 3px;
        height: 50px;
        margin-bottom: 20px;
    }

    .waveform-bar {
        width: 3px;
    }

    .audio-play-btn {
        width: 64px;
        height: 64px;
    }

    .audio-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .exit-popup {
        padding: 32px 24px;
        margin: 16px;
    }

    .exit-popup-title {
        font-size: 26px;
    }

    .exit-popup-days {
        font-size: 48px;
    }

    .exit-popup-cta {
        font-size: 16px;
        padding: 14px 24px;
    }

    .footer {
        padding: 60px 24px 32px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}
