/* ========================================
   AI Service Page Styles
   噴射機先生 - AI 內容生成服務
   ======================================== */

/* Smooth Scroll for Anchor Links */
html {
    scroll-behavior: smooth;
}

/* Hero Section with Animated Background */
.ai-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000000;
}

.ai-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.ai-hero__gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 247, 218, 0.15), transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(155, 149, 197, 0.15), transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(0, 247, 218, 0.1), transparent 50%);
    animation: gradientShift 20s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -10px) rotate(120deg); }
    66% { transform: translate(10px, -10px) rotate(240deg); }
}

.ai-hero__particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #00F7DA, transparent),
        radial-gradient(2px 2px at 60% 70%, #9B95C5, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent);
    background-size: 50vw 50vh;
    animation: particlesFloat 40s linear infinite;
}

@keyframes particlesFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-100vh); }
}

.ai-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 0;
}

.ai-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 247, 218, 0.1);
    border: 1px solid rgba(0, 247, 218, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: #00F7DA;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.ai-hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.gradient-text {
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-hero__subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: #B8B8B8;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.ai-hero__subtitle .highlight {
    color: #00F7DA;
    font-weight: 700;
}

.ai-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Target Audience Section
   ======================================== */
.target-audience {
    background: linear-gradient(180deg, #000000 0%, #0a0e12 100%);
    position: relative;
    overflow: hidden;
}

.target-audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 247, 218, 0.3), transparent);
}

.ta-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ta-subtitle {
    font-size: 1.25rem;
    color: #B8B8B8;
    margin-top: 1rem;
    line-height: 1.6;
}

.ta-journey {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.ta-card {
    background: linear-gradient(135deg, rgba(26, 30, 36, 0.9), rgba(20, 24, 30, 0.9));
    border: 1px solid rgba(155, 149, 197, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.ta-card:hover {
    transform: translateY(-5px);
    border-color: rgba(155, 149, 197, 0.4);
    box-shadow: 0 10px 40px rgba(0, 247, 218, 0.1);
}

.ta-card.current {
    border-color: rgba(255, 87, 87, 0.3);
}

.ta-card.current:hover {
    border-color: rgba(255, 87, 87, 0.5);
    box-shadow: 0 10px 40px rgba(255, 87, 87, 0.15);
}

.ta-card.goal {
    border-color: rgba(0, 247, 218, 0.3);
}

.ta-card.goal:hover {
    border-color: rgba(0, 247, 218, 0.5);
    box-shadow: 0 10px 40px rgba(0, 247, 218, 0.15);
}

.ta-card__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.1), rgba(155, 149, 197, 0.1));
    border: 2px solid rgba(0, 247, 218, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #00F7DA;
}

.ta-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-align: center;
}

.ta-card__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ta-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 247, 218, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 218, 0.1);
}

.ta-point i {
    font-size: 1.25rem;
    color: #00F7DA;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ta-point.pain {
    background: rgba(255, 87, 87, 0.05);
    border-color: rgba(255, 87, 87, 0.2);
}

.ta-point.pain i {
    color: #FF5757;
}

.ta-point span {
    color: #E0E0E0;
    font-size: 1rem;
    line-height: 1.5;
}

.ta-goal {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(0, 247, 218, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 218, 0.1);
    margin-bottom: 1rem;
}

.ta-goal:last-child {
    margin-bottom: 0;
}

.ta-goal i {
    font-size: 1.5rem;
    color: #00F7DA;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ta-goal div {
    flex: 1;
}

.ta-goal strong {
    display: block;
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 0.25rem;
}

.ta-goal p {
    color: #B8B8B8;
    font-size: 0.95rem;
    margin: 0;
}

.ta-cta {
    text-align: center;
}

.ta-cta__text {
    position: relative;
    display: inline-block;
    font-size: 1.25rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.2), rgba(155, 149, 197, 0.2));
    border: 2px solid rgba(0, 247, 218, 0.4);
    border-radius: 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ta-cta__text::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(35, 40, 48, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.ta-cta__text:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 247, 218, 0.2);
    border-color: rgba(0, 247, 218, 0.6);
}

.ta-cta__text i {
    color: #00F7DA;
    margin-right: 0.75rem;
    font-size: 1.3rem;
}

/* Responsive Design for Target Audience Section */
@media (max-width: 968px) {
    .ta-journey {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ta-journey .transformation-arrow {
        transform: rotate(90deg);
        margin: 2rem 0;
    }
}

@media (max-width: 768px) {
    .ta-card {
        padding: 2rem 1.5rem;
    }

    .ta-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .ta-card__title {
        font-size: 1.25rem;
    }

    .ta-subtitle {
        font-size: 1.1rem;
    }
}

/* Pain Points Section */
.pain-points {
    background: linear-gradient(180deg, #0a0e12 0%, #1a1e24 100%);
    position: relative;
    overflow: hidden;
}

.pain-points::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 87, 0.3), transparent);
}

.pain-points__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

/* Pain Card with Image */
.pain-card {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 87, 87, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.pain-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 87, 87, 0.5);
    box-shadow: 0 20px 50px rgba(255, 87, 87, 0.2);
}

.pain-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.pain-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.pain-card:hover .pain-card__image img {
    transform: scale(1.1);
}

.pain-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(255, 87, 87, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pain-card__overlay i {
    font-size: 3rem;
    color: #ffffff;
    opacity: 0.9;
}

.pain-card__content {
    padding: 1.5rem;
    background: #1a1a1a;
}

.pain-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.pain-card__stat {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #FF5757, #FF8A80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-points__cta {
    margin-top: 4rem;
    text-align: center;
}

.cta-text {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.2), rgba(155, 149, 197, 0.2));
    border: 2px solid rgba(0, 247, 218, 0.4);
    border-radius: 30px;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-text::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(35, 40, 48, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.cta-text:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 247, 218, 0.2);
    border-color: rgba(0, 247, 218, 0.6);
}

.cta-text i {
    font-size: 1.5rem;
    color: #00F7DA;
}


/* Solution Showcase */
.solution-showcase {
    background: #000000;
}

.transformation-box {
    background: #0a0e12;
    border-radius: 24px;
    padding: 3rem;
    margin-top: 3rem;
    border: 1px solid rgba(0, 247, 218, 0.1);
}

.transformation-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
}

@media (max-width: 992px) {
    .transformation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .transformation-arrow {
        transform: rotate(90deg);
        margin: 2rem 0;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deliverables-title {
        font-size: 1.5rem;
        flex-direction: column;
    }

    .deliverable-preview {
        aspect-ratio: 16 / 9;
        padding: 0.5rem;
    }

    .deliverable-window__content {
        align-items: center;
    }

    .folder-title {
        font-size: 1.3rem;
    }
}

.transformation-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #B8B8B8;
    text-align: center;
}

.transformation-title.success {
    color: #00F7DA;
}

.transformation-card {
    background: #293038;
    border-radius: 16px;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.transformation-card.success {
    border-color: rgba(0, 247, 218, 0.3);
    box-shadow: 0 0 30px rgba(0, 247, 218, 0.1);
}

.transformation-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.transformation-desc {
    text-align: center;
    color: #B8B8B8;
    font-size: 0.95rem;
}

.transformation-arrow {
    text-align: center;
}

.arrow-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000000;
    animation: arrowPulse 2s infinite;
}

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

/* Folder Preview Window */
.folder-preview-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 247, 218, 0.2);
}

.folder-preview-window .preview-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 247, 218, 0.1);
}

.folder-preview-window .preview-content.folder-content {
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.03), rgba(155, 149, 197, 0.03));
    padding: 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.folder-icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 3rem;
}

/* 文件夾說明文字區 */
.folder-description-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.05), rgba(155, 149, 197, 0.05));
    border-radius: 0 0 12px 12px;
    margin-top: -12px;
}

.folder-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.folder-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.folder-description {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

/* Deliverables Showcase */
.deliverables-showcase {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 2px solid rgba(0, 247, 218, 0.1);
}

.deliverables-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.deliverables-title i {
    color: var(--primary-color);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.deliverable-item {
    background: #1a1a1a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 247, 218, 0.1);
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.deliverable-item:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 247, 218, 0.4);
    box-shadow: 0 15px 40px rgba(0, 247, 218, 0.2);
}

.deliverable-preview {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Deliverable Window (Browser Frame) */
.deliverable-window {
    width: 100%;
    height: 100%;
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.deliverable-window__header {
    background: #2a2a2a;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #3a3a3a;
}

.deliverable-window__dots {
    display: flex;
    gap: 6px;
}

.deliverable-window__dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.deliverable-window__title {
    flex: 1;
    text-align: center;
    color: #8a8a8a;
    font-size: 0.75rem;
}

.deliverable-window__content {
    flex: 1;
    background: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.deliverable-window__content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: top;
    transition: transform 0.3s ease;
}

.deliverable-item:hover .deliverable-window__content img {
    transform: scale(1.05);
}

.deliverable-info {
    padding: 1.5rem;
    text-align: center;
}

.deliverable-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: #000;
}

.deliverable-icon--instagram {
    background: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
}

.deliverable-icon--email {
    background: linear-gradient(135deg, #00F7DA, #4CAF50);
}

.deliverable-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* Key Benefits */
.key-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    padding: 2rem 2rem 3rem;
    background: rgba(0, 247, 218, 0.05);
    border-radius: 16px;
}

/* 對話泡泡樣式 */
.benefit-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, rgba(41, 48, 56, 0.95), rgba(35, 40, 48, 0.95));
    border: 2px solid rgba(0, 247, 218, 0.2);
    border-radius: 30px;
    color: #E0E0E0;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

/* 對話泡泡三角形指標 */
.benefit-item::before {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid rgba(35, 40, 48, 0.95);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* 對話泡泡三角形邊框 */
.benefit-item::after {
    content: '';
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid rgba(0, 247, 218, 0.2);
    z-index: -1;
}

.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 247, 218, 0.4);
    box-shadow: 0 12px 32px rgba(0, 247, 218, 0.2);
}

.benefit-item i {
    color: #00F7DA;
    font-size: 1.25rem;
}

/* 高亮對話泡泡（最後一個） */
.benefit-item--highlight {
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.25), rgba(155, 149, 197, 0.25));
    border: 2px solid rgba(0, 247, 218, 0.5);
    color: #FFFFFF;
    font-weight: 600;
}

.benefit-item--highlight::before {
    border-top-color: rgba(155, 149, 197, 0.25);
}

.benefit-item--highlight::after {
    border-top-color: rgba(0, 247, 218, 0.5);
}

.benefit-item--highlight i {
    color: #FFD700;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px #FFD700);
    }
    50% {
        transform: scale(1.2);
        filter: drop-shadow(0 0 8px #FFD700);
    }
}

/* ========================================
   Platforms Section - Compact
   ======================================== */
.platforms {
    background: linear-gradient(180deg, #0a0e12 0%, #000000 100%);
    padding: 3rem 0;
}

/* Compact Platforms Container */
.platforms-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Platform Badge */
.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(26, 30, 36, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #B8B8B8;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.platform-badge i {
    font-size: 1.1rem;
}

/* Active Platform Badge */
.platform-badge--active {
    background: rgba(0, 247, 218, 0.1);
    border-color: rgba(0, 247, 218, 0.3);
    color: #00F7DA;
}

.platform-badge--active:hover {
    background: rgba(0, 247, 218, 0.15);
    border-color: rgba(0, 247, 218, 0.5);
}

/* Soon Platform Badge */
.platform-badge--soon {
    opacity: 0.5;
}

.platform-badge--soon small {
    display: block;
    font-size: 0.7rem;
    color: #8A8A8A;
    margin-top: 0.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Pain Points Responsive */
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pain-card__title {
        font-size: 1rem;
    }

    .pain-card__stat {
        font-size: 1.2rem;
    }

    .pain-card__overlay i {
        font-size: 2.5rem;
    }

    .platforms-compact {
        gap: 0.5rem;
    }

    .platform-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .platform-badge i {
        font-size: 1rem;
    }

    /* 對話泡泡響應式 */
    .key-benefits {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 1rem 2.5rem;
        align-items: stretch;
    }

    .benefit-item {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        width: 85%;
    }

    .benefit-item i {
        font-size: 1.1rem;
    }

    /* 交錯排列：第1, 3個靠左 */
    .benefit-item:nth-child(odd) {
        align-self: flex-start;
    }

    /* 第1, 3個三角形靠左 */
    .benefit-item:nth-child(odd)::before {
        left: 20%;
        transform: translateX(0);
    }

    .benefit-item:nth-child(odd)::after {
        left: 20%;
        transform: translateX(0);
    }

    /* 交錯排列：第2, 4個靠右 */
    .benefit-item:nth-child(even) {
        align-self: flex-end;
    }

    /* 第2, 4個三角形靠右 */
    .benefit-item:nth-child(even)::before {
        left: 80%;
        transform: translateX(0);
    }

    .benefit-item:nth-child(even)::after {
        left: 80%;
        transform: translateX(0);
    }
}


/* Stats Section */
.stats {
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.05), rgba(155, 149, 197, 0.05));
    padding: 4rem 0;
}

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

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #B8B8B8;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    background: #0a0e12;
}

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

.pricing-card {
    background: #293038;
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 247, 218, 0.3);
}

.pricing-card.featured {
    border-color: rgba(0, 247, 218, 0.5);
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.05), rgba(155, 149, 197, 0.05));
}

.pricing-card.special {
    border-color: rgba(255, 193, 7, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    color: #000000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-badge.special {
    background: linear-gradient(135deg, #FFC107, #FF5722);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.pricing-price .currency {
    font-size: 1.2rem;
    color: #B8B8B8;
}

.pricing-price .amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00F7DA;
}

.pricing-price .period {
    font-size: 1rem;
    color: #B8B8B8;
}

.pricing-note {
    color: #FFC107;
    font-size: 0.9rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: #B8B8B8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pricing-features li i {
    color: #00F7DA;
    font-size: 0.9rem;
}

.pricing-features li i.fa-gift {
    color: #FFC107;
}

/* Process Timeline */
.process {
    background: #000000;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .process-line {
        width: 2px !important;
        height: 60px !important;
        margin: 0 !important;
    }
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    font-weight: 900;
    color: #000000;
    position: relative;
    z-index: 2;
}

.process-line {
    flex: 0.5;
    height: 2px;
    background: linear-gradient(90deg, #00F7DA, #9B95C5);
    margin: 0 -20px;
    align-self: flex-start;
    margin-top: 40px;
}

.process-content h4 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: #B8B8B8;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq {
    background: #000000;
}

.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #293038;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(0, 247, 218, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(0, 247, 218, 0.05);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00F7DA;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    color: #B8B8B8;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 0 1.5rem 1.5rem;
    max-height: 300px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.1), rgba(155, 149, 197, 0.1));
    padding: 6rem 0;
}

.cta-box {
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #B8B8B8;
    margin-bottom: 2rem;
}

.cta-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: #FFC107;
    font-weight: 600;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.btn-huge {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
}

.cta-note {
    margin-top: 1rem;
    color: #B8B8B8;
    font-size: 0.9rem;
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    color: #000000;
    font-weight: 700;
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #9B95C5, #00F7DA);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid #00F7DA;
    color: #00F7DA;
}

.btn-outline:hover {
    background: rgba(0, 247, 218, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* ========================================
   可點擊元素視覺優化 (Clickable Elements Enhancement)
   版本: v1.0 - 2026-01-02
   ======================================== */

/* 1. 主要按鈕強化 */
.btn-primary {
    position: relative;
    background: linear-gradient(135deg, #00F7DA, #00C4B8);
    box-shadow: 0 4px 20px rgba(0, 247, 218, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 247, 218, 0.5);
}

/* 2. 次要按鈕強化 */
.btn-outline {
    border: 2px solid #00F7DA;
    color: #00F7DA;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(0, 247, 218, 0.1);
    border-color: #00F7DA;
    box-shadow: 0 0 20px rgba(0, 247, 218, 0.3);
    transform: translateY(-2px);
}

/* 3. 交付物卡片「點擊查看」提示 */
.deliverable-item {
    position: relative;
}

.deliverable-item::after {
    content: '點擊查看 >';
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #00F7DA, #9B95C5);
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.deliverable-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.deliverable-item:hover {
    transform: translateY(-8px);
    border-color: #00F7DA;
    box-shadow: 0 15px 50px rgba(0, 247, 218, 0.4);
}

/* 4. 外部連結視覺優化 */
.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.1), rgba(155, 149, 197, 0.1));
    border: 2px solid rgba(0, 247, 218, 0.3);
    border-radius: 25px;
    color: #00F7DA;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.case-link::after {
    content: '\f35d'; /* Font Awesome 外部連結圖標 */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    opacity: 0.7;
    margin-left: 0.25rem;
}

.case-link:hover {
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.2), rgba(155, 149, 197, 0.2));
    border-color: #00F7DA;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 247, 218, 0.3);
}

.case-link.instagram {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.1), rgba(245, 133, 41, 0.1));
    border-color: rgba(228, 64, 95, 0.3);
    color: #E4405F;
}

.case-link.instagram:hover {
    background: linear-gradient(135deg, rgba(228, 64, 95, 0.2), rgba(245, 133, 41, 0.2));
    border-color: #E4405F;
    box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

/* 5. Focus 狀態樣式（無障礙增強） */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.deliverable-item:focus-visible,
.case-link:focus-visible {
    outline: 3px solid #00F7DA;
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 247, 218, 0.2);
    animation: focusPulse 0.5s ease;
}

@keyframes focusPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* 6. 統一 Cursor 樣式 */
a,
button,
.btn,
.deliverable-item,
.carousel-btn,
.indicator,
.case-link {
    cursor: pointer;
}

/* 禁用狀態 */
button:disabled,
.btn:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

/* 痛點卡片改為純展示 */
.pain-card {
    cursor: default;
}

/* 7. 輪播控制視覺優化 */
.carousel-btn {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(0, 247, 218, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(0, 247, 218, 0);
    }
}

.carousel-btn:hover {
    animation: none; /* Hover 時停止動畫 */
}

/* 輪播指示器增強 */
.indicator {
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:not(.active):hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.indicator.active {
    box-shadow: 0 0 10px rgba(0, 247, 218, 0.6);
}


/* Case Studies Section */
.case-studies {
    padding: 5rem 0;
    background: #000000;
}

/* Case Section */
.case-section {
    margin-bottom: 6rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0, 247, 218, 0.1);
}

.case-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.case-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.case-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.case-link.blog {
    background: rgba(0, 247, 218, 0.1);
    border: 1px solid rgba(0, 247, 218, 0.3);
    color: var(--primary-color);
}

.case-link.instagram {
    background: rgba(228, 64, 95, 0.1);
    border: 1px solid rgba(228, 64, 95, 0.3);
    color: #E4405F;
}

.case-link:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 247, 218, 0.2);
}

/* Cards Showcase */
.cards-showcase {
    margin: 3rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

a.card-preview,
.card-preview {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #293038;
    transition: all 0.3s ease;
    display: block;
    text-decoration: none;
}

a.card-preview:hover,
.card-preview:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 247, 218, 0.2);
}

.card-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.card-number {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Case Results */
.case-results {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.05), rgba(155, 149, 197, 0.05));
    border-radius: 16px;
}

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

.result-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Before After for Blog Case */
.before-after {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.blog-input {
    padding: 0;
    order: 2;
}

.blog-output {
    order: 1;
}

.blog-input h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.input-box {
    background: #293038;
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 247, 218, 0.1);
    margin-bottom: 2rem;
}

.input-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    font-size: 0.95rem;
}

.blog-output {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 247, 218, 0.1);
}

.blog-header {
    background: #2a2a2a;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #3a3a3a;
}

.blog-dots {
    display: flex;
    gap: 8px;
}

.blog-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.blog-title {
    flex: 1;
    text-align: center;
    color: #8a8a8a;
    font-size: 0.9rem;
}

.blog-content {
    background: #ffffff;
}

.blog-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* Instagram 卡片輪播 */
.ig-cards-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
    border-radius: 8px;
}

.ig-cards-container {
    display: flex;
    transition: transform 0.4s ease-in-out;
}

.ig-card {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* 輪播按鈕 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 247, 218, 0.9);
    color: #000;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1rem;
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 247, 218, 0.4);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

/* 輪播指示器 */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
    background: rgba(0, 0, 0, 0.5);
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 4px;
}

.blog-caption {
    text-align: center;
    padding: 1rem;
    background: #2a2a2a;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid #3a3a3a;
}

.blog-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.blog-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.9rem;
    background: rgba(0, 247, 218, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 218, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.blog-feature:hover {
    background: rgba(0, 247, 218, 0.1);
    border-color: rgba(0, 247, 218, 0.3);
}

.blog-feature i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Blog Stats */
.blog-stats {
    display: flex;
    gap: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(0, 247, 218, 0.05), rgba(155, 149, 197, 0.05));
    border-radius: 12px;
}

.blog-stats .stat-item {
    text-align: center;
    flex: 1;
}

.blog-stats .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.blog-stats .stat-label {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    /* Newsletter Showcase Tablet */
    .newsletter-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .newsletter-content {
        text-align: center;
        padding: 2rem 1rem;
    }

    .newsletter-badge {
        justify-content: center;
        font-size: 1.6rem;
    }

    .newsletter-description {
        max-width: 600px;
        margin: 0 auto 2rem;
    }

    .newsletter-highlights {
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
        margin: 0 auto 2rem;
    }

    .newsletter-actions {
        justify-content: center;
        flex-wrap: wrap;
        max-width: 400px;
        margin: 0 auto;
    }


    .newsletter-preview {
        max-width: 700px;
        margin: 0 auto;
    }

    .preview-header {
        padding: 1rem 1.5rem;
    }



    /* Case Studies Responsive */
    .before-after {
        grid-template-columns: 1fr;
        gap: 2rem;
    }


    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ai-hero__title {
        font-size: 2.5rem;
    }

    .ai-hero__subtitle {
        font-size: 1.1rem;
    }

    .pain-grid,
    .stats-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        flex-direction: column;
    }

    /* Deliverables Mobile Optimization */
    .deliverables-showcase {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .deliverables-title {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .deliverable-item {
        max-width: 600px;
        margin: 0 auto;
    }

    .deliverable-preview {
        aspect-ratio: auto;
    }

    .deliverable-window {
        display: block;
    }

    .deliverable-window__header {
        padding: 0.6rem 1rem;
    }

    .deliverable-window__title {
        font-size: 0.8rem;
    }

    .deliverable-window__content {
        flex: none;
        overflow: visible;
        min-height: auto;
    }

    .deliverable-window__content img {
        display: block;
    }

    .deliverable-info {
        padding: 1.2rem;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .deliverable-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin: 0;
    }

    .deliverable-name {
        font-size: 1.1rem;
        margin: 0;
    }

    /* Newsletter Showcase Mobile */
    .newsletter-main {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        margin-top: 2rem;
    }

    .newsletter-content {
        padding: 1rem;
        text-align: left;
    }

    .newsletter-badge {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        justify-content: flex-start;
        flex-direction: row;
    }

    .newsletter-badge i {
        font-size: 1.2rem;
    }

    .newsletter-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .newsletter-highlights {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .highlight-item {
        padding: 0.6rem;
        font-size: 0.9rem;
    }


    .newsletter-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .newsletter-actions .btn {
        width: 100%;
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }

    .newsletter-preview {
        margin: 0 -1rem;
        border-radius: 8px;
        overflow: hidden;
    }

    .preview-header {
        padding: 0.75rem 1rem;
    }

    .preview-dots .dot {
        width: 10px;
        height: 10px;
    }



    .preview-caption {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    /* Case Studies Mobile */
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-results {
        flex-direction: column;
        gap: 1.5rem;
    }


    .blog-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .case-links {
        flex-direction: column;
        gap: 1rem;
    }

    .case-link {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Extra Small Devices (phones, 480px and below) */
@media (max-width: 480px) {
    /* Newsletter Showcase - Extra Small */
    .newsletter-showcase {
        padding: 3rem 0;
    }

    .newsletter-main {
        margin-top: 1.5rem;
    }

    .newsletter-content {
        padding: 0.5rem;
    }

    .newsletter-badge {
        font-size: 1.1rem;
        gap: 0.5rem;
        flex-direction: row;
    }

    .newsletter-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .highlight-item {
        font-size: 0.85rem;
        padding: 0.5rem;
    }

    .highlight-item i {
        font-size: 1rem;
    }


    .newsletter-actions .btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .newsletter-preview {
        margin: 0 -0.5rem;
    }

    .preview-header {
        padding: 0.5rem 0.75rem;
    }

    .preview-dots {
        gap: 6px;
    }

    .preview-dots .dot {
        width: 8px;
        height: 8px;
    }


}

/* ========================================
   Newsletter Showcase Section
   ======================================== */
.newsletter-showcase {
    padding: 5rem 0;
    background: var(--bg-primary);
}

.newsletter-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

/* Left Content */
.newsletter-content {
    padding: 2rem;
    order: 2;
}

.newsletter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: var(--font-bold);
}

.newsletter-badge i {
    font-size: 1.3rem;
}

.newsletter-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Highlights */
.newsletter-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(0, 247, 218, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(0, 247, 218, 0.1);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(0, 247, 218, 0.1);
    border-color: rgba(0, 247, 218, 0.3);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}


/* Actions */
.newsletter-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-actions .btn {
    padding: 1rem 1.5rem;
    text-align: center;
    justify-content: center;
}

/* Right Preview */
.newsletter-preview {
    background: #1a1a1a;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid rgba(0, 247, 218, 0.1);
    order: 1;
}

/* Preview Header */
.preview-header {
    background: #2a2a2a;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #3a3a3a;
}

.preview-dots {
    display: flex;
    gap: 8px;
}

.preview-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transition: opacity 0.3s ease;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.preview-title {
    flex: 1;
    text-align: center;
    color: #8a8a8a;
    font-size: 0.9rem;
}


/* Preview Content */
.preview-content {
    background: #ffffff;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
}

.preview-caption {
    text-align: center;
    padding: 1rem;
    background: #2a2a2a;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-top: 1px solid #3a3a3a;
}

/* Responsive Newsletter Showcase */
@media screen and (max-width: 768px) {
    /* Pain Points Section Responsive */
    .pain-points__subtitle {
        font-size: 1rem;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .card.card--danger {
        padding: 2rem;
    }

    .card__stat {
        padding: 1.2rem;
    }

    .stat-big {
        font-size: 2.8rem;
    }

    .stat-unit {
        font-size: 1rem;
    }

    .cta-text {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-text i {
        font-size: 1.3rem;
    }

    .ta-cta__text {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        max-width: 90%;
    }

    .ta-cta__text i {
        font-size: 1.2rem;
    }
}