/* Podcast Manifesto */
.podcast-manifesto {
    padding: 120px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative Background Shapes */
.manifesto-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    transition: transform 20s ease-in-out;
}

.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
    top: -10%;
    left: -15%;
    animation: floatShapeManifesto1 25s infinite ease-in-out;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, transparent 70%);
    bottom: -10%;
    right: -10%;
    animation: floatShapeManifesto2 30s infinite ease-in-out;
}

.bg-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    top: 50%;
    right: 5%;
    animation: floatShapeManifesto3 35s infinite ease-in-out;
}

@keyframes floatShapeManifesto1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(100px, -80px) scale(1.1);
    }
}

@keyframes floatShapeManifesto2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-120px, 60px) scale(1.15);
    }
}

@keyframes floatShapeManifesto3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-80px, -100px) scale(1.08);
    }
}

/* --------------------------------------------------------------------------
   Section Header Styles
   -------------------------------------------------------------------------- */

/* Pre-heading Badge */
.manifesto-badge .badge {
    font-size: 0.75rem;
    letter-spacing: 1.2px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.manifesto-badge .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Main Title */
.manifesto-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.text-primary-gradient {
    background: linear-gradient(135deg, #ff6b35 0%, #f94144 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Title Divider */
.title-divider {
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 107, 53, 0.3) 15%,
            rgba(255, 107, 53, 1) 50%,
            rgba(255, 107, 53, 0.3) 85%,
            transparent 100%);
    border-radius: 3px;
    position: relative;
}

.title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

/* --------------------------------------------------------------------------
   Core Statement Card
   -------------------------------------------------------------------------- */
.core-statement-wrapper {
    position: relative;
}

.core-statement {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.04) 0%,
            rgba(255, 107, 53, 0.08) 50%,
            rgba(255, 107, 53, 0.04) 100%);
    border: 2px solid rgba(255, 107, 53, 0.15);
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.core-statement::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35 0%, #f94144 100%);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.core-statement::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 40%, rgba(255, 107, 53, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.core-statement:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.3);
}

.core-statement:hover::after {
    opacity: 1;
}

.shadow-elegant {
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.core-statement:hover {
    box-shadow:
        0 20px 60px rgba(255, 107, 53, 0.18),
        0 4px 12px rgba(0, 0, 0, 0.06);
}

/* Quote Icon */
.quote-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.quote-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 50%;
}

/* Core Statement Text */
.core-statement-text {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #1a1a1a;
}

.core-statement-emphasis {
    color: #2c3e50;
}

.highlight-text {
    position: relative;
    padding: 0 8px;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(255, 107, 53, 0.15);
    z-index: -1;
    border-radius: 4px;
}

/* Corner Decorations */
.corner-decoration {
    position: absolute;
    width: 40px;
    height: 40px;
    border-style: solid;
    border-color: rgba(255, 107, 53, 0.3);
}

.corner-tl {
    top: 20px;
    left: 20px;
    border-width: 3px 0 0 3px;
    border-radius: 8px 0 0 0;
}

.corner-br {
    bottom: 20px;
    right: 20px;
    border-width: 0 3px 3px 0;
    border-radius: 0 0 8px 0;
}

/* --------------------------------------------------------------------------
   Manifesto Cards (Problem & Questions)
   -------------------------------------------------------------------------- */
.manifesto-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.manifesto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35 0%, #f94144 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.manifesto-card:hover::before {
    transform: scaleX(1);
}

.manifesto-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255, 107, 53, 0.15);
}

.shadow-soft {
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

.manifesto-card:hover {
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(255, 107, 53, 0.08);
}

/* Card Icons */
.card-icon-wrapper {
    display: flex;
    justify-content: center;
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b35 0%, #f94144 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 30px rgba(255, 107, 53, 0.3),
        0 0 0 8px rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    animation: pulseRing 3s infinite ease-in-out;
}

@keyframes pulseRing {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.2;
    }
}

.manifesto-card:hover .card-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow:
        0 15px 40px rgba(255, 107, 53, 0.4),
        0 0 0 12px rgba(255, 107, 53, 0.15);
}

.card-icon-alt {
    background: linear-gradient(135deg, #f94144 0%, #d62828 100%);
}

/* Card Titles */
.card-title {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

/* Truth Highlight Box */
.truth-highlight {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.06) 0%,
            rgba(255, 107, 53, 0.10) 100%);
    border-left: 5px solid #ff6b35;
    position: relative;
    transition: all 0.3s ease;
}

.truth-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -5px;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ff6b35 0%, #f94144 100%);
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.truth-highlight:hover {
    background: rgba(255, 107, 53, 0.12);
    transform: translateX(8px);
}

.truth-icon {
    animation: lightbulbGlow 2s infinite ease-in-out;
}

@keyframes lightbulbGlow {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* Accent Line */
.accent-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Reflection Questions List
   -------------------------------------------------------------------------- */
.reflection-list {
    margin-bottom: 0;
}

.reflection-item {
    background: rgba(255, 107, 53, 0.04);
    border-left: 4px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.reflection-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 107, 53, 0.08);
    transition: width 0.4s ease;
}

.reflection-item:hover {
    background: rgba(255, 107, 53, 0.08);
    border-left-color: #ff6b35;
    transform: translateX(12px);
    box-shadow:
        0 4px 12px rgba(255, 107, 53, 0.12),
        -4px 0 0 0 rgba(255, 107, 53, 0.2);
}

.reflection-item:hover::before {
    width: 100%;
}

.reflection-item-final {
    border-top: 2px solid rgba(255, 107, 53, 0.15);
    margin-top: 1rem !important;
    padding-top: 1.5rem !important;
    background: rgba(255, 107, 53, 0.06);
}

.reflection-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.reflection-item:hover .reflection-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.15) rotate(5deg);
}

.reflection-text {
    flex: 1;
}

.reflection-text strong {
    color: #ff6b35;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Manifesto Conclusion Section
   -------------------------------------------------------------------------- */
.manifesto-conclusion {
    background: linear-gradient(135deg,
            rgba(255, 107, 53, 0.04) 0%,
            rgba(255, 107, 53, 0.08) 50%,
            rgba(255, 107, 53, 0.04) 100%);
    border: 2px solid rgba(255, 107, 53, 0.12);
    position: relative;
    overflow: hidden;
}

.manifesto-conclusion::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.conclusion-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.conclusion-title {
    position: relative;
    z-index: 1;
}

.conclusion-text {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.conclusion-cta {
    position: relative;
    z-index: 1;
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.3);
}

/* Statistics Row */
.manifesto-stats {
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #1a1a1a;
}

.stat-label {
    letter-spacing: 1px;
    font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   Decorative Wave
   -------------------------------------------------------------------------- */
.manifesto-wave {
    height: 80px;
    bottom: 0;
    z-index: 0;
}

.manifesto-wave svg {
    width: 100%;
    height: 100%;
}

/* --------------------------------------------------------------------------
   Utility Classes
   -------------------------------------------------------------------------- */
.bg-primary-subtle {
    background-color: rgba(255, 107, 53, 0.1) !important;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */

/* Large Devices */
@media (min-width: 992px) {
    .mb-lg-6 {
        margin-bottom: 4.5rem !important;
    }
}

/* Medium Devices (Tablets, 768px to 991px) */
@media (max-width: 991px) {
    .podcast-manifesto {
        padding: 100px 0 80px;
    }

    .manifesto-title {
        font-size: clamp(2rem, 5vw, 3.5rem);
    }

    .core-statement {
        padding: 2.5rem !important;
    }

    .card-icon {
        width: 80px;
        height: 80px;
    }

    .manifesto-card {
        margin-bottom: 2rem;
    }
}

/* Small Devices (Phones, 576px to 767px) */
@media (max-width: 767px) {
    .podcast-manifesto {
        padding: 80px 0 60px;
    }

    .manifesto-title {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }

    .title-divider {
        width: 120px;
        height: 4px;
    }

    .core-statement {
        padding: 2rem !important;
    }

    .core-statement-text {
        font-size: 1.5rem;
    }

    .core-statement-emphasis {
        font-size: 1.125rem;
    }

    .quote-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .reflection-item {
        padding: 1rem !important;
    }

    .manifesto-conclusion {
        padding: 2rem !important;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Extra Small Devices (Phones, less than 576px) */
@media (max-width: 575px) {
    .podcast-manifesto {
        padding: 60px 0 40px;
    }

    .manifesto-badge .badge {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .manifesto-title {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 1.125rem !important;
    }

    .core-statement {
        padding: 1.5rem !important;
    }

    .core-statement-text {
        font-size: 1.25rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .reflection-icon {
        width: 40px;
        height: 40px;
    }

    .reflection-text .fs-5 {
        font-size: 1rem !important;
    }

    .truth-highlight {
        padding: 1rem !important;
    }

    .truth-highlight .fs-4 {
        font-size: 1.125rem !important;
    }

    .manifesto-conclusion {
        padding: 1.5rem !important;
    }

    .conclusion-title {
        font-size: 1.5rem;
    }

    .conclusion-text {
        font-size: 1rem !important;
    }

    .btn-lg {
        padding: 0.75rem 2rem !important;
        font-size: 1rem !important;
    }

    .manifesto-stats {
        margin-top: 2rem !important;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
    }

    .stat-icon .fs-3 {
        font-size: 1.25rem !important;
    }
}

/* --------------------------------------------------------------------------
   Animation & Accessibility
   -------------------------------------------------------------------------- */

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .bg-shape,
    .card-icon::before,
    .truth-icon {
        animation: none !important;
    }

    .manifesto-card:hover,
    .core-statement:hover,
    .reflection-item:hover,
    .hover-lift:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
.manifesto-card:focus-within,
.click-scroll:focus-visible {
    outline: 3px solid rgba(255, 107, 53, 0.5);
    outline-offset: 4px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {

    .manifesto-card,
    .core-statement,
    .truth-highlight,
    .reflection-item {
        border-width: 2px;
        border-color: rgba(0, 0, 0, 0.3);
    }

    .card-icon,
    .reflection-icon {
        border: 2px solid #ff6b35;
    }
}

/* Print styles */
@media print {
    .podcast-manifesto {
        background: white !important;
        padding: 40px 0;
    }

    .manifesto-bg-shapes,
    .bg-shape,
    .manifesto-wave,
    .corner-decoration,
    .card-icon::before {
        display: none !important;
    }

    .manifesto-card,
    .core-statement {
        box-shadow: none !important;
        border: 1px solid #ddd !important;
        page-break-inside: avoid;
    }

    .conclusion-cta {
        display: none;
    }
}








/* ============================================
   SIMPLIFIED HEART CHECK EXPERIENCE (No 3D Flip)
   ============================================ */

.heart-check-experience {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 250, 245, 0.98) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* Heart Check Cards - SIMPLE VERSION */
.heart-check-cards {
    position: relative;
}

.heart-check-card-container {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    min-height: 100px;
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Card styling */
.card-inner {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Front card (always visible when not flipped) */
.card-front {
    display: flex;
    align-items: center;
    opacity: 1;
    transform: scale(1);
    transition: all 0.4s ease;
}

/* Back card (hidden by default) */
.card-back {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: white;
    border: 2px solid rgba(255, 107, 53, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* When card is active/flipped */
.heart-check-card-container.active .card-front {
    opacity: 0;
    transform: scale(0.95);
    display: none;
}

.heart-check-card-container.active .card-back {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: cardReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Front card hover effects */
.card-front:hover .card-inner {
    transform: translateY(-3px);
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.card-front-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.card-front:hover .card-front-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 107, 53, 0.2);
}

.card-front-content {
    flex: 1;
}

.card-front-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.card-front-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 0;
}

.card-front-arrow {
    color: var(--primary);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.card-front:hover .card-front-arrow {
    transform: translateX(5px);
}

/* Back card styling */
.card-back-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 107, 53, 0.1);
}

.card-back-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
    flex: 1;
}

.card-close-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--text-gray);
    text-decoration: none;
    background: none;
    border: none;
}

.card-close-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    transform: rotate(90deg);
}

.card-back-question {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.05) 0%, 
        rgba(255, 107, 53, 0.08) 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    margin-bottom: 1.5rem;
}

.card-back-question p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.5;
}

.card-back-options .btn:hover {
    color: black;
}

.card-back-options {
    margin-bottom: 1.5rem;
}

.btn-option {
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    text-align: left;
    color: var(--dark);
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-option:hover {
    background: rgba(255, 107, 53, 0.05);
    border-color: var(--primary);
    transform: translateX(5px);
}

.btn-option.selected {
    background: linear-gradient(135deg, 
        rgba(255, 107, 53, 0.1) 0%, 
        rgba(255, 107, 53, 0.2) 100%);
    border-color: var(--primary);
    color: var(--primary);
}

.card-back-insight {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Progress Bar */
.heart-check-progress {
    margin-top: 2rem;
}

.heart-check-progress .progress {
    height: 8px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.heart-check-progress .progress-bar {
    background: linear-gradient(90deg, #ff6b35, #f94144);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.heart-check-progress .progress-text {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Final Revelation */
.heart-check-revelation {
    margin-top: 3rem;
    display: none;
}

.heart-check-revelation.revealed {
    display: block;
    animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.revelation-icon {
    margin-bottom: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.revelation-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.revelation-content {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 250, 245, 0.95) 100%);
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.revelation-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #f94144, #ff6b35);
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.revelation-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.revelation-cta {
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .heart-check-experience {
        padding: 1.5rem;
    }
    
    .heart-check-card-container {
        margin-bottom: 0.75rem;
    }
    
    .card-inner {
        padding: 1.25rem;
    }
    
    .card-front-icon {
        width: 50px;
        height: 50px;
        margin-right: 0.75rem;
    }
    
    .card-front-title {
        font-size: 1.1rem;
    }
    
    .card-front-text {
        font-size: 0.85rem;
    }
    
    .card-back-question p {
        font-size: 1rem;
    }
    
    .btn-option {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
    
    .revelation-content {
        padding: 1.5rem;
    }
    
    .revelation-text {
        font-size: 1rem;
    }
}