/* ========================================
   CASH FLOW MANAGEMENT PAGE STYLES
   Orange-White Theme with Cash Flow Animations
   ======================================== */

/* CSS Variables */
:root {
    --cfm-primary: #FF6B35;
    --cfm-secondary: #E93C05;
    --cfm-light: #FFF4F0;
    --cfm-dark: #2C3E50;
    --cfm-gray: #6C757D;
}

/* ========================================
   KEYFRAME ANIMATIONS (7 Animations)
   ======================================== */

/* Animation 1: Flow Stream - Horizontal flowing for money symbols */
@keyframes flowStream {
    0% {
        transform: translateX(-100%) translateY(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(100vw) translateY(20px);
        opacity: 0;
    }
}

/* Animation 2: Liquidity Ripple - Expanding wave circles */
@keyframes liquidityRipple {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Animation 3: Coin Spin - Rotating coin effect */
@keyframes coinSpin {
    0% {
        transform: rotateY(0deg) translateY(0);
    }
    50% {
        transform: rotateY(180deg) translateY(-15px);
    }
    100% {
        transform: rotateY(360deg) translateY(0);
    }
}

/* Animation 4: Cash Pulse - Pulsing glow for interactive elements */
@keyframes cashPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(255, 107, 53, 0);
        transform: scale(1.08);
    }
}

/* Animation 5: Wave Motion - Undulating wave animation */
@keyframes waveMotion {
    0% {
        transform: translateX(0) scaleX(1);
    }
    50% {
        transform: translateX(-10%) scaleX(1.1);
    }
    100% {
        transform: translateX(0) scaleX(1);
    }
}

/* Animation 6: Slide Reveal - Sliding reveal from side */
@keyframes slideReveal {
    0% {
        transform: translateX(-50px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Animation 7: Drop Fade - Falling with fade effect */
@keyframes dropFade {
    0% {
        transform: translateY(-30px) rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(5deg);
        opacity: 1;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.cfm-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.95) 0%,
        rgba(233, 60, 5, 0.85) 50%,
        rgba(255, 107, 53, 0.9) 100%);
    overflow: hidden;
}

.cfm-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.cfm-hero-content {
    position: relative;
    z-index: 1;
}

.cfm-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: dropFade 0.8s ease forwards;
}

.cfm-hero-pill:hover {
    transform: scale(1.05) translateY(-3px);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

.cfm-hero-title {
    color: white;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideReveal 0.8s ease 0.2s backwards;
}

.cfm-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideReveal 0.8s ease 0.4s backwards;
}

.cfm-hero-image {
    position: relative;
    animation: coinSpin 3s ease-in-out 0.6s backwards;
}

.cfm-hero-image-inner {
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 3px dashed rgba(255, 255, 255, 0.4);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-hero-image:hover .cfm-hero-image-inner {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
    border-color: white;
    background: rgba(255, 255, 255, 0.25);
}

.cfm-hero-image-inner i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.cfm-hero-image:hover .cfm-hero-image-inner i {
    transform: scale(1.2) translateY(-10px);
    opacity: 1;
    animation: cashPulse 1.5s ease-in-out infinite;
}

.cfm-hero-image-inner h5 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.cfm-hero-image-inner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========================================
   CSS ART: FLOWING MONEY SYMBOLS
   ======================================== */

.cfm-money-symbol {
    position: absolute;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 0;
}

.cfm-symbol-1 {
    top: 20%;
    left: -10%;
    animation: flowStream 15s linear infinite;
}

.cfm-symbol-2 {
    top: 50%;
    left: -10%;
    font-size: 90px;
    animation: flowStream 18s linear infinite 5s;
}

.cfm-symbol-3 {
    top: 70%;
    left: -10%;
    font-size: 110px;
    animation: flowStream 20s linear infinite 10s;
}

/* ========================================
   CSS ART: LIQUIDITY WAVES
   ======================================== */

.cfm-liquidity-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50% 50% 0 0;
    pointer-events: none;
    z-index: 0;
}

.cfm-wave-1 {
    animation: waveMotion 8s ease-in-out infinite;
}

.cfm-wave-2 {
    height: 150px;
    opacity: 0.6;
    animation: waveMotion 6s ease-in-out infinite reverse;
}

/* ========================================
   CSS ART: CIRCULAR FLOW ARROWS
   ======================================== */

.cfm-flow-circle {
    position: absolute;
    top: 15%;
    right: 10%;
    width: 180px;
    height: 180px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: coinSpin 20s linear infinite;
}

.cfm-circle-arrow {
    position: absolute;
    width: 40px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
}

.cfm-arrow-1 {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.cfm-arrow-1::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 12px solid rgba(255, 255, 255, 0.3);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.cfm-arrow-2 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
}

.cfm-arrow-2::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 12px solid rgba(255, 255, 255, 0.3);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.cfm-arrow-3 {
    bottom: -20px;
    right: 50%;
    transform: translateX(50%) rotate(270deg);
}

.cfm-arrow-3::after {
    content: '';
    position: absolute;
    right: -10px;
    top: -6px;
    width: 0;
    height: 0;
    border-left: 12px solid rgba(255, 255, 255, 0.3);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* ========================================
   CSS ART: FLOATING COINS
   ======================================== */

.cfm-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 215, 0, 0.3),
        rgba(255, 165, 0, 0.2));
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cfm-coin::before {
    content: '$';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
}

.cfm-coin-1 {
    top: 10%;
    right: 20%;
    animation: coinSpin 6s ease-in-out infinite;
}

.cfm-coin-2 {
    top: 40%;
    right: 5%;
    width: 50px;
    height: 50px;
    animation: coinSpin 8s ease-in-out infinite 2s;
}

.cfm-coin-3 {
    bottom: 15%;
    left: 15%;
    width: 70px;
    height: 70px;
    animation: coinSpin 7s ease-in-out infinite 4s;
}

/* ========================================
   BUTTONS
   ======================================== */

.cfm-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 38px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.cfm-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cfm-btn-primary {
    background: white;
    color: var(--cfm-primary);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cfm-btn-primary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--cfm-secondary);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4);
}

.cfm-btn-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cfm-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

/* ========================================
   SECTION BADGES
   ======================================== */

.cfm-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--cfm-primary);
    transition: all 0.3s ease;
}

.cfm-section-badge:hover {
    background: rgba(255, 107, 53, 0.15);
    border-color: var(--cfm-primary);
    transform: translateY(-3px);
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

.cfm-image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: dropFade 0.8s ease forwards;
}

.cfm-image-placeholder.cfm-image-horizontal {
    max-width: 100%;
    margin: 30px 0;
}

.cfm-image-content {
    padding: 50px 30px;
    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.3);
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-image-horizontal .cfm-image-content {
    padding: 40px 20px;
}

.cfm-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;
}

.cfm-image-placeholder:hover .cfm-image-content::before {
    left: 100%;
}

.cfm-image-placeholder:hover .cfm-image-content {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--cfm-primary);
    animation: cashPulse 2s ease-in-out infinite;
}

.cfm-image-content i {
    font-size: 65px;
    color: var(--cfm-primary);
    opacity: 0.7;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.cfm-image-placeholder:hover .cfm-image-content i {
    opacity: 1;
    transform: scale(1.15);
}

.cfm-image-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 12px;
}

.cfm-image-content p {
    font-size: 0.95rem;
    color: var(--cfm-gray);
    line-height: 1.6;
}

/* ========================================
   CHECKLIST
   ======================================== */

.cfm-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cfm-check-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: slideReveal 0.6s ease forwards;
}

.cfm-check-item:nth-child(1) { animation-delay: 0.1s; }
.cfm-check-item:nth-child(2) { animation-delay: 0.2s; }
.cfm-check-item:nth-child(3) { animation-delay: 0.3s; }
.cfm-check-item:nth-child(4) { animation-delay: 0.4s; }
.cfm-check-item:nth-child(5) { animation-delay: 0.5s; }

.cfm-check-item:hover {
    background: var(--cfm-light);
    border-color: var(--cfm-primary);
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.cfm-check-item i {
    font-size: 26px;
    color: var(--cfm-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.cfm-check-item:hover i {
    transform: scale(1.3) rotate(360deg);
}

.cfm-check-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--cfm-dark);
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */

.cfm-highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.08) 100%);
    border-left: 5px solid var(--cfm-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.cfm-highlight-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.cfm-highlight-box i {
    font-size: 32px;
    color: var(--cfm-primary);
    flex-shrink: 0;
}

.cfm-highlight-box p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--cfm-dark);
    line-height: 1.7;
}

/* ========================================
   WHY SECTION
   ======================================== */

.cfm-why-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 50%,
        rgba(255, 107, 53, 0.03) 100%);
}

.cfm-why-card {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.05) 0%,
        transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cfm-why-card:hover::before {
    opacity: 1;
}

.cfm-why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--cfm-primary);
}

.cfm-why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-why-card:hover .cfm-why-icon {
    background: var(--cfm-primary);
    transform: rotate(360deg) scale(1.1);
    animation: cashPulse 1.5s ease-in-out infinite;
}

.cfm-why-icon i {
    font-size: 40px;
    color: var(--cfm-primary);
    transition: all 0.4s ease;
}

.cfm-why-card:hover .cfm-why-icon i {
    color: white;
    transform: scale(1.15);
}

.cfm-why-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 15px;
}

.cfm-why-card p {
    font-size: 1rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   WHO NEEDS CARDS
   ======================================== */

.cfm-who-card {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-who-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
        rgba(255, 107, 53, 0.08) 0%,
        transparent 70%);
    opacity: 0;
    transition: all 0.6s ease;
}

.cfm-who-card:hover::before {
    opacity: 1;
    top: -30%;
    right: -30%;
}

.cfm-who-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.18);
    border-color: var(--cfm-primary);
}

.cfm-who-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.3);
    border: 3px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-who-card:hover .cfm-who-number {
    background: var(--cfm-primary);
    color: white;
    border-color: var(--cfm-primary);
    transform: scale(1.2) rotate(10deg);
}

.cfm-who-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cfm-who-card:hover .cfm-who-icon {
    transform: scale(1.15) rotate(360deg);
}

.cfm-who-icon i {
    font-size: 38px;
    color: var(--cfm-primary);
}

.cfm-who-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 15px;
}

.cfm-who-card p {
    font-size: 0.98rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   KEY AREAS SECTION
   ======================================== */

.cfm-areas-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.02) 0%,
        rgba(233, 60, 5, 0.04) 100%);
}

.cfm-area-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 107, 53, 0.05),
        transparent);
    transition: left 0.6s ease;
}

.cfm-area-card:hover::before {
    left: 100%;
}

.cfm-area-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--cfm-primary);
}

.cfm-area-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--cfm-primary);
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-area-card:hover .cfm-area-number {
    background: var(--cfm-primary);
    color: white;
    transform: scale(1.15) rotate(10deg);
}

.cfm-area-content {
    flex: 1;
}

.cfm-area-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 12px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.cfm-area-card:hover .cfm-area-icon {
    background: rgba(255, 107, 53, 0.15);
    transform: scale(1.1);
}

.cfm-area-icon i {
    font-size: 28px;
    color: var(--cfm-primary);
}

.cfm-area-content h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 12px;
}

.cfm-area-content p {
    font-size: 0.98rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   STEP CARDS (APPROACH SECTION)
   ======================================== */

.cfm-step-card {
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.cfm-step-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top,
        rgba(255, 107, 53, 0.05) 0%,
        transparent 100%);
    transition: height 0.4s ease;
}

.cfm-step-card:hover::before {
    height: 100%;
}

.cfm-step-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--cfm-primary);
}

.cfm-step-number {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 107, 53, 0.3);
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-step-card:hover .cfm-step-number {
    background: var(--cfm-primary);
    color: white;
    border-color: var(--cfm-primary);
    transform: scale(1.2) rotate(360deg);
    animation: cashPulse 1.5s ease-in-out infinite;
}

.cfm-step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cfm-step-card:hover .cfm-step-icon {
    background: rgba(255, 107, 53, 0.15);
    transform: scale(1.15);
}

.cfm-step-icon i {
    font-size: 36px;
    color: var(--cfm-primary);
}

.cfm-step-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 15px;
}

.cfm-step-card p {
    font-size: 0.98rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.cfm-benefits-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.04) 0%,
        rgba(233, 60, 5, 0.06) 50%,
        rgba(255, 107, 53, 0.04) 100%);
}

.cfm-benefit-card {
    padding: 35px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.18);
    border-color: var(--cfm-primary);
}

.cfm-benefit-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cfm-benefit-card:hover .cfm-benefit-icon {
    background: var(--cfm-primary);
    transform: scale(1.15) rotate(360deg);
    animation: cashPulse 1.5s ease-in-out infinite;
}

.cfm-benefit-icon i {
    font-size: 38px;
    color: var(--cfm-primary);
    transition: all 0.3s ease;
}

.cfm-benefit-card:hover .cfm-benefit-icon i {
    color: white;
}

.cfm-benefit-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 15px;
}

.cfm-benefit-card p {
    font-size: 0.98rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.cfm-problems-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cfm-problem-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 18px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-problem-item:hover {
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
    border-color: var(--cfm-primary);
}

.cfm-problem-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.cfm-problem-item:hover .cfm-problem-icon {
    background: var(--cfm-primary);
    transform: scale(1.2) rotate(360deg);
}

.cfm-problem-icon i {
    font-size: 32px;
    color: var(--cfm-primary);
    transition: all 0.3s ease;
}

.cfm-problem-item:hover .cfm-problem-icon i {
    color: white;
}

.cfm-problem-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cfm-dark);
    margin-bottom: 10px;
}

.cfm-problem-content p {
    font-size: 0.98rem;
    color: var(--cfm-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.cfm-faq-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.02) 0%,
        rgba(233, 60, 5, 0.04) 100%);
}

.cfm-accordion-item {
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cfm-accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.12);
    border-color: var(--cfm-primary);
}

.cfm-accordion-button {
    padding: 22px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--cfm-dark);
    background: white;
    border: none;
    transition: all 0.3s ease;
}

.cfm-accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(233, 60, 5, 0.05) 100%);
    color: var(--cfm-primary);
}

.cfm-accordion-button:focus {
    box-shadow: none;
    border: none;
}

.cfm-accordion-button i {
    color: var(--cfm-primary);
}

.cfm-accordion-body {
    padding: 25px 30px;
    font-size: 1.02rem;
    color: var(--cfm-gray);
    line-height: 1.8;
    background: white;
}

/* ========================================
   CTA SECTION
   ======================================== */

.cfm-cta-card {
    position: relative;
    padding: 80px 50px;
    background: linear-gradient(135deg,
        var(--cfm-primary) 0%,
        var(--cfm-secondary) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(255, 107, 53, 0.3);
}

.cfm-cta-blob {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.15) 0%,
        transparent 70%);
    pointer-events: none;
    animation: liquidityRipple 6s ease-in-out infinite;
}

.cfm-cta-blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.cfm-cta-blob-2 {
    width: 350px;
    height: 350px;
    bottom: -80px;
    left: -80px;
    animation-delay: 3s;
}

.cfm-cta-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: coinSpin 6s ease-in-out infinite;
}

.cfm-cta-icon i {
    font-size: 55px;
    color: white;
}

.cfm-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 42px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cfm-cta-btn-white {
    background: white;
    color: var(--cfm-primary);
    border: 3px solid white;
}

.cfm-cta-btn-white:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--cfm-secondary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(255, 255, 255, 0.4);
}

.cfm-cta-btn-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.cfm-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px) scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .cfm-hero-section {
        padding: 140px 0 80px;
    }

    .cfm-hero-title {
        font-size: 2.5rem;
    }

    .cfm-hero-subtitle {
        font-size: 1.1rem;
    }

    .cfm-money-symbol {
        font-size: 90px;
    }

    .cfm-flow-circle {
        width: 140px;
        height: 140px;
    }

    .cfm-coin {
        width: 50px;
        height: 50px;
    }

    .cfm-coin-2,
    .cfm-coin-3 {
        width: 40px;
        height: 40px;
    }

    .cfm-cta-card {
        padding: 60px 40px;
    }

    .cfm-cta-icon {
        width: 100px;
        height: 100px;
        font-size: 45px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .cfm-hero-section {
        padding: 120px 0 60px;
    }

    .cfm-hero-title {
        font-size: 2rem;
    }

    .cfm-hero-subtitle {
        font-size: 1rem;
    }

    .cfm-hero-pill {
        padding: 10px 22px;
        font-size: 12px;
    }

    .cfm-hero-image-inner {
        padding: 40px 25px;
    }

    .cfm-hero-image-inner i {
        font-size: 60px;
    }

    .cfm-money-symbol {
        font-size: 70px;
    }

    .cfm-flow-circle {
        width: 100px;
        height: 100px;
        right: 5%;
    }

    .cfm-coin {
        display: none;
    }

    .cfm-btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .cfm-area-card {
        flex-direction: column;
        padding: 25px;
    }

    .cfm-problem-item {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .cfm-problem-icon {
        margin: 0 auto 20px;
    }

    .cfm-cta-card {
        padding: 50px 25px;
    }

    .cfm-cta-card h2 {
        font-size: 1.5rem;
    }

    .cfm-cta-icon {
        width: 80px;
        height: 80px;
    }

    .cfm-cta-icon i {
        font-size: 35px;
    }

    .cfm-cta-btn {
        padding: 14px 32px;
        font-size: 0.95rem;
    }

    .cfm-image-placeholder {
        max-width: 100%;
    }
}
