/* Personal Finance Page - Unique Design Style 2 */

/* Page Hero - Different Style */
.page-hero-finance {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 6rem;
    overflow: hidden;
}

.finance-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.finance-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.finance-shape {
    position: absolute;
    opacity: 0.1;
    animation: shape-float 15s ease-in-out infinite;
}

.shape-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid #10b981;
    bottom: 15%;
    left: 5%;
    animation-delay: 5s;
    opacity: 0.08;
}

.shape-square {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    transform: rotate(45deg);
    top: 50%;
    right: 20%;
    animation-delay: 10s;
}

@keyframes shape-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(10deg);
    }
}

.finance-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.finance-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.finance-hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -2px;
}

.title-gradient {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.finance-hero-text {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.finance-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.finance-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.finance-feature span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Podcast Showcase */
.podcast-showcase {
    padding: 6rem 0;
    background: white;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.showcase-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.card-main {
    grid-row: span 2;
}

.card-image-wrapper {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image-placeholder {
    font-size: 5rem;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(14, 165, 233, 0.8));
    opacity: 0.9;
}

.card-icon-wrapper {
    height: 120px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 233, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-body {
    padding: 2rem;
}

.card-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.card-body h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.card-body p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-rating span:first-child {
    color: #fbbf24;
}

.card-link {
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    transform: translateX(5px);
}

.card-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Key Topics */
.key-topics-finance {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, white 100%);
}

.topics-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.topics-grid-finance {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.topic-card-finance {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.topic-card-finance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #0ea5e9);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.topic-card-finance:hover::before {
    transform: scaleX(1);
}

.topic-card-finance:hover {
    transform: translateY(-5px);
    border-color: #10b981;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.15);
}

.topic-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(16, 185, 129, 0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.topic-card-finance h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.topic-card-finance p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: white;
}

.benefits-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.benefits-text h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 3rem;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

.benefits-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
}

.visual-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.visual-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
}

/* CTA */
.cta-finance {
    padding: 6rem 0;
    background: linear-gradient(135deg, #10b981, #0ea5e9);
    text-align: center;
    color: white;
}

.cta-finance-content h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-finance-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-finance {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: #10b981;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-finance:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .card-main {
        grid-row: span 1;
    }

    .topics-grid-finance {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .topics-grid-finance {
        grid-template-columns: 1fr;
    }

    .finance-hero-features {
        flex-direction: column;
        gap: 1rem;
    }
}


