/* ========================================
   INVESTOR PITCH DECK - CSS VARIABLES
   ======================================== */

:root {
    --ipd-primary: #FF6B35;
    --ipd-secondary: #E93C05;
    --ipd-dark: #212529;
    --ipd-light: #FFF4F0;
    --ipd-white: #FFFFFF;
    --ipd-gray: #6c757d;
}

/* ========================================
   KEYFRAME ANIMATIONS (7 Required)
   ======================================== */

/* Animation 1: Slide In - Presentation slides entering */
@keyframes slideIn {
    0% {
        transform: translateX(-100px) rotate(-5deg);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) rotate(0deg);
        opacity: 1;
    }
}

/* Animation 2: Growth Pulse - Pulsing growth effect */
@keyframes growthPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.15);
        opacity: 1;
    }
}

/* Animation 3: Investor Float - Floating investor icons */
@keyframes investorFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-15px) scale(1.05);
    }
    66% {
        transform: translateY(-5px) scale(0.95);
    }
}

/* Animation 4: Chart Bar Rise - Chart bars rising animation */
@keyframes chartBarRise {
    0% {
        height: 0%;
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Animation 5: Glow Effect - Glowing border animation */
@keyframes glowEffect {
    0%, 100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.3),
                    0 0 10px rgba(255, 107, 53, 0.2),
                    0 0 15px rgba(255, 107, 53, 0.1);
    }
    50% {
        box-shadow: 0 0 10px rgba(255, 107, 53, 0.6),
                    0 0 20px rgba(255, 107, 53, 0.4),
                    0 0 30px rgba(255, 107, 53, 0.2);
    }
}

/* Animation 6: Fade Slide Up - Element entry animation */
@keyframes fadeSlideUp {
    0% {
        transform: translateY(40px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Animation 7: Rotate Scale - Rotating with scale effect */
@keyframes rotateScale {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

/* ========================================
   HERO SECTION
   ======================================== */

.ipd-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 180px;
    padding-bottom: 100px;
    overflow: hidden;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08) 0%,
        rgba(255, 255, 255, 1) 50%,
        rgba(233, 60, 5, 0.05) 100%);
}

.ipd-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%,
        rgba(255, 107, 53, 0.15) 0%,
        transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.ipd-hero-content {
    position: relative;
    z-index: 1;
}

.ipd-hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.15),
        rgba(233, 60, 5, 0.1));
    border: 2px solid var(--ipd-primary);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ipd-primary);
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: fadeSlideUp 0.8s ease forwards;
}

.ipd-hero-pill:hover {
    transform: scale(1.05) translateY(-3px);
    background: var(--ipd-primary);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    animation: glowEffect 2s ease-in-out infinite;
}

.ipd-hero-title {
    font-weight: 700;
    color: var(--ipd-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    animation: fadeSlideUp 1s ease forwards;
}

.ipd-hero-subtitle {
    font-size: 1.15rem;
    color: var(--ipd-gray);
    line-height: 1.8;
    animation: fadeSlideUp 1.2s ease forwards;
}

.ipd-hero-image {
    position: relative;
    animation: fadeSlideUp 1.4s ease forwards;
}

.ipd-hero-image-inner {
    position: relative;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 3px dashed rgba(255, 107, 53, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ipd-hero-image:hover .ipd-hero-image-inner {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--ipd-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    animation: glowEffect 2s ease-in-out infinite;
}

.ipd-hero-image-inner i {
    font-size: 80px;
    color: var(--ipd-primary);
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.ipd-hero-image:hover .ipd-hero-image-inner i {
    transform: scale(1.15);
    animation: growthPulse 2s ease-in-out infinite;
}

.ipd-hero-image-inner h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 15px;
}

.ipd-hero-image-inner p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.6;
}

/* ========================================
   CSS ART: PRESENTATION SLIDES
   ======================================== */

.ipd-slide {
    position: absolute;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.15),
        rgba(233, 60, 5, 0.1));
    border: 3px solid rgba(255, 107, 53, 0.3);
    border-radius: 8px;
    pointer-events: none;
    z-index: 0;
}

.ipd-slide::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    height: 3px;
    background: rgba(255, 107, 53, 0.4);
    border-radius: 2px;
}

.ipd-slide::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(to bottom,
        rgba(255, 107, 53, 0.2),
        transparent);
    border-radius: 4px;
}

.ipd-slide-1 {
    top: 15%;
    left: 5%;
    animation: slideIn 8s ease-in-out infinite;
}

.ipd-slide-2 {
    top: 40%;
    left: 8%;
    transform: rotate(15deg);
    animation: slideIn 10s ease-in-out infinite 2s;
}

.ipd-slide-3 {
    top: 65%;
    left: 3%;
    transform: rotate(-10deg);
    animation: slideIn 12s ease-in-out infinite 4s;
}

/* ========================================
   CSS ART: GROWTH ARROW
   ======================================== */

.ipd-growth-arrow {
    position: absolute;
    top: 30%;
    right: 10%;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 0;
}

.ipd-arrow-line {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg,
        transparent,
        var(--ipd-primary));
    transform: rotate(45deg);
    transform-origin: left bottom;
}

.ipd-arrow-head {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid var(--ipd-primary);
    transform: rotate(45deg);
    animation: growthPulse 3s ease-in-out infinite;
}

.ipd-growth-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--ipd-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.ipd-dot-1 {
    bottom: 25px;
    left: 25px;
    animation: growthPulse 2s ease-in-out infinite;
}

.ipd-dot-2 {
    bottom: 60px;
    left: 60px;
    animation: growthPulse 2s ease-in-out infinite 0.5s;
}

.ipd-dot-3 {
    top: 25px;
    right: 35px;
    animation: growthPulse 2s ease-in-out infinite 1s;
}

/* ========================================
   CSS ART: INVESTOR ICONS
   ======================================== */

.ipd-investor-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    pointer-events: none;
    z-index: 0;
}

.ipd-investor-circle {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%,
        rgba(255, 107, 53, 0.3),
        rgba(233, 60, 5, 0.15));
    border: 3px solid rgba(255, 107, 53, 0.4);
    border-radius: 50%;
    position: relative;
}

.ipd-investor-circle::before {
    content: '💼';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
}

.ipd-investor-1 {
    top: 20%;
    right: 5%;
    animation: investorFloat 6s ease-in-out infinite;
}

.ipd-investor-2 {
    bottom: 25%;
    right: 8%;
    animation: investorFloat 7s ease-in-out infinite 2s;
}

/* ========================================
   CSS ART: FLOATING CHARTS
   ======================================== */

.ipd-chart {
    position: absolute;
    bottom: 15%;
    right: 15%;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    pointer-events: none;
    z-index: 0;
}

.ipd-chart-bar {
    width: 20px;
    background: linear-gradient(to top,
        var(--ipd-primary),
        var(--ipd-secondary));
    border-radius: 4px 4px 0 0;
    animation: chartBarRise 2s ease-out forwards;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.ipd-chart-bar:nth-child(1) {
    animation-delay: 0s;
}

.ipd-chart-bar:nth-child(2) {
    animation-delay: 0.3s;
}

.ipd-chart-bar:nth-child(3) {
    animation-delay: 0.6s;
}

/* ========================================
   BUTTONS
   ======================================== */

.ipd-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 35px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    border: 2px solid transparent;
}

.ipd-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.ipd-btn:hover::before {
    width: 300px;
    height: 300px;
}

.ipd-btn span {
    position: relative;
    z-index: 1;
}

.ipd-btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.ipd-btn:hover i {
    transform: translateX(5px);
}

.ipd-btn-primary {
    background: linear-gradient(135deg, var(--ipd-primary), var(--ipd-secondary));
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.ipd-btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    animation: glowEffect 2s ease-in-out infinite;
}

.ipd-btn-outline {
    background: transparent;
    color: var(--ipd-primary);
    border-color: var(--ipd-primary);
}

.ipd-btn-outline:hover {
    background: var(--ipd-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.ipd-btn-light {
    background: white;
    color: var(--ipd-primary);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.ipd-btn-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.ipd-btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.ipd-btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: white;
    transform: translateY(-5px);
}

/* ========================================
   SECTION BADGES
   ======================================== */

.ipd-section-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ipd-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ========================================
   IMAGE PLACEHOLDERS
   ======================================== */

.ipd-image-placeholder {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    animation: fadeSlideUp 1s ease forwards;
}

.ipd-image-placeholder.ipd-image-horizontal {
    max-width: 100%;
    margin: 30px 0;
}

.ipd-image-content {
    position: relative;
    aspect-ratio: 4 / 3;
    background: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px;
    text-align: center;
    border: 3px dashed rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.ipd-image-horizontal .ipd-image-content {
    aspect-ratio: 3 / 1;
}

.ipd-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;
}

.ipd-image-placeholder:hover .ipd-image-content::before {
    left: 100%;
}

.ipd-image-placeholder:hover .ipd-image-content {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--ipd-primary);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    animation: glowEffect 2s ease-in-out infinite;
}

.ipd-image-content i {
    font-size: 60px;
    color: var(--ipd-primary);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.ipd-image-placeholder:hover .ipd-image-content i {
    opacity: 1;
    transform: scale(1.2);
    animation: growthPulse 2s ease-in-out infinite;
}

.ipd-image-content h5 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ipd-dark);
    margin: 0;
}

.ipd-image-content p {
    font-size: 14px;
    color: var(--ipd-gray);
    line-height: 1.6;
}

/* ========================================
   CHECKLIST
   ======================================== */

.ipd-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ipd-checklist-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 12px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    animation: fadeSlideUp 0.6s ease forwards;
}

.ipd-checklist-item:nth-child(1) {
    animation-delay: 0.1s;
}

.ipd-checklist-item:nth-child(2) {
    animation-delay: 0.2s;
}

.ipd-checklist-item:nth-child(3) {
    animation-delay: 0.3s;
}

.ipd-checklist-item:nth-child(4) {
    animation-delay: 0.4s;
}

.ipd-checklist-item:nth-child(5) {
    animation-delay: 0.5s;
}

.ipd-checklist-item:nth-child(6) {
    animation-delay: 0.6s;
}

.ipd-checklist-item:hover {
    background: var(--ipd-light);
    border-color: var(--ipd-primary);
    transform: translateX(15px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
}

.ipd-checklist-item i {
    font-size: 24px;
    color: var(--ipd-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ipd-checklist-item:hover i {
    transform: scale(1.2) rotate(360deg);
}

.ipd-checklist-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--ipd-dark);
}

/* ========================================
   HIGHLIGHT BOX
   ======================================== */

.ipd-highlight-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border-left: 5px solid var(--ipd-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ipd-highlight-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
}

.ipd-highlight-box i {
    font-size: 40px;
    color: var(--ipd-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.ipd-highlight-box:hover i {
    transform: scale(1.15) rotate(15deg);
}

.ipd-highlight-box p {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--ipd-dark);
    line-height: 1.6;
}

/* ========================================
   WHY SECTION
   ======================================== */

.ipd-why-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.ipd-why-card {
    position: relative;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.ipd-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.05),
        transparent);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ipd-why-card:hover::before {
    opacity: 1;
}

.ipd-why-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--ipd-primary);
}

.ipd-why-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),
        rgba(233, 60, 5, 0.05));
    border-radius: 50%;
    border: 3px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ipd-why-card:hover .ipd-why-icon {
    background: var(--ipd-primary);
    transform: rotate(360deg) scale(1.1);
    animation: glowEffect 1.5s ease-in-out infinite;
}

.ipd-why-icon i {
    font-size: 40px;
    color: var(--ipd-primary);
    transition: all 0.4s ease;
}

.ipd-why-card:hover .ipd-why-icon i {
    color: white;
    transform: scale(1.15);
}

.ipd-why-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 15px;
}

.ipd-why-card p {
    font-size: 1rem;
    color: var(--ipd-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   WHO NEEDS SECTION
   ======================================== */

.ipd-who-card {
    position: relative;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.ipd-who-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--ipd-primary);
}

.ipd-who-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ipd-primary), var(--ipd-secondary));
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.ipd-who-card:hover .ipd-who-number {
    transform: scale(1.15) rotate(5deg);
    animation: growthPulse 2s ease-in-out infinite;
}

.ipd-who-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.ipd-who-card:hover .ipd-who-icon {
    background: var(--ipd-primary);
    transform: scale(1.1);
}

.ipd-who-icon i {
    font-size: 35px;
    color: var(--ipd-primary);
    transition: all 0.3s ease;
}

.ipd-who-card:hover .ipd-who-icon i {
    color: white;
    transform: scale(1.1);
}

.ipd-who-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 12px;
}

.ipd-who-card p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   KEY COMPONENTS SECTION
   ======================================== */

.ipd-components-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.ipd-component-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.ipd-component-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.2);
    border-color: var(--ipd-primary);
}

.ipd-component-number {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ipd-primary), var(--ipd-secondary));
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.ipd-component-card:hover .ipd-component-number {
    transform: scale(1.15) rotate(5deg);
}

.ipd-component-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border-radius: 12px;
    transition: all 0.4s ease;
}

.ipd-component-card:hover .ipd-component-icon {
    background: var(--ipd-primary);
    transform: scale(1.1) rotate(10deg);
}

.ipd-component-icon i {
    font-size: 30px;
    color: var(--ipd-primary);
    transition: all 0.3s ease;
}

.ipd-component-card:hover .ipd-component-icon i {
    color: white;
}

.ipd-component-content h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 8px;
}

.ipd-component-content p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   APPROACH/STEP CARDS
   ======================================== */

.ipd-step-card {
    position: relative;
    padding: 35px 30px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.ipd-step-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--ipd-primary);
}

.ipd-step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ipd-primary), var(--ipd-secondary));
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.ipd-step-card:hover .ipd-step-number {
    transform: translateX(-50%) scale(1.15);
    animation: growthPulse 2s ease-in-out infinite;
}

.ipd-step-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.ipd-step-card:hover .ipd-step-icon {
    background: var(--ipd-primary);
    transform: scale(1.1);
}

.ipd-step-icon i {
    font-size: 40px;
    color: var(--ipd-primary);
    transition: all 0.3s ease;
}

.ipd-step-card:hover .ipd-step-icon i {
    color: white;
    transform: scale(1.1);
}

.ipd-step-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 15px;
    line-height: 1.4;
}

.ipd-step-card p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   BENEFITS SECTION
   ======================================== */

.ipd-benefits-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.ipd-benefit-card {
    position: relative;
    padding: 35px 25px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
}

.ipd-benefit-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.2);
    border-color: var(--ipd-primary);
}

.ipd-benefit-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.1),
        rgba(233, 60, 5, 0.05));
    border-radius: 50%;
    transition: all 0.4s ease;
}

.ipd-benefit-card:hover .ipd-benefit-icon {
    background: var(--ipd-primary);
    transform: scale(1.15);
    animation: rotateScale 3s ease-in-out infinite;
}

.ipd-benefit-icon i {
    font-size: 38px;
    color: var(--ipd-primary);
    transition: all 0.3s ease;
}

.ipd-benefit-card:hover .ipd-benefit-icon i {
    color: white;
}

.ipd-benefit-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 12px;
}

.ipd-benefit-card p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   PROBLEMS SECTION
   ======================================== */

.ipd-problems-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ipd-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.15);
    transition: all 0.3s ease;
}

.ipd-problem-item:hover {
    transform: translateX(15px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--ipd-primary);
}

.ipd-problem-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.ipd-problem-item:hover .ipd-problem-icon {
    background: var(--ipd-primary);
    transform: scale(1.3);
}

.ipd-problem-icon i {
    font-size: 28px;
    color: var(--ipd-primary);
    transition: all 0.3s ease;
}

.ipd-problem-item:hover .ipd-problem-icon i {
    color: white;
}

.ipd-problem-content h6 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ipd-dark);
    margin-bottom: 8px;
}

.ipd-problem-content p {
    font-size: 0.95rem;
    color: var(--ipd-gray);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.ipd-faq-section {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.03) 0%,
        rgba(233, 60, 5, 0.05) 100%);
}

.ipd-accordion .accordion-item {
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ipd-accordion .accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.15);
    border-color: var(--ipd-primary);
}

.ipd-accordion .accordion-button {
    padding: 22px 28px;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--ipd-dark);
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.ipd-accordion .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
        rgba(255, 107, 53, 0.08),
        rgba(233, 60, 5, 0.05));
    color: var(--ipd-primary);
    box-shadow: none;
}

.ipd-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.ipd-accordion .accordion-button i {
    transition: transform 0.3s ease;
}

.ipd-accordion .accordion-button:not(.collapsed) i {
    transform: rotate(90deg);
}

.ipd-accordion .accordion-body {
    padding: 20px 28px 28px;
    font-size: 1rem;
    color: var(--ipd-gray);
    line-height: 1.8;
}

/* ========================================
   CTA SECTION
   ======================================== */

.ipd-cta-card {
    position: relative;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--ipd-primary), var(--ipd-secondary));
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.ipd-cta-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
    pointer-events: none;
}

.ipd-cta-blob-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation: investorFloat 8s ease-in-out infinite;
}

.ipd-cta-blob-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    animation: investorFloat 10s ease-in-out infinite 2s;
}

.ipd-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: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    animation: growthPulse 3s ease-in-out infinite;
}

.ipd-cta-icon i {
    font-size: 50px;
    color: white;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media (max-width: 991px) {
    .ipd-hero-section {
        padding: 140px 0 80px;
    }

    .ipd-hero-title {
        font-size: 2.5rem;
    }

    .ipd-hero-subtitle {
        font-size: 1.05rem;
    }

    .ipd-slide {
        width: 100px;
        height: 65px;
    }

    .ipd-growth-arrow {
        width: 120px;
        height: 120px;
    }

    .ipd-investor-icon {
        width: 50px;
        height: 50px;
    }

    .ipd-chart {
        height: 60px;
    }

    .ipd-cta-card {
        padding: 60px 40px;
    }

    .ipd-image-content i {
        font-size: 50px;
    }

    .ipd-image-content h5 {
        font-size: 16px;
    }

    .ipd-image-content p {
        font-size: 13px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .ipd-hero-section {
        padding: 120px 0 60px;
    }

    .ipd-hero-title {
        font-size: 2rem;
    }

    .ipd-hero-subtitle {
        font-size: 1rem;
    }

    .ipd-hero-pill {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .ipd-hero-image-inner {
        padding: 40px 25px;
    }

    .ipd-hero-image-inner i {
        font-size: 60px;
    }

    .ipd-slide {
        width: 80px;
        height: 50px;
    }

    .ipd-growth-arrow {
        display: none;
    }

    .ipd-investor-icon {
        width: 40px;
        height: 40px;
    }

    .ipd-chart {
        height: 50px;
    }

    .ipd-btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .ipd-why-icon,
    .ipd-step-icon {
        width: 70px;
        height: 70px;
    }

    .ipd-why-icon i,
    .ipd-step-icon i {
        font-size: 35px;
    }

    .ipd-who-card h5,
    .ipd-step-card h5,
    .ipd-benefit-card h5 {
        font-size: 1.1rem;
    }

    .ipd-cta-card {
        padding: 50px 25px;
    }

    .ipd-cta-card h2 {
        font-size: 1.5rem;
    }

    .ipd-cta-icon {
        width: 80px;
        height: 80px;
    }

    .ipd-cta-icon i {
        font-size: 40px;
    }

    .ipd-image-placeholder {
        max-width: 100%;
    }

    .ipd-image-content {
        padding: 30px 15px;
    }

    .ipd-image-content i {
        font-size: 40px;
    }

    .ipd-image-content h5 {
        font-size: 14px;
    }

    .ipd-image-content p {
        font-size: 12px;
    }

    .ipd-checklist-item {
        padding: 15px 18px;
    }

    .ipd-checklist-item span {
        font-size: 14px;
    }

    .ipd-problem-item {
        padding: 20px;
        gap: 15px;
    }

    .ipd-problem-icon {
        width: 45px;
        height: 45px;
    }

    .ipd-problem-icon i {
        font-size: 24px;
    }
}
