/* ========================================
   BUDGETING & FORECASTING PAGE STYLES
   Color Theme: Orange (#FF6B35, #E93C05) & White
   ======================================== */

/* CSS Custom Properties */
:root {
    --bf-primary: #FF6B35;
    --bf-secondary: #E93C05;
    --bf-light: #FFF4F0;
    --bf-dark: #1a1a1a;
    --bf-gray: #6c757d;
}

/* ========================================
   KEYFRAME ANIMATIONS (7 Total)
   ======================================== */

/* Animation 1: Budget Slide - Horizontal sliding for bars */
@keyframes budgetSlide {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation 2: Forecast Grow - Chart growing animation */
@keyframes forecastGrow {
    0% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
}

/* Animation 3: Data Flicker - Flickering data points */
@keyframes dataFlicker {
    0%, 100% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Animation 4: Trend Rise - Rising trend line */
@keyframes trendRise {
    0% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: rotate(-15deg) translateY(-15px);
        opacity: 1;
    }
    100% {
        transform: rotate(-30deg) translateY(-30px);
        opacity: 0.6;
    }
}

/* Animation 5: Zoom Fade - Zoom in with fade */
@keyframes zoomFade {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation 6: Chart Pulse - Pulsing chart effect */
@keyframes chartPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 107, 53, 0);
        transform: scale(1.05);
    }
}

/* Animation 7: Number Count - Counting number animation */
@keyframes numberCount {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.bf-hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
}

.bf-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bf-hero-content {
    position: relative;
    z-index: 1;
}

.bf-hero-pill {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: zoomFade 0.8s ease;
}

.bf-hero-pill:hover {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.bf-hero-title {
    color: white;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: zoomFade 1s ease 0.2s backwards;
}

.bf-hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.15rem;
    line-height: 1.8;
    animation: zoomFade 1s ease 0.4s backwards;
}

.bf-hero-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: zoomFade 1s ease 0.6s backwards;
}

.bf-hero-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bf-hero-btn:hover::before {
    width: 400px;
    height: 400px;
}

.bf-hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.bf-hero-image {
    animation: zoomFade 1.2s ease 0.4s backwards;
}

.bf-hero-image-inner {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 3px dashed rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bf-hero-image-inner:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.bf-hero-image-inner i {
    font-size: 80px;
    color: white;
    opacity: 0.7;
    transition: all 0.4s ease;
}

.bf-hero-image-inner:hover i {
    opacity: 1;
    transform: scale(1.15);
    animation: chartPulse 2s ease-in-out infinite;
}

.bf-hero-image-inner h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.bf-hero-image-inner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   CSS ART: BUDGET BARS
   ======================================== */

.bf-budget-bar {
    position: absolute;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}

.bf-bar-1 {
    top: 20%;
    right: 5%;
    width: 60px;
    animation: budgetSlide 1.5s ease, forecastGrow 2s ease infinite;
}

.bf-bar-2 {
    top: 25%;
    right: 8%;
    width: 50px;
    height: 100px;
    animation: budgetSlide 1.7s ease 0.2s backwards, forecastGrow 2.3s ease infinite;
}

.bf-bar-3 {
    top: 30%;
    right: 11%;
    width: 45px;
    height: 70px;
    animation: budgetSlide 1.9s ease 0.4s backwards, forecastGrow 2.6s ease infinite;
}

/* ========================================
   CSS ART: FORECAST ARROW
   ======================================== */

.bf-forecast-arrow {
    position: absolute;
    bottom: 15%;
    left: 8%;
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
    z-index: 0;
    animation: trendRise 4s ease-in-out infinite;
}

.bf-forecast-arrow::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 15px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

/* ========================================
   CSS ART: FLOATING CHART DOTS
   ======================================== */

.bf-chart-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    pointer-events: none;
    z-index: 0;
}

.bf-dot-1 {
    top: 30%;
    left: 15%;
    animation: dataFlicker 2.5s ease-in-out infinite;
}

.bf-dot-2 {
    top: 50%;
    left: 85%;
    width: 16px;
    height: 16px;
    animation: dataFlicker 3s ease-in-out infinite 0.5s;
}

.bf-dot-3 {
    bottom: 25%;
    right: 20%;
    width: 12px;
    height: 12px;
    animation: dataFlicker 2.8s ease-in-out infinite 1s;
}

/* ========================================
   SECTION BADGES
   ======================================== */

.bf-section-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    color: var(--bf-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.bf-section-badge:hover {
    transform: scale(1.05);
    border-color: var(--bf-primary);
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.15) 0%,
        rgba(233, 60, 5, 0.15) 100%);
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

.bf-image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    animation: zoomFade 1s ease;
}

.bf-image-placeholder.bf-image-horizontal {
    max-width: 100%;
    margin: 30px 0;
}

.bf-image-content {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border: 3px dashed rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    aspect-ratio: 4 / 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.bf-image-horizontal .bf-image-content {
    aspect-ratio: 3 / 1;
}

.bf-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.15),
        transparent);
    transition: left 0.8s ease;
}

.bf-image-placeholder:hover .bf-image-content::before {
    left: 100%;
}

.bf-image-placeholder:hover .bf-image-content {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
    animation: chartPulse 2s ease-in-out infinite;
}

.bf-image-content i {
    font-size: 70px;
    color: var(--bf-primary);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.bf-image-placeholder:hover .bf-image-content i {
    opacity: 1;
    transform: scale(1.15);
}

.bf-image-content h5 {
    color: var(--bf-dark);
    font-weight: 600;
    margin: 0;
    font-size: 18px;
}

.bf-image-content p {
    color: var(--bf-gray);
    font-size: 14px;
    margin: 0;
}

/* ========================================
   CHECKLIST
   ======================================== */

.bf-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.bf-checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bf-checklist-item:hover {
    background: var(--bf-light);
    border-color: var(--bf-primary);
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.bf-checklist-item i {
    font-size: 24px;
    color: var(--bf-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bf-checklist-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.bf-checklist-item span {
    font-size: 16px;
    color: var(--bf-dark);
    font-weight: 500;
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */

.bf-highlight-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    border-radius: 15px;
    border-left: 5px solid var(--bf-primary);
    transition: all 0.3s ease;
}

.bf-highlight-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.bf-highlight-box i {
    font-size: 30px;
    color: var(--bf-primary);
    flex-shrink: 0;
}

.bf-highlight-box p {
    color: var(--bf-dark);
    font-size: 16px;
}

/* ========================================
   WHY SECTION
   ======================================== */

.bf-why-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.bf-why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.bf-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bf-why-card:hover::before {
    transform: scaleX(1);
}

.bf-why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
}

.bf-why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bf-why-card:hover .bf-why-icon {
    background: var(--bf-primary);
    transform: rotate(360deg) scale(1.1);
    animation: chartPulse 1.5s ease-in-out infinite;
}

.bf-why-icon i {
    font-size: 36px;
    color: var(--bf-primary);
    transition: all 0.4s ease;
}

.bf-why-card:hover .bf-why-icon i {
    color: white;
    transform: scale(1.1);
}

.bf-why-card h5 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 15px;
}

.bf-why-card p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   WHO NEEDS SECTION
   ======================================== */

.bf-who-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
}

.bf-who-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    color: var(--bf-primary);
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    transition: all 0.4s ease;
    animation: numberCount 0.8s ease;
}

.bf-who-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
}

.bf-who-card:hover .bf-who-number {
    background: var(--bf-primary);
    color: white;
    transform: scale(1.15) rotate(5deg);
}

.bf-who-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bf-who-card:hover .bf-who-icon {
    background: var(--bf-primary);
}

.bf-who-icon i {
    font-size: 36px;
    color: var(--bf-primary);
    transition: all 0.4s ease;
}

.bf-who-card:hover .bf-who-icon i {
    color: white;
    transform: scale(1.1);
}

.bf-who-card h5 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 15px;
}

.bf-who-card p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   TYPES SECTION
   ======================================== */

.bf-types-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.bf-type-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
}

.bf-type-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.05) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    transition: top 0.4s ease;
}

.bf-type-card:hover::before {
    top: 0;
}

.bf-type-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
}

.bf-type-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    color: white;
    font-size: 28px;
    font-weight: 700;
    border-radius: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    animation: numberCount 0.8s ease;
}

.bf-type-card:hover .bf-type-number {
    transform: rotate(15deg) scale(1.1);
}

.bf-type-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.bf-type-card:hover .bf-type-icon {
    transform: rotate(360deg);
    background: var(--bf-primary);
}

.bf-type-icon i {
    font-size: 32px;
    color: var(--bf-primary);
    transition: all 0.4s ease;
}

.bf-type-card:hover .bf-type-icon i {
    color: white;
}

.bf-type-card h5 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.bf-type-card p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.bf-type-card-highlight {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(233, 60, 5, 0.08) 100%);
    border-color: var(--bf-primary);
}

/* ========================================
   APPROACH SECTION
   ======================================== */

.bf-approach-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    position: relative;
}

.bf-approach-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    border: 4px solid white;
    transition: all 0.4s ease;
    animation: numberCount 0.8s ease;
}

.bf-approach-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
}

.bf-approach-card:hover .bf-approach-number {
    transform: translateX(-50%) scale(1.2) rotate(360deg);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.bf-approach-icon {
    width: 80px;
    height: 80px;
    margin: 30px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bf-approach-card:hover .bf-approach-icon {
    background: var(--bf-primary);
    transform: scale(1.1);
}

.bf-approach-icon i {
    font-size: 36px;
    color: var(--bf-primary);
    transition: all 0.4s ease;
}

.bf-approach-card:hover .bf-approach-icon i {
    color: white;
}

.bf-approach-card h5 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 15px;
}

.bf-approach-card p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.bf-benefits-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.bf-benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.bf-benefit-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--bf-primary);
    animation: chartPulse 2s ease-in-out infinite;
}

.bf-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bf-benefit-card:hover .bf-benefit-icon {
    transform: scale(1.15);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.bf-benefit-icon i {
    font-size: 36px;
    color: white;
    transition: all 0.4s ease;
}

.bf-benefit-card h5 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 15px;
}

.bf-benefit-card p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.bf-problems-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bf-problem-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.bf-problem-item:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--bf-primary);
}

.bf-problem-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(233, 60, 5, 0.1) 0%,
        rgba(255, 107, 53, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.bf-problem-item:hover .bf-problem-icon {
    background: rgba(233, 60, 5, 0.15);
    transform: scale(1.2);
}

.bf-problem-icon i {
    font-size: 24px;
    color: var(--bf-secondary);
    transition: all 0.3s ease;
}

.bf-problem-item:hover .bf-problem-icon i {
    transform: rotate(360deg);
}

.bf-problem-content h6 {
    font-weight: 600;
    color: var(--bf-dark);
    margin-bottom: 8px;
}

.bf-problem-content p {
    color: var(--bf-gray);
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.bf-faq-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.bf-accordion-item {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.bf-accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--bf-primary);
}

.bf-accordion-button {
    background: white;
    color: var(--bf-dark);
    font-weight: 600;
    font-size: 16px;
    padding: 25px 30px;
    border: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.bf-accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(233, 60, 5, 0.08) 100%);
    color: var(--bf-primary);
}

.bf-accordion-button:focus {
    box-shadow: none;
    border: none;
}

.bf-accordion-button i {
    color: var(--bf-primary);
    transition: all 0.3s ease;
}

.bf-accordion-button:not(.collapsed) i {
    transform: scale(1.2);
}

.bf-accordion-body {
    padding: 25px 30px;
    color: var(--bf-gray);
    line-height: 1.8;
    background: white;
}

/* ========================================
   CTA SECTION
   ======================================== */

.bf-cta-card {
    background: linear-gradient(135deg,
        var(--bf-primary) 0%,
        var(--bf-secondary) 100%);
    border-radius: 30px;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.bf-cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
    animation: chartPulse 4s ease-in-out infinite;
}

.bf-cta-blob-1 {
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.3);
    top: -200px;
    right: -100px;
}

.bf-cta-blob-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.2);
    bottom: -150px;
    left: -50px;
    animation-delay: 1s;
}

.bf-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.bf-cta-icon:hover {
    transform: scale(1.1) rotate(360deg);
    background: rgba(255, 255, 255, 0.3);
}

.bf-cta-icon i {
    font-size: 48px;
    color: white;
}

.bf-cta-card h2 {
    font-weight: 700;
}

.bf-cta-card .btn-light:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bf-cta-card .btn-outline-light {
    border-color: white;
    color: white;
}

.bf-cta-card .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px) scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .bf-hero-section {
        padding: 150px 0 80px;
    }

    .bf-hero-title {
        font-size: 2.5rem;
    }

    .bf-budget-bar,
    .bf-forecast-arrow {
        display: none;
    }

    .bf-chart-dot {
        width: 15px;
        height: 15px;
    }

    .bf-why-icon,
    .bf-who-icon,
    .bf-benefit-icon,
    .bf-approach-icon {
        width: 70px;
        height: 70px;
    }

    .bf-why-icon i,
    .bf-who-icon i,
    .bf-benefit-icon i,
    .bf-approach-icon i {
        font-size: 30px;
    }

    .bf-type-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .bf-type-icon {
        width: 60px;
        height: 60px;
    }

    .bf-type-icon i {
        font-size: 28px;
    }

    .bf-cta-card {
        padding: 60px 40px;
    }

    .bf-cta-blob-1 {
        width: 300px;
        height: 300px;
    }

    .bf-cta-blob-2 {
        width: 250px;
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bf-hero-section {
        padding: 130px 0 60px;
    }

    .bf-hero-title {
        font-size: 2rem;
    }

    .bf-hero-subtitle {
        font-size: 1rem;
    }

    .bf-hero-pill {
        font-size: 12px;
        padding: 10px 20px;
    }

    .bf-hero-image-inner {
        padding: 40px 20px;
    }

    .bf-hero-image-inner i {
        font-size: 60px;
    }

    .bf-chart-dot {
        display: none;
    }

    .bf-why-card,
    .bf-who-card,
    .bf-type-card,
    .bf-approach-card,
    .bf-benefit-card {
        padding: 30px 20px;
    }

    .bf-why-icon,
    .bf-who-icon,
    .bf-benefit-icon,
    .bf-approach-icon {
        width: 60px;
        height: 60px;
    }

    .bf-why-icon i,
    .bf-who-icon i,
    .bf-benefit-icon i,
    .bf-approach-icon i {
        font-size: 26px;
    }

    .bf-type-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .bf-type-icon {
        width: 55px;
        height: 55px;
    }

    .bf-type-icon i {
        font-size: 24px;
    }

    .bf-who-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: 15px;
        right: 15px;
    }

    .bf-approach-number {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .bf-problem-item {
        padding: 20px;
    }

    .bf-problem-icon {
        width: 45px;
        height: 45px;
    }

    .bf-problem-icon i {
        font-size: 20px;
    }

    .bf-cta-card {
        padding: 50px 25px;
    }

    .bf-cta-card h2 {
        font-size: 1.5rem;
    }

    .bf-cta-icon {
        width: 80px;
        height: 80px;
    }

    .bf-cta-icon i {
        font-size: 36px;
    }

    .bf-accordion-button {
        padding: 20px;
        font-size: 15px;
    }

    .bf-accordion-body {
        padding: 20px;
        font-size: 14px;
    }

    .bf-image-content {
        padding: 40px 20px;
    }

    .bf-image-content i {
        font-size: 50px;
    }

    .bf-image-content h5 {
        font-size: 16px;
    }

    .bf-image-content p {
        font-size: 13px;
    }
}
