/* ========================================
   Rosecraft Designs - Blog Styles
   Extends main site design for blog content
======================================== */

/* ========================================
   BLOG LAYOUT
======================================== */
.blog-hero {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-color: var(--color-dark);
    margin-top: 100px;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(168, 0, 0, 0.4) 100%);
}

.blog-title {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-white);
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.meta-info {
    text-align: center;
    color: var(--color-gray-light);
    font-size: 0.95rem;
    padding: var(--spacing-lg) var(--container-padding);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: var(--spacing-lg);
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--container-padding) var(--spacing-xxl);
    line-height: 1.8;
}

.blog-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-lg);
    color: var(--color-dark);
}

.blog-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: var(--spacing-xl) 0 var(--spacing-md);
    color: var(--color-dark);
}

.blog-content h3 {
    font-size: 1.25rem;
    margin: var(--spacing-lg) 0 var(--spacing-sm);
    color: var(--color-dark);
}

.blog-content p {
    margin-bottom: var(--spacing-md);
    color: var(--color-gray);
}

.blog-content ul,
.blog-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-lg);
    color: var(--color-gray);
}

.blog-content li {
    margin-bottom: var(--spacing-sm);
    line-height: 1.7;
}

.blog-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-content a:hover {
    color: var(--color-primary-dark);
}

.blog-content blockquote {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
    font-style: italic;
    color: var(--color-gray);
}

.blog-content blockquote small {
    display: block;
    margin-top: var(--spacing-sm);
    font-style: normal;
    color: var(--color-gray-light);
}

.blog-content strong {
    color: var(--color-dark);
}

/* ========================================
   BLOG CTA SECTION
======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    padding: var(--spacing-xxl) var(--container-padding);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--spacing-xxl) auto;
    max-width: 800px;
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section a {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
}

.cta-section a:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
}

/* ========================================
   BLOG INDEX PAGE
======================================== */
.blog-index-hero {
    padding: calc(100px + var(--spacing-xl)) var(--container-padding) var(--spacing-xl);
    background: var(--color-background);
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    padding: var(--spacing-section) var(--container-padding);
    max-width: var(--max-width);
    margin: 0 auto;
}

.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    display: inline-block;
    background: rgba(168, 0, 0, 0.1);
    color: var(--color-primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.blog-card p {
    color: var(--color-gray-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-meta {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.85rem;
    color: var(--color-gray-light);
}

/* ========================================
   INTERACTIVE COMPONENTS - COLOR
======================================== */
.color-psychology-demo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
    padding: var(--spacing-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.color-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.color-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.color-display {
    width: 100%;
    height: 100px;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    position: relative;
    overflow: hidden;
    animation: colorPulse 4s ease-in-out infinite;
}

.color-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.color-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.color-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.color-yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
}

.color-purple {
    background: linear-gradient(135deg, #9333ea 0%, #7c3aed 100%);
}

.color-orange {
    background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
}

.color-teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
}

.color-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

@keyframes colorPulse {

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

    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

.color-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.color-emotion {
    font-size: 0.85rem;
    color: var(--color-gray-light);
    font-style: italic;
    margin-bottom: var(--spacing-sm);
}

.color-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-gray);
}

.emotion-indicator {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: var(--spacing-sm);
    color: var(--color-white);
}

.emotion-trust {
    background: #2563eb;
}

.emotion-energy {
    background: #dc2626;
}

.emotion-growth {
    background: #16a34a;
}

.emotion-happiness {
    background: #eab308;
}

.emotion-luxury {
    background: #9333ea;
}

.emotion-creativity {
    background: #ea580c;
}

.emotion-calm {
    background: #0d9488;
}

.emotion-playful {
    background: #ec4899;
}

/* Color Wheel */
.color-wheel-section {
    background: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.color-wheel {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: var(--spacing-lg) auto;
    position: relative;
    background: conic-gradient(from 0deg,
            #ff0000 0deg 60deg,
            #ffff00 60deg 120deg,
            #00ff00 120deg 180deg,
            #00ffff 180deg 240deg,
            #0000ff 240deg 300deg,
            #ff00ff 300deg 360deg);
    animation: wheelRotate 20s linear infinite;
    box-shadow: var(--shadow-lg);
}

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

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

.color-wheel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Brand Color Showcase */
.brand-color-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.brand-example {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid;
    transition: transform var(--transition-base);
}

.brand-example:hover {
    transform: translateX(4px);
}

.brand-example.facebook {
    border-left-color: #1877f2;
}

.brand-example.coca-cola {
    border-left-color: #fe0000;
}

.brand-example.starbucks {
    border-left-color: #00704a;
}

.brand-example.mcdonalds {
    border-left-color: #ffcc00;
}

.brand-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
}

.brand-color-strategy {
    font-size: 0.9rem;
    color: var(--color-gray-light);
    line-height: 1.5;
}

/* ========================================
   INTERACTIVE COMPONENTS - STORY
======================================== */
.story-arc-demo {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.story-timeline {
    position: relative;
    height: 150px;
    margin: var(--spacing-lg) 0;
}

.timeline-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #ef4444 75%, #10b981 100%);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
}

.story-point {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--color-white);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    animation: storyPulse 3s ease-in-out infinite;
    cursor: pointer;
    transition: all var(--transition-base);
}

.story-point:hover {
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.story-point:nth-child(2) {
    left: 0%;
    animation-delay: 0s;
}

.story-point:nth-child(3) {
    left: 25%;
    animation-delay: 0.5s;
}

.story-point:nth-child(4) {
    left: 50%;
    animation-delay: 1s;
}

.story-point:nth-child(5) {
    left: 75%;
    animation-delay: 1.5s;
}

.story-point:nth-child(6) {
    left: calc(100% - 14px);
    animation-delay: 2s;
}

@keyframes storyPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.story-labels {
    display: flex;
    justify-content: space-between;
    margin-top: var(--spacing-lg);
    font-size: 0.85rem;
}

.story-label {
    text-align: center;
    max-width: 100px;
}

.story-label small {
    display: block;
    opacity: 0.7;
    font-size: 0.75rem;
}

/* Narrative Element Cards */
.narrative-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.element-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.element-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e40af 0%, #10b981 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}

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

.element-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.story-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 1.25rem;
    color: var(--color-white);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.element-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

/* Heritage Storytelling */
.heritage-storytelling {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: var(--color-white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    text-align: center;
}

.clan-crest {
    width: 70px;
    height: 70px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    font-size: 1.75rem;
    animation: crestGlow 3s ease-in-out infinite;
}

@keyframes crestGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 0, 0, 0.6);
    }
}

.heritage-quote {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    margin: var(--spacing-md) 0;
    opacity: 0.9;
}

/* Emotion Journey */
.emotion-journey {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
}

.emotion-graph {
    position: relative;
    height: 120px;
    margin: var(--spacing-md) 0;
    background: linear-gradient(to right, #f8fafc 0%, #e2e8f0 100%);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.emotion-curve {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 150'%3E%3Cpath d='M0,120 Q100,100 150,80 T300,60 T400,40' stroke='%23A80000' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat center;
    background-size: 100% 100%;
}

.emotion-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.emotion-point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pointPulse 2s ease-in-out infinite;
}

.emotion-point:nth-child(1) {
    left: 12%;
    top: 70%;
    animation-delay: 0s;
}

.emotion-point:nth-child(2) {
    left: 37%;
    top: 45%;
    animation-delay: 0.5s;
}

.emotion-point:nth-child(3) {
    left: 62%;
    top: 30%;
    animation-delay: 1s;
}

.emotion-point:nth-child(4) {
    left: 87%;
    top: 15%;
    animation-delay: 1.5s;
}

@keyframes pointPulse {

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

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - VIDEO/STATS
======================================== */
.retention-comparison {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid #e2e8f0;
}

.retention-bars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.retention-item {
    text-align: center;
}

.retention-item h4 {
    font-size: 1rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.retention-bar {
    width: 100%;
    height: 36px;
    background: #f1f5f9;
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    border: 2px solid #e2e8f0;
}

.retention-fill {
    height: 100%;
    border-radius: inherit;
    position: relative;
    animation: fillRetention 3s ease-out forwards;
    transform-origin: left;
}

.video-fill {
    background: linear-gradient(45deg, var(--color-primary), #dc2626);
    width: 95%;
}

.text-fill {
    background: linear-gradient(45deg, #6b7280, #9ca3af);
    width: 10%;
}

.retention-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 600;
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 0.9rem;
}

@keyframes fillRetention {
    0% {
        width: 0%;
    }

    100% {
        width: var(--target-width, 100%);
    }
}

.target-width-95 {
    --target-width: 95%;
}

.target-width-10 {
    --target-width: 10%;
}

/* Engagement Statistics */
.engagement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    border: 2px solid #f1f5f9;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, var(--color-primary), #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--color-gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Platform Performance */
.platform-performance {
    background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid #e879f9;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.platform-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    text-align: center;
    border: 2px solid #fce7f3;
    position: relative;
    overflow: hidden;
}

.platform-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, var(--color-primary), #dc2626);
    animation: growBar 2s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes growBar {
    to {
        transform: scaleX(1);
    }
}

.platform-name {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: var(--spacing-xs);
    font-size: 0.95rem;
}

.platform-stat {
    color: var(--color-primary);
    font-size: 1rem;
    font-weight: 600;
}

/* Video Timeline */
.video-timeline {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid #0ea5e9;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin: var(--spacing-sm) 0;
    padding: var(--spacing-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    animation: slideInTimeline 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.timeline-step:nth-child(1) {
    animation-delay: 0.2s;
}

.timeline-step:nth-child(2) {
    animation-delay: 0.4s;
}

.timeline-step:nth-child(3) {
    animation-delay: 0.6s;
}

.timeline-step:nth-child(4) {
    animation-delay: 0.8s;
}

.timeline-step:nth-child(5) {
    animation-delay: 1.0s;
}

.timeline-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(45deg, var(--color-primary), #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    font-size: 0.9rem;
}

.timeline-content h4 {
    margin: 0 0 var(--spacing-xs) 0;
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1rem;
}

.timeline-content p {
    margin: 0;
    color: var(--color-gray-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes slideInTimeline {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Video ROI Calculator */
.video-roi-calculator {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border: 1px solid #22c55e;
    text-align: center;
}

.roi-display {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.roi-metric {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    border: 2px solid #bbf7d0;
}

.roi-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: var(--spacing-xs);
    animation: bounceIn 1s ease-out forwards;
}

.roi-label {
    font-size: 0.75rem;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

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

/* ========================================
   UTILITY CLASSES
======================================== */
.highlighted-text {
    color: var(--color-primary);
    font-weight: 600;
}

.muted-text {
    color: var(--color-gray-light);
}

.centered-text {
    text-align: center;
}

.small-opacity {
    opacity: 0.8;
}

.small-text {
    font-size: 0.9rem;
}

.flex-container {
    display: flex;
    justify-content: space-between;
}

.grid-single-column {
    grid-template-columns: 1fr;
}

.gradient-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gradient-blockquote {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: var(--spacing-lg);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-md);
    margin: var(--spacing-lg) 0;
}

.gradient-cta {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.cta-text {
    font-size: 1rem;
    color: var(--color-gray-light);
    margin-bottom: var(--spacing-lg);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(168, 0, 0, 0.3);
    transition: all var(--transition-base);
    border: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 0, 0, 0.4);
}

/* Animated Dots */
.animated-dots-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.animated-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: colorPulse 2s ease-in-out infinite;
}

.blue-dot {
    background: #2563eb;
}

.red-dot {
    background: #dc2626;
    animation-delay: 0.3s;
}

.green-dot {
    background: #16a34a;
    animation-delay: 0.6s;
}

.yellow-dot {
    background: #eab308;
    animation-delay: 0.9s;
}

/* ========================================
   RESPONSIVE - BLOG
======================================== */
@media (max-width: 768px) {
    .blog-hero {
        min-height: 300px;
        margin-top: 80px;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
        padding: var(--spacing-lg) var(--container-padding);
    }

    .retention-bars {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .story-labels {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }

    .story-label {
        flex: 1 1 45%;
        margin-bottom: var(--spacing-sm);
    }

    .timeline-step {
        flex-direction: column;
        text-align: center;
    }

    .timeline-icon {
        margin: 0 0 var(--spacing-sm) 0;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - MOBILE DESIGN 
======================================== */
/* Device Comparison Demo */
.device-comparison {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.device-mockup {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: deviceFloat 3s ease-in-out infinite;
}

.device-mockup:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #A80000;
}

.device-mockup:nth-child(1) {
    animation-delay: 0s;
}

.device-mockup:nth-child(2) {
    animation-delay: 0.5s;
}

.device-mockup:nth-child(3) {
    animation-delay: 1s;
}

.device-mockup:nth-child(4) {
    animation-delay: 1.5s;
}

.device-screen {
    background: #1f2937;
    border-radius: 8px;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.mobile-screen {
    height: 120px;
    width: 60px;
    margin: 0 auto;
}

.tablet-screen {
    height: 80px;
    width: 100px;
    margin: 0 auto;
}

.desktop-screen {
    height: 70px;
    width: 120px;
    margin: 0 auto;
}

.laptop-screen {
    height: 75px;
    width: 110px;
    margin: 0 auto;
}

.screen-content {
    background: linear-gradient(45deg, #A80000, #dc2626);
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    animation: screenGlow 2s ease-in-out infinite alternate;
}

.device-label {
    font-weight: 600;
    color: #1f2937;
    margin-top: 0.5rem;
}

.device-stat {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.25rem;
}

@keyframes deviceFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes screenGlow {
    0% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
    }
}

/* Mobile Usage Statistics */
.mobile-stats {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #fca5a5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.stat-card-mobile {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #fca5a5;
    position: relative;
    overflow: hidden;
}

.stat-card-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #A80000, #dc2626);
    animation: progressGrow 2s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.stat-number-mobile {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #A80000, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUpStat 2s ease-out forwards;
}

.stat-label-mobile {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Responsive Design Showcase */
.responsive-showcase {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #0ea5e9;
}

.responsive-demo {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 2px solid #e0f2fe;
}

.breakpoint-visualization {
    display: grid;
    grid-template-columns: 1fr 2fr 3fr;
    gap: 1rem;
    height: 80px;
    margin: 1rem 0;
}

.breakpoint {
    background: linear-gradient(45deg, #A80000, #dc2626);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
    animation: breakpointExpand 2s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.breakpoint:nth-child(1) {
    animation-delay: 0.2s;
}

.breakpoint:nth-child(2) {
    animation-delay: 0.5s;
}

.breakpoint:nth-child(3) {
    animation-delay: 0.8s;
}

/* Mobile SEO Impact */
.mobile-seo {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #22c55e;
}

.seo-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.seo-benefit {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    border: 2px solid #bbf7d0;
    text-align: center;
    animation: benefitSlideIn 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.seo-benefit:nth-child(1) {
    animation-delay: 0.2s;
}

.seo-benefit:nth-child(2) {
    animation-delay: 0.4s;
}

.seo-benefit:nth-child(3) {
    animation-delay: 0.6s;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto 1rem auto;
    animation: iconPulse 2s ease-in-out infinite;
}

.benefit-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Mobile UX Checklist */
.mobile-ux-checklist {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #f59e0b;
}

.ux-items {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.ux-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #A80000;
    animation: uxSlideIn 0.6s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.ux-item:nth-child(1) {
    animation-delay: 0.1s;
}

.ux-item:nth-child(2) {
    animation-delay: 0.2s;
}

.ux-item:nth-child(3) {
    animation-delay: 0.3s;
}

.ux-item:nth-child(4) {
    animation-delay: 0.4s;
}

.ux-item:nth-child(5) {
    animation-delay: 0.5s;
}

.ux-item:nth-child(6) {
    animation-delay: 0.6s;
}

.ux-check {
    width: 30px;
    height: 30px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.ux-content {
    flex: 1;
}

.ux-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.ux-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Touch-Friendly Elements Demo */
.touch-demo {
    background: linear-gradient(135deg, #f3e8ff 0%, #e879f9 10%, #f3e8ff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e879f9;
}

.touch-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.touch-element {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 2px solid #fce7f3;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: touchBounce 1.5s ease-in-out infinite;
}

.touch-element:hover {
    transform: scale(1.05);
    border-color: #A80000;
    box-shadow: 0 8px 15px rgba(168, 0, 0, 0.2);
}

.touch-element:nth-child(1) {
    animation-delay: 0s;
}

.touch-element:nth-child(2) {
    animation-delay: 0.3s;
}

.touch-element:nth-child(3) {
    animation-delay: 0.6s;
}

.touch-element:nth-child(4) {
    animation-delay: 0.9s;
}

.touch-size {
    font-weight: bold;
    color: #A80000;
    margin-bottom: 0.5rem;
}

.touch-label {
    font-size: 0.8rem;
    color: #64748b;
}

@keyframes progressGrow {
    to {
        transform: scaleX(1);
    }
}

@keyframes countUpStat {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes breakpointExpand {
    to {
        transform: scaleX(1);
    }
}

@keyframes benefitSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconPulse {

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

    50% {
        transform: scale(1.1);
    }
}

@keyframes uxSlideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes touchBounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }
}

@media (max-width: 768px) {

    .devices-grid,
    .stats-grid,
    .seo-benefits,
    .touch-examples {
        grid-template-columns: 1fr;
    }

    .breakpoint-visualization {
        grid-template-columns: 1fr;
        height: auto;
        gap: 0.5rem;
    }

    .breakpoint {
        height: 40px;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - INFLUENCER & FEEDBACK
======================================== */
.feedback-response-demo,
.influencer-trust-meter,
.engagement-impact {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.response-card {
    background: #fef2f2;
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
}

.meter-bar {
    height: 16px;
    background: #e5e7eb;
    border-radius: 99px;
    overflow: hidden;
    margin: var(--spacing-sm) 0;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(to right, var(--color-primary), #ff4d4d);
    transition: width 1s ease-in-out;
}

.trust-recovery-meter {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.impact-steps {
    margin-top: var(--spacing-md);
}

.impact-step {
    margin-bottom: var(--spacing-md);
}

.width-70 {
    width: 70%;
}

.width-100 {
    width: 100%;
}

.width-60 {
    width: 60%;
}

.width-40 {
    width: 40%;
}

.meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #A80000, #dc2626);
    border-radius: 99px;
}

.width-70 {
    width: 70%;
}

.width-10 {
    width: 10% !important;
}

.width-15 {
    width: 15% !important;
}

.width-25 {
    width: 25% !important;
}

.width-30 {
    width: 30% !important;
}

.width-34 {
    width: 34% !important;
}

.width-40 {
    width: 40% !important;
}

.width-60 {
    width: 60% !important;
}

.width-70 {
    width: 70% !important;
}

.width-75 {
    width: 75% !important;
}

.width-85 {
    width: 85% !important;
}

.width-88 {
    width: 88% !important;
}

.width-91 {
    width: 91% !important;
}

.width-92 {
    width: 92% !important;
}

.width-95 {
    width: 95% !important;
}

.width-98 {
    width: 98% !important;
}

.width-100 {
    width: 100% !important;
}

.width-200px {
    width: 200px !important;
}

.width-100px {
    width: 100px !important;
}

.width-80px {
    width: 80px !important;
}

/* ========================================
   UTILITY CLASSES
======================================== */
.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: var(--spacing-sm) !important;
}

.mt-2 {
    margin-top: var(--spacing-md) !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: var(--spacing-sm) !important;
}

.mb-2 {
    margin-bottom: var(--spacing-md) !important;
}

.ml-1 {
    margin-left: var(--spacing-sm) !important;
}

.mr-1 {
    margin-right: var(--spacing-sm) !important;
}

.mr-2 {
    margin-right: var(--spacing-md) !important;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

.text-sm {
    font-size: 0.875rem !important;
}

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

.text-xl {
    font-size: 1.25rem !important;
}

.text-2xl {
    font-size: 1.5rem !important;
}

.font-bold {
    font-weight: 700 !important;
}

.font-normal {
    font-weight: 400 !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.text-white {
    color: var(--color-white) !important;
}

.text-dark {
    color: var(--color-dark) !important;
}

.text-muted {
    color: var(--color-gray-light) !important;
}

.opacity-60 {
    opacity: 0.6 !important;
}

.opacity-80 {
    opacity: 0.8 !important;
}

.opacity-90 {
    opacity: 0.9 !important;
}

.display-block {
    display: block !important;
}

.justify-center {
    justify-content: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.justify-around {
    justify-content: space-around !important;
}

.align-center {
    align-items: center !important;
}

.align-start {
    align-items: flex-start !important;
}

.align-end {
    align-items: flex-end !important;
}

.centered-text {
    text-align: center !important;
}

.flex-container {
    display: flex;
    gap: var(--spacing-sm);
}

.impact-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.impact-step {
    margin-bottom: var(--spacing-md);
}

.reach-card {
    padding: var(--spacing-md);
    background: #f8fafc;
    border-radius: var(--radius-md);
    text-align: center;
}

.gradient-meter {
    background: linear-gradient(90deg, #A80000, #dc2626);
}

/* ========================================
   INTERACTIVE COMPONENTS - NEUROMARKETING
======================================== */
/* Brain activity visualization */
.brain-activity-demo {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.brain-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 2rem auto;
    perspective: 1000px;
}

.brain-outline {
    width: 100%;
    height: 100%;
    border: 3px solid #3b82f6;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    animation: brainPulse 3s ease-in-out infinite;
}

@keyframes brainPulse {

    0%,
    100% {
        transform: scale(1) rotateY(0deg);
        box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    50% {
        transform: scale(1.05) rotateY(10deg);
        box-shadow: 0 0 40px rgba(59, 130, 246, 0.6);
    }
}

.neural-activity {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: neuralFire 2s ease-in-out infinite;
}

.neural-activity:nth-child(1) {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.neural-activity:nth-child(2) {
    top: 40%;
    left: 60%;
    animation-delay: 0.3s;
}

.neural-activity:nth-child(3) {
    top: 60%;
    left: 20%;
    animation-delay: 0.6s;
}

.neural-activity:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 0.9s;
}

.neural-activity:nth-child(5) {
    top: 70%;
    left: 50%;
    animation-delay: 1.2s;
}

@keyframes neuralFire {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
        background: #10b981;
    }

    50% {
        transform: scale(2);
        opacity: 1;
        background: #f59e0b;
    }
}

/* EEG Wave Visualization */
.eeg-waves {
    height: 100px;
    background: #000;
    border-radius: 10px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.wave-line {
    position: absolute;
    height: 2px;
    background: #10b981;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    animation: eegWave 3s linear infinite;
}

.wave-line:nth-child(1) {
    background: #3b82f6;
    animation-delay: 0s;
}

.wave-line:nth-child(2) {
    background: #f59e0b;
    animation-delay: 0.5s;
    top: 30%;
}

.wave-line:nth-child(3) {
    background: #ef4444;
    animation-delay: 1s;
    top: 70%;
}

@keyframes eegWave {
    0% {
        clip-path: polygon(0 50%, 10% 30%, 20% 70%, 30% 40%, 40% 60%, 50% 20%, 60% 80%, 70% 45%, 80% 65%, 90% 35%, 100% 50%);
        transform: translateX(-100%);
    }

    100% {
        clip-path: polygon(0 50%, 10% 30%, 20% 70%, 30% 40%, 40% 60%, 50% 20%, 60% 80%, 70% 45%, 80% 65%, 90% 35%, 100% 50%);
        transform: translateX(100%);
    }
}

/* Eye tracking heatmap */
.eye-tracking-demo {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
}

.heatmap-container {
    position: relative;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect width="400" height="300" fill="%23f8fafc"/><rect x="50" y="50" width="300" height="40" fill="%23e2e8f0"/><rect x="50" y="110" width="200" height="20" fill="%23e2e8f0"/><rect x="50" y="150" width="250" height="20" fill="%23e2e8f0"/><rect x="280" y="200" width="100" height="60" fill="%23A80000"/></svg>') no-repeat center;
    background-size: cover;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.heat-point {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.8) 0%, rgba(239, 68, 68, 0.3) 50%, transparent 100%);
    animation: heatPulse 2s ease-in-out infinite;
    pointer-events: none;
}

.heat-point:nth-child(1) {
    top: 20%;
    left: 60%;
    animation-delay: 0s;
}

.heat-point:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 0.7s;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.8) 0%, rgba(245, 158, 11, 0.3) 50%, transparent 100%);
}

.heat-point:nth-child(3) {
    top: 40%;
    left: 30%;
    animation-delay: 1.4s;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.6) 0%, rgba(16, 185, 129, 0.2) 50%, transparent 100%);
}

@keyframes heatPulse {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Neuro insights grid */
.neuro-insights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.insight-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6 0%, #10b981 100%);
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.brain-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    animation: brainThink 4s ease-in-out infinite;
}

@keyframes brainThink {

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

    25% {
        transform: scale(1.1) rotate(2deg);
    }

    75% {
        transform: scale(0.95) rotate(-2deg);
    }
}

.insight-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.insight-stat {
    font-size: 2rem;
    font-weight: 700;
    color: #A80000;
    margin-bottom: 0.5rem;
}

/* Neuromarketing Demo Styles */
.neuromarketing-demo {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.neuromarketing-demo h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: #A80000;
    margin-bottom: 1.5rem;
}

.neuromarketing-demo .stat {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.neuromarketing-demo .label {
    font-size: 0.875rem;
    color: #6b7280;
}

.neuromarketing-demo .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.neuromarketing-demo .card {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.neuromarketing-demo .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/* ========================================
   INTERACTIVE COMPONENTS - PRICING PSYCHOLOGY
======================================== */
/* Price comparison interactive demo */
.price-comparison-demo {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.price-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.price-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.price-card:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: #f59e0b;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.price-display {
    font-size: 3rem;
    font-weight: bold;
    margin: 1rem 0;
    animation: priceFloat 3s ease-in-out infinite;
}

@keyframes priceFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

.anchoring-demo {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.anchor-sequence {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    gap: 1rem;
}

.anchor-price {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}

.anchor-target {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    animation: targetPulse 2s ease-in-out infinite;
}

@keyframes targetPulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - PSYCHOLOGY OF INFLUENCE
======================================== */
/* Influence technique demonstrations */
.influence-demo {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.influence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.technique-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.technique-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.technique-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    animation: techniqueFloat 3s ease-in-out infinite;
}

@keyframes techniqueFloat {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Reciprocity demonstration */
.reciprocity-demo {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    transition: all 0.3s ease;
}

.reciprocity-demo:hover {
    border-color: #7c3aed;
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

.gift-animation {
    text-align: center;
    margin: 2rem 0;
}

.gift-box {
    display: inline-block;
    font-size: 3rem;
    animation: giftBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes giftBounce {

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

    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* Social proof visualization */
.social-proof-demo {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
}

.crowd-animation {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.person-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: crowdWave 3s ease-in-out infinite;
}

.person-icon:nth-child(odd) {
    animation-delay: 0.2s;
}

.person-icon:nth-child(even) {
    animation-delay: 0.4s;
}

@keyframes crowdWave {

    0%,
    100% {
        transform: scale(1);
        background: rgba(255, 255, 255, 0.3);
    }

    50% {
        transform: scale(1.2);
        background: rgba(255, 255, 255, 0.6);
    }
}

/* Authority demonstration */
.authority-demo {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.authority-badge {
    width: 80px;
    height: 80px;
    border: 3px solid #A80000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(168, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(168, 0, 0, 0.8);
    }
}

/* Scarcity timer */
.scarcity-demo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.countdown-timer {
    font-size: 2rem;
    font-weight: bold;
    margin: 1rem 0;
    animation: timerBlink 1s ease-in-out infinite;
}

@keyframes timerBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.urgency-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    overflow: hidden;
    margin: 1rem 0;
}

.urgency-fill {
    height: 100%;
    background: #ffffff;
    animation: urgencyDecrease 10s linear infinite;
}

@keyframes urgencyDecrease {
    0% {
        width: 100%;
    }

    100% {
        width: 20%;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - SOCIAL ROI
======================================== */
.roi-calculator-demo {
    background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.roi-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.metric-value {
    font-size: 2rem;
    font-weight: bold;
    margin: 0.5rem 0;
    animation: countUp 3s ease-out infinite;
}

@keyframes countUp {
    0% {
        transform: scale(0.8);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

.roi-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-left: 4px solid #A80000;
    border-radius: 12px;
    margin: 2rem 0;
}

/* Local Marketing Services & Features */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card .service-icon {
    font-size: 3rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.local-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-item {
    text-align: center;
}

.feature-item .icon-circle {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    color: var(--color-primary);
    font-size: 1.5rem;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.industry-card {
    background: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: border-color var(--transition-base);
}

.industry-card:hover {
    border-color: var(--color-primary);
}

.industry-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.industry-card i {
    color: var(--color-primary);
}

/* ========================================
   INTERACTIVE COMPONENTS - UX CONVERSION
======================================== */
/* UX Journey visualization */
.ux-journey-demo {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.journey-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.journey-step:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {

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

    50% {
        transform: scale(1.1);
    }
}

/* Conversion funnel demo */
.conversion-funnel {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.funnel-stage {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    border-radius: 12px;
    background: linear-gradient(90deg, #e5e7eb 0%, #f3f4f6 100%);
    transition: all 0.3s ease;
}

.funnel-stage:hover {
    background: linear-gradient(90deg, #dbeafe 0%, #bfdbfe 100%);
    transform: translateX(8px);
}

.funnel-bar {
    height: 20px;
    background: linear-gradient(90deg, #3b82f6 0%, #1e40af 100%);
    border-radius: 10px;
    margin-right: 1rem;
    transition: width 2s ease;
}

.friction-demo {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin: 2rem 0;
    text-align: center;
}

.friction-slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.friction-indicator {
    height: 100%;
    background: #ffffff;
    border-radius: 4px;
    animation: frictionIncrease 5s ease-in-out infinite;
}

@keyframes frictionIncrease {
    0% {
        width: 20%;
    }

    50% {
        width: 80%;
    }

    100% {
        width: 20%;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - WEBSITE CREDIBILITY
======================================== */
/* First Impression Timer */
.impression-timer {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #fca5a5;
    text-align: center;
}

.timer-display {
    font-size: 4rem;
    font-weight: bold;
    color: #A80000;
    margin: 1rem 0;
    font-family: 'Courier New', monospace;
    animation: timerCountdown 5s ease-in-out infinite;
}

.timer-label {
    font-size: 1.2rem;
    color: #7f1d1d;
    margin: 0.5rem 0;
}

@keyframes timerCountdown {

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

    50% {
        transform: scale(1.1);
        color: #dc2626;
    }
}

/* Credibility Factors Grid */
.credibility-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.factor-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.factor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #A80000;
}

.factor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #A80000, #dc2626);
    animation: growProgress 2s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.factor-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #A80000, #dc2626);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
    animation: bounceIcon 1s ease-out forwards;
}

.factor-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    text-align: center;
}

.factor-description {
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
}

/* Trust vs Distrust Comparison */
.trust-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.trust-column {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
}

.trust-positive {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}

.trust-negative {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.trust-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
}

.positive-icon {
    background: #22c55e;
}

.negative-icon {
    background: #ef4444;
}

.trust-title {
    font-weight: 600;
    color: #1f2937;
}

.trust-list {
    list-style: none;
    padding: 0;
}

.trust-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.trust-list li:last-child {
    border-bottom: none;
}

/* Design Impact Metrics */
.design-impact {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.impact-metric {
    text-align: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border: 2px solid #f1f5f9;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #A80000, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 3s ease-out forwards;
}

.impact-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Redesign Before/After Simulation */
.redesign-demo {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #f59e0b;
}

.demo-toggle {
    text-align: center;
    margin-bottom: 1.5rem;
}

.toggle-btn {
    background: #A80000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.demo-example {
    padding: 1rem;
    border-radius: 8px;
    border: 2px solid;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.demo-before {
    background: #fee2e2;
    border-color: #ef4444;
}

.demo-after {
    background: #dcfce7;
    border-color: #22c55e;
}

.demo-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.demo-features {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.demo-features li {
    margin: 0.5rem 0;
}

/* Credibility Score Visualization */
.credibility-score {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #0ea5e9;
    text-align: center;
}

.score-display {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem auto;
}

.score-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(#A80000 0deg, #A80000 270deg, #e5e7eb 270deg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotateScore 2s ease-out forwards;
}

.score-inner {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.score-number {
    font-size: 2rem;
    font-weight: bold;
    color: #A80000;
}

.score-label {
    font-size: 0.8rem;
    color: #64748b;
    text-transform: uppercase;
}

@keyframes bounceIcon {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

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

@keyframes growProgress {
    to {
        transform: scaleX(1);
    }
}

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

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

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Credibility Components */
@media (max-width: 768px) {

    .trust-comparison,
    .demo-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .credibility-factors,
    .impact-metrics {
        grid-template-columns: 1fr;
    }

    .timer-display {
        font-size: 2.5rem;
    }

    .score-display {
        width: 150px;
        height: 150px;
    }

    .score-inner {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - SPEED PERFORMANCE
======================================== */
/* Speed Test Simulation */
.speed-test-demo {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #fca5a5;
    text-align: center;
}

.speed-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 1.5rem 0;
}

.speed-example {
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid;
    position: relative;
    overflow: hidden;
}

.fast-site {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-color: #22c55e;
}

.slow-site {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border-color: #ef4444;
}

.loading-bar {
    width: 100%;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    border-radius: inherit;
    animation-fill-mode: forwards;
}

.fast-loading {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    animation: fastLoad 1.5s ease-out forwards;
}

.slow-loading {
    background: linear-gradient(45deg, #ef4444, #dc2626);
    animation: slowLoad 8s ease-out forwards;
}

.load-time {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.fast-time {
    color: #22c55e;
}

.slow-time {
    color: #ef4444;
}

@keyframes fastLoad {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@keyframes slowLoad {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Performance Impact Metrics */
.performance-impact {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.impact-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #f1f5f9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-4px);
    border-color: #A80000;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, #A80000, #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out forwards;
}

.impact-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Speed Optimization Checklist */
.optimization-checklist {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #0ea5e9;
}

.checklist-items {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #A80000;
    animation: slideInCheck 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-20px);
}

.checklist-item:nth-child(1) {
    animation-delay: 0.2s;
}

.checklist-item:nth-child(2) {
    animation-delay: 0.4s;
}

.checklist-item:nth-child(3) {
    animation-delay: 0.6s;
}

.checklist-item:nth-child(4) {
    animation-delay: 0.8s;
}

.checklist-item:nth-child(5) {
    animation-delay: 1.0s;
}

.check-icon {
    width: 30px;
    height: 30px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.check-content {
    flex: 1;
}

.check-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.check-description {
    font-size: 0.9rem;
    color: #64748b;
}

/* Speed vs Revenue Correlation */
.speed-revenue {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #f59e0b;
}

.revenue-chart {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    align-items: end;
}

.revenue-bar {
    background: white;
    border-radius: 8px 8px 0 0;
    padding: 0.5rem;
    text-align: center;
    border: 2px solid #f59e0b;
    position: relative;
    animation: growRevenue 2s ease-out forwards;
    transform: scaleY(0);
    transform-origin: bottom;
}

.revenue-bar:nth-child(1) {
    height: 100px;
    animation-delay: 0.2s;
}

.revenue-bar:nth-child(2) {
    height: 80px;
    animation-delay: 0.4s;
}

.revenue-bar:nth-child(3) {
    height: 60px;
    animation-delay: 0.6s;
}

.revenue-bar:nth-child(4) {
    height: 40px;
    animation-delay: 0.8s;
}

.revenue-bar:nth-child(5) {
    height: 20px;
    animation-delay: 1.0s;
}

.bar-value {
    font-weight: bold;
    color: #A80000;
    font-size: 0.9rem;
}

.bar-label {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.5rem;
}

/* Mobile Speed Impact */
.mobile-speed {
    background: linear-gradient(135deg, #f3e8ff 0%, #e879f9 10%, #f3e8ff 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e879f9;
}

.mobile-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.mobile-stat {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #fce7f3;
}

.mobile-percentage {
    font-size: 3rem;
    font-weight: bold;
    color: #A80000;
    margin-bottom: 0.5rem;
    animation: flipIn 1.5s ease-out forwards;
}

.mobile-description {
    color: #64748b;
    font-size: 0.9rem;
}

@keyframes slideInCheck {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes growRevenue {
    to {
        transform: scaleY(1);
    }
}

@keyframes flipIn {
    0% {
        transform: rotateY(90deg);
        opacity: 0;
    }

    50% {
        transform: rotateY(-10deg);
    }

    100% {
        transform: rotateY(0deg);
        opacity: 1;
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness for Speed Components */
@media (max-width: 768px) {
    .speed-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .impact-grid,
    .mobile-stats,
    .revenue-chart {
        grid-template-columns: 1fr;
    }

    .revenue-chart {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ========================================
   INTERACTIVE COMPONENTS - BRAND AUTHENTICITY
======================================== */
/* Authenticity Trust Meter */
.trust-meter-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    border: 1px solid #e2e8f0;
}

.trust-meter {
    background: #e5e7eb;
    border-radius: 999px;
    height: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.trust-fill {
    background: linear-gradient(90deg, #A80000 0%, #FFD700 100%);
    height: 100%;
    width: 0%;
    border-radius: 999px;
    animation: fillTrust 4s ease-out forwards;
}

.trust-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@keyframes fillTrust {
    0% {
        width: 10%;
    }

    100% {
        width: 100%;
    }
}

/* Heritage Values Cards */
.heritage-values-demo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.value-card {
    background: white;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #A80000;
}

.heritage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    color: #A80000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.value-title {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-description {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.authenticity-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: #f0fdf4;
    color: #166534;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

/* Transparency Layers Demo */
.transparency-demo {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.transparency-layers {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.layer {
    flex: 1;
    min-width: 200px;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.layer:hover {
    background: #A80000;
    color: white;
    transform: scale(1.05);
}

.layer:hover h4,
.layer:hover p,
.layer:hover .layer-icon {
    color: white;
}

.layer-icon {
    font-size: 2rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

/* Brand Authenticity Examples */
.brand-authenticity-examples {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.brand-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.authenticity-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-bar {
    flex-grow: 1;
    height: 8px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    border-radius: 4px;
}

.score-high {
    background: #22c55e;
}

.score-medium {
    background: #f59e0b;
}

.score-low {
    background: #ef4444;
}

.width-92 {
    width: 92%;
}

.width-88 {
    width: 88%;
}

.width-85 {
    width: 85%;
}

.width-34 {
    width: 34%;
}

/* Authenticity Trust Meter (Bottom) */
.authenticity-trust-meter {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.cta-heading {
    font-size: 1.5rem;
    color: #A80000;
    margin-bottom: 1.5rem;
    text-align: center;
}

.meter-bar {
    background: #e5e7eb;
    border-radius: 9999px;
    height: 1rem;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.meter-fill {
    background: linear-gradient(to right, #A80000, #FFD700);
    height: 100%;
    border-radius: 9999px;
    width: 0%;
    animation: fillMeter 2s ease-out forwards;
}

@keyframes fillMeter {
    to {
        width: 92%;
    }
}

.roi-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #A80000;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
}

.centered-text {
    text-align: center;
}

.highlighted-text {
    display: block;
    font-weight: 700;
    color: #1f2937;
}

.small-text {
    font-size: 0.875rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .brand-card {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .authenticity-score {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
}

/* Eye Tracking Legend */
.heatmap-legend {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 50%;
}

.high-attention {
    background: radial-gradient(circle, #ef4444 0%, transparent 70%);
}

.medium-focus {
    background: radial-gradient(circle, #f59e0b 0%, transparent 70%);
}

.brief-glance {
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
}

/* Storytelling Impact Demo */
.storytelling-impact-demo {
    background: #ffffff;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.storytelling-impact-demo .flex-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.storytelling-impact-demo .highlighted-text {
    font-size: 1.2rem;
    display: block;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.storytelling-impact-demo .retention-bars {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.storytelling-impact-demo .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* Video Marketing Specific */
.video-engagement-timeline {
    background: #ffffff;
    padding: 1.5rem;
    margin: 2.5rem 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.video-neuro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.video-neuro-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid transparent;
}

.video-neuro-card h3 {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.card-red {
    background: #fef2f2;
    border-color: #fee2e2;
}

.card-red h3 {
    color: #A80000;
}

.card-blue {
    background: #f0f9ff;
    border-color: #e1f5fe;
}

.card-blue h3 {
    color: #0ea5e9;
}

.card-indigo {
    background: #f3f4fe;
    border-color: #e5e7ff;
}

.card-indigo h3 {
    color: #4f46e5;
}

/* Content Marketing ROI */
.content-roi-demo {
    background: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.roi-card {
    margin: 0;
    text-align: center;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.roi-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

/* Content Funnel */
.content-funnel {
    background: #f9fafb;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
}

.funnel-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.funnel-step {
    width: 100%;
}

.step-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.step-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark);
}

.step-value {
    font-size: 0.85rem;
    color: var(--color-gray-dark);
}

.step-bar {
    background: #e5e7eb;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
}

.step-fill {
    height: 100%;
    border-radius: 6px;
    animation: fillSlide 1.5s ease-out forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes fillSlide {
    to {
        transform: scaleX(1);
    }
}

.fill-red {
    background: linear-gradient(90deg, #A80000, #dc2626);
}

.fill-orange {
    background: linear-gradient(90deg, #dc2626, #ea580c);
}

.fill-yellow {
    background: linear-gradient(90deg, #ea580c, #ca8a04);
}

.fill-green {
    background: linear-gradient(90deg, #ca8a04, #16a34a);
}

/* Brand Recognition Demo */
.brand-recognition-demo {
    background: #ffffff;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.brand-recognition-demo .logo-comparison {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: center;
}

.brand-recognition-demo .brand-logo-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    padding: 4px;
    margin: 0 auto 0.5rem auto;
}

.brand-recognition-demo .unknown-logo-circle {
    width: 64px;
    height: 64px;
    background: #f3f4f6;
    border-radius: 50%;
    border: 2px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    color: #9ca3af;
    font-size: 1.5rem;
}

.brand-recognition-demo .brand-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.brand-recognition-demo .brand-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
}

.brand-recognition-demo .card-primary {
    background: var(--color-primary);
    color: white;
}

.brand-recognition-demo .card-light {
    background: #f3f4f6;
    color: var(--color-dark);
}

.brand-recognition-demo .brand-card .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

/* Email Marketing Components */
.email-roi-demo {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.email-roi-demo h3 {
    color: white !important;
    margin-top: 0;
}

.email-roi-demo .roi-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.email-roi-demo .channel-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform var(--transition-base);
}

.email-roi-demo .channel-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.email-roi-demo .channel-card.highlight {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
    border-color: rgba(74, 222, 128, 0.3);
}

.email-roi-demo .roi-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0.5rem 0;
}

.email-roi-demo .roi-value.green {
    color: #4ade80;
}

.email-roi-demo .roi-value.yellow {
    color: #fbbf24;
}

.email-roi-demo .roi-value.red {
    color: #f87171;
}

.email-funnel {
    margin: 2.5rem 0;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.email-funnel .funnel-step {
    margin-bottom: 1.5rem;
}

.email-funnel .step-bar-container {
    background: #e2e8f0;
    height: 12px;
    border-radius: 6px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.email-funnel .step-bar {
    height: 100%;
    border-radius: 6px;
    transition: width 1.5s ease-out;
}

.engagement-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.engagement-metrics .stat-card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid transparent;
}

.engagement-metrics .stat-number {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.metrics-blue {
    background: #eff6ff;
    border-color: #dbeafe;
    color: #1e40af;
}

.metrics-green {
    background: #f0fdf4;
    border-color: #dcfce7;
    color: #15803d;
}

.metrics-yellow {
    background: #fefce8;
    border-color: #fef08a;
    color: #854d0e;
}

.metrics-red {
    background: #fef2f2;
    border-color: #fee2e2;
    color: #991b1b;
}