/* [Pricing Design v5.0 - High End Persuasion] */
/* Primary Color: #ff6600 (Deep Orange) */
/* Font: Pretendard */

#pricing-page-v2026 {
    --primary-color: #ff6600;
    --primary-dark: #e65c00;
    --primary-light: #fff0e6;
    --secondary-color: #1a1a1a;
    --text-color: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-dark: #121212;
    --border-color: #eeeeee;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hard: 0 15px 40px rgba(0, 0, 0, 0.1);
    --shadow-brand: 0 10px 30px rgba(255, 102, 0, 0.2);
    --gradient-brand: linear-gradient(135deg, #ff6600 0%, #ff8533 100%);
}

#pricing-page-v2026 {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

#pricing-page-v2026 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

#pricing-page-v2026 .section-spacing {
    padding: 100px 0;
}

#pricing-page-v2026 .text-center {
    text-align: center;
}

#pricing-page-v2026 .text-orange {
    color: var(--primary-color);
}

#pricing-page-v2026 .text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

#pricing-page-v2026 .text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 102, 0, 0.15);
    z-index: -1;
}

#pricing-page-v2026 .text-warning {
    color: #ff3b30;
    font-weight: 700;
}

/* 1. Hero Section V8 (Cinematic Split - Placeholder) */
#pricing-page-v2026 .hero-split {
    display: flex;
    min-height: 80vh;
    /* Adjust height as needed */
    width: 100%;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    padding-top: 80px;
    /* Offset for fixed header if exists */
}

#pricing-page-v2026 .hero-text-zone {
    flex: 0.5;
    /* 50% width */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
    position: relative;
    z-index: 2;
}

#pricing-page-v2026 .hero-visual-zone {
    flex: 0.5;
    /* 50% width */
    position: relative;
    height: auto;
    min-height: 100vh;
    /* Ensure full viewport height match */
    background-color: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pricing-page-v2026 .hero-content {
    max-width: 600px;
    text-align: left;
    /* Alignment reset to left */
}

/* Badge (Minimal) */
#pricing-page-v2026 .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.01em;
}

#pricing-page-v2026 .hero-badge i {
    font-size: 1.1rem;
}

/* Typography */
#pricing-page-v2026 .hero-title {
    font-family: 'GmarketSans', sans-serif;
    /* Keep GmarketSans for consistency with Service page if available, else fallback */
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-color);
    letter-spacing: -1px;
}

#pricing-page-v2026 .hero-desc {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 40px;
}

#pricing-page-v2026 .hero-desc strong {
    color: var(--text-color);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-color: rgba(255, 102, 0, 0.4);
}

/* Actions */
#pricing-page-v2026 .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Align start for left alignment */
    gap: 12px;
}

#pricing-page-v2026 .btn-primary.btn-lg {
    padding: 22px 56px;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-brand);
    border: none;
    border-radius: 100px;
}

#pricing-page-v2026 .btn-primary.btn-lg:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
}

#pricing-page-v2026 .hero-note {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

/* Hero Slider */
#pricing-page-v2026 .hero-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#pricing-page-v2026 .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

#pricing-page-v2026 .hero-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Staggered Animations */
#pricing-page-v2026 .fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#pricing-page-v2026 .delay-1 {
    animation-delay: 0.1s;
}

#pricing-page-v2026 .delay-2 {
    animation-delay: 0.2s;
}

#pricing-page-v2026 .delay-3 {
    animation-delay: 0.3s;
}

#pricing-page-v2026 .delay-4 {
    animation-delay: 0.4s;
}

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

/* Mobile Responsive */
@media (max-width: 960px) {
    #pricing-page-v2026 .hero-split {
        flex-direction: column-reverse;
        /* Stack vertical */
        height: auto;
        padding-top: 60px;
    }

    #pricing-page-v2026 .hero-text-zone {
        flex: auto;
        padding: 60px 24px;
        text-align: center;
        width: 100%;
    }

    #pricing-page-v2026 .hero-visual-zone {
        flex: auto;
        height: 50vh;
        min-height: 400px;
        width: 100%;
    }

    #pricing-page-v2026 .hero-content {
        margin: 0 auto;
        text-align: center;
    }

    #pricing-page-v2026 .hero-actions {
        align-items: center;
    }

    #pricing-page-v2026 .hero-title {
        font-size: 3rem;
    }
}

/* 2. Pain Points Grid */
#pricing-page-v2026 .pain-points {
    background: white;
}

#pricing-page-v2026 .section-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.3;
}

#pricing-page-v2026 .section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 60px;
}

#pricing-page-v2026 .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

#pricing-page-v2026 .pain-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: all 0.3s ease;
}

#pricing-page-v2026 .pain-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

#pricing-page-v2026 .pain-card .icon-box {
    width: 56px;
    min-height: 56px;
    background: var(--bg-light);
    color: var(--secondary-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: all 0.3s;
}

#pricing-page-v2026 .pain-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

#pricing-page-v2026 .pain-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 12px;
}

#pricing-page-v2026 .pain-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* 3. Why Us (Solution) - MOVED & ENHANCED */
#pricing-page-v2026 .bg-pattern {
    background-color: #fff9f5;
    background-image: radial-gradient(#ffe0cc 1px, transparent 1px);
    background-size: 30px 30px;
}

#pricing-page-v2026 .reasons-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

#pricing-page-v2026 .reason-item {
    background: white;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    gap: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: all 0.3s;
}

#pricing-page-v2026 .reason-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hard);
}

/* Featured Reason (Copyright) */
#pricing-page-v2026 .reason-item.featured-reason {
    border: 2px solid var(--primary-color);
    background: #fff;
    grid-column: span 2;
    /* Full width */
    align-items: center;
}

#pricing-page-v2026 .featured-reason .reason-num {
    color: var(--primary-color);
    font-size: 3.5rem;
}

#pricing-page-v2026 .featured-reason h4 {
    color: var(--primary-color);
}

#pricing-page-v2026 .legal-note {
    display: block;
    margin-top: 10px;
    font-size: 0.85rem;
    color: #999;
}

#pricing-page-v2026 .reason-num {
    font-size: 3rem;
    font-weight: 900;
    color: #eee;
    line-height: 1;
    font-family: 'Helvetica', sans-serif;
    letter-spacing: -2px;
}

#pricing-page-v2026 .reason-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 10px;
}

#pricing-page-v2026 .reason-content p {
    margin: 0;
    color: var(--text-muted);
}

/* 4. Visual Proof (Full Width High-End) */
#pricing-page-v2026 .bg-dark {
    background: var(--bg-dark);
    color: white;
}

#pricing-page-v2026 .bg-dark .section-header h2 {
    color: white;
}

#pricing-page-v2026 .bg-dark .section-header p {
    color: #bbb;
}

#pricing-page-v2026 .bg-dark .proof-sub-desc {
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    text-align: left;
}

#pricing-page-v2026 .bg-dark .proof-sub-desc strong {
    color: white;
}

#pricing-page-v2026 .proof-full-width-container {
    max-width: 1400px;
    /* Wider for visuals */
    margin: 60px auto 0;
}

#pricing-page-v2026 .proof-row {
    display: grid;
    gap: 30px;
}

#pricing-page-v2026 .input-row {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

#pricing-page-v2026 .output-row {
    grid-template-columns: repeat(3, 1fr);
}

#pricing-page-v2026 .proof-img-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #1e1e1e;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

#pricing-page-v2026 .proof-img-card:hover {
    transform: translateY(-8px);
    z-index: 2;
}

#pricing-page-v2026 .proof-img-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
}

#pricing-page-v2026 .proof-img-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

#pricing-page-v2026 .proof-img-card img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

#pricing-page-v2026 .proof-img-card:hover img {
    transform: scale(1.03);
}

#pricing-page-v2026 .label-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.85rem;
    z-index: 5;
    backdrop-filter: blur(10px);
}

#pricing-page-v2026 .label-tag.original {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

#pricing-page-v2026 .label-tag.lite {
    background: rgba(76, 175, 80, 0.9);
    color: white;
}

#pricing-page-v2026 .label-tag.standard {
    background: var(--primary-color);
    color: white;
}

#pricing-page-v2026 .label-tag.premium {
    background: rgba(0, 0, 0, 0.8);
    color: #ffd700;
    border: 1px solid #ffd700;
}

#pricing-page-v2026 .proof-desc {
    padding: 24px;
    background: #1e1e1e;
    text-align: left;
}

#pricing-page-v2026 .proof-desc h5 {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

#pricing-page-v2026 .proof-desc p {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
}

#pricing-page-v2026 .proof-divider {
    text-align: center;
    margin: 50px 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.8;
}

#pricing-page-v2026 .divider-text {
    font-weight: 900;
    padding: 0 20px;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    vertical-align: middle;
}

/* 5. Pricing Cards */
/* [V23 MODERN REDESIGN] 3D Pricing Cards with Color Themes */
#pricing-page-v2026 {
    --color-lite: #20c997;
    /* Mint Green */
    --color-std: #ff6b00;
    /* Signature Orange */
    --color-prem: #6741d9;
    /* Royal Indigo */
}

#pricing-page-v2026 .pricing-section {
    background-color: #f8f9fa;
    /* Light Gray Background */
    padding: 100px 0;
}

#pricing-page-v2026 .pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 50px auto 0;
    max-width: 1200px;
}

/* Base Card Style */
#pricing-page-v2026 .pricing-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 0;
    /* Remove padding for full-width header */
    width: 100%;
    max-width: 350px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* overflow: hidden; Removed to fix badge clipping */
    border: none;
    display: flex;
    flex-direction: column;
    /* border-top removed */
}

/* Full Width Header Bar */
#pricing-page-v2026 .pricing-header-bar {
    padding: 20px 0;
    text-align: center;
    border-radius: 20px 20px 0 0;
    /* Match card top corners */
    width: 100%;
}

#pricing-page-v2026 .pricing-header-bar h3 {
    color: #fff;
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Theme Backgrounds for Header Bar */
#pricing-page-v2026 .lite-theme .pricing-header-bar {
    background-color: var(--color-lite);
}

#pricing-page-v2026 .standard-theme .pricing-header-bar {
    background-color: var(--color-std);
}

#pricing-page-v2026 .premium-theme .pricing-header-bar {
    background-color: var(--color-prem);
}

/* Content Wrapper */
#pricing-page-v2026 .card-content-wrap {
    padding: 20px 30px 30px 30px;
    /* Breathe */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Hover Effect: Lift Up & Color Shadow */
#pricing-page-v2026 .pricing-card:hover {
    transform: translateY(-15px);
}

#pricing-page-v2026 .pricing-card.lite-theme:hover {
    box-shadow: 0 20px 40px rgba(32, 201, 151, 0.15);
}

#pricing-page-v2026 .pricing-card.standard-theme:hover {
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

#pricing-page-v2026 .pricing-card.premium-theme:hover {
    box-shadow: 0 20px 40px rgba(103, 65, 217, 0.15);
}

/* Card Header (Price Area) */
#pricing-page-v2026 .card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* Price Tag */
#pricing-page-v2026 .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
    margin-top: 0;
    /* Forces 0 top margin to respect badge spacing */
    margin-bottom: 5px;
}

/* Price Color by Theme */
#pricing-page-v2026 .lite-theme .price {
    color: var(--color-lite);
}

#pricing-page-v2026 .standard-theme .price {
    color: var(--color-std);
}

#pricing-page-v2026 .premium-theme .price {
    color: var(--color-prem);
}

#pricing-page-v2026 .price span {
    font-size: 1rem;
    font-weight: 500;
    color: #888;
}

/* VAT Note */
#pricing-page-v2026 .vat-note {
    display: block;
    font-size: 0.85rem;
    color: #999;
    font-weight: 400;
    margin-top: 5px;
}

#pricing-page-v2026 .desc {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* Card Body */
.card-#pricing-page-v2026 {
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#pricing-page-v2026 .spec-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

#pricing-page-v2026 .spec-list li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

#pricing-page-v2026 .spec-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
}

/* Check Icon Color by Theme */
#pricing-page-v2026 .lite-theme .spec-list li::before {
    color: var(--color-lite);
}

#pricing-page-v2026 .standard-theme .spec-list li::before {
    color: var(--color-std);
}

#pricing-page-v2026 .premium-theme .spec-list li::before {
    color: var(--color-prem);
}

/* Highlight Features */
#pricing-page-v2026 .spec-list li.highlight {
    font-weight: 700;
    color: #111;
}

/* Featured Card Override (Standard) */
#pricing-page-v2026 .pricing-card.featured {
    transform: scale(1.05);
    z-index: 2;
    background: #fff;
    /* Removed default glow, handled by theme shadow now */
}

#pricing-page-v2026 .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

#pricing-page-v2026 .pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    /* Gradient Top Bar for Standard */
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    display: none;
    /* Hide default gradient, use solid theme color */
}

#pricing-page-v2026 .pricing-card.featured.standard-theme {
    /* Re-enable gradient if desired or keep solid orange */
    border-top: 6px solid var(--color-std);
}

/* Pulse Animation for Badge */
@keyframes badge-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 94, 98, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 94, 98, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 94, 98, 0);
    }
}

#pricing-page-v2026 .badge-best {
    display: inline-block;
    margin-bottom: 20px;
    /* Equal spacing (20px top / 20px bottom) */
    margin-top: 0;
    line-height: 1;
    background: linear-gradient(90deg, #ff9966, #ff5e62);
    color: #fff;
    padding: 6px 18px;
    /* Larger Padding */
    border-radius: 50px;
    font-size: 1.0rem;
    /* +25% larger */
    font-weight: 800;
    /* Extra Bold */
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(255, 94, 98, 0.4);
    animation: badge-pulse 2s infinite;
    /* Emphasis Effect */
}

/* Buttons */
#pricing-page-v2026 .btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    color: #fff;
}

/* Button Colors by Theme */
#pricing-page-v2026 .lite-theme .btn-block {
    background-color: var(--color-lite);
}

#pricing-page-v2026 .standard-theme .btn-block {
    background-color: var(--color-std);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

#pricing-page-v2026 .premium-theme .btn-block {
    background-color: var(--color-prem);
}

#pricing-page-v2026 .lite-theme .btn-block:hover {
    background-color: #12b886;
    /* Darker Mint */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.3);
}

#pricing-page-v2026 .standard-theme .btn-block:hover {
    background-color: #e65c00;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 102, 0, 0.3);
}

#pricing-page-v2026 .premium-theme .btn-block:hover {
    background-color: #5f3dc4;
    /* Darker Indigo */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(103, 65, 217, 0.3);
}

/* Remove old Button styles overlap */
#pricing-page-v2026 .btn-block.primary,
#pricing-page-v2026 .btn-block.secondary {
    /* These classes are still in HTML but theme styles will override base button styles if specific enough */
}

/* Mobile Responsive */
@media (max-width: 992px) {
    #pricing-page-v2026 .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    #pricing-page-v2026 .pricing-grid {
        flex-direction: column;
        align-items: center;
    }

    #pricing-page-v2026 .pricing-card {
        max-width: 100%;
        /* Full width on mobile */
    }

    #pricing-page-v2026 .pricing-card.featured {
        transform: scale(1);
    }
}

/* [V6] Visual Proof - Vertical Stack & ZigZag */
#pricing-page-v2026 .visual-proof-v6 {
    background: var(--bg-dark);
    color: white;
    overflow: hidden;
    padding-bottom: 120px;
}

#pricing-page-v2026 .proof-steps-container {
    max-width: 1000px;
    margin: 80px auto 0;
    position: relative;
    padding: 0 20px;
}

/* Step Common */
#pricing-page-v2026 .proof-step {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    opacity: 1;
}

#pricing-page-v2026 .proof-step.reverse {
    flex-direction: row-reverse;
}

#pricing-page-v2026 .proof-content {
    flex: 1;
    text-align: left;
}

#pricing-page-v2026 .proof-step.input-step .proof-content {
    text-align: center;
    margin-bottom: 40px;
    flex: none;
    width: 100%;
}

#pricing-page-v2026 .proof-step.input-step {
    flex-direction: column;
    gap: 30px;
}

#pricing-page-v2026 .proof-image {
    flex: 1.5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s;
    background: #000;
}

#pricing-page-v2026 .proof-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Step Labels & Typography */
#pricing-page-v2026 .step-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#pricing-page-v2026 .step-label.original {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

#pricing-page-v2026 .step-label.lite {
    background: #4caf50;
    color: #fff;
}

#pricing-page-v2026 .step-label.standard {
    background: var(--primary-color);
    color: #fff;
}

#pricing-page-v2026 .step-label.premium {
    background: #1a1a1a;
    color: #ffd700;
    border: 1px solid #ffd700;
}

#pricing-page-v2026 .proof-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
    color: var(--primary-color);
}

#pricing-page-v2026 .proof-content .desc-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Specs List */
#pricing-page-v2026 .step-specs {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

#pricing-page-v2026 .step-specs li {
    font-size: 1.05rem;
    color: #ddd;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#pricing-page-v2026 .step-specs li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
}

/* Transitions */
#pricing-page-v2026 .step-transition {
    margin: -60px 0 80px;
    position: relative;
    z-index: 2;
}

#pricing-page-v2026 .transition-icon {
    font-size: 1.2rem;
    font-weight: 800;
    color: white;
    background: var(--bg-dark);
    display: inline-block;
    padding: 10px 20px;
    position: relative;
    z-index: 5;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#pricing-page-v2026 .transition-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    min-height: 120px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 102, 0, 0.5));
    z-index: 1;
}

/* Animations & Effects */
#pricing-page-v2026 .scroll-reveal {
    /* Basic state for now */
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#pricing-page-v2026 .hover-scale:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 102, 0, 0.3);
}

#pricing-page-v2026 .featured-img {
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

/* New Sections: Smart Choice & Partnership */
#pricing-page-v2026 .smart-choice,
#pricing-page-v2026 .smart-choice.section-spacing {
    background: #f8f9fa;
    padding: 0 0 120px 0;
    /* Top reduced to 0px, Bottom kept large */
    position: relative;
    overflow: hidden;
}

@media (min-width: 992px) {

    #pricing-page-v2026 .smart-choice,
    #pricing-page-v2026 .smart-choice.section-spacing {
        padding-top: 50px;
        /* Fix for PC overlap due to .featured scaling */
    }
}

#pricing-page-v2026 .pricing-section,
#pricing-page-v2026 .pricing-section.section-spacing {
    padding-bottom: 0px;
    /* Reduced bottom padding for tight spacing with adjacent section */
}

/* Common Section Spacing is 100px, so we override for specific connection */

#pricing-page-v2026 .icon-crown {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 30px;
    display: inline-block;
    filter: drop-shadow(0 5px 15px rgba(255, 215, 0, 0.4));
}

#pricing-page-v2026 .smart-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

#pricing-page-v2026 .smart-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

#pricing-page-v2026 .keywords span {
    display: inline-block;
    background: white;
    padding: 12px 24px;
    border-radius: 50px;
    margin: 5px;
    font-weight: 700;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    font-size: 1rem;
}

#pricing-page-v2026 .partnership {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    color: white;
    padding: 140px 0;
    position: relative;
}

#pricing-page-v2026 .partnership h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.2;
    color: #f8f9fa;
    /* Changed to light gray/white */
}

#pricing-page-v2026 .partnership-desc {
    font-size: 1.2rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

/* Responsive adjustments for new layout */
@media (max-width: 992px) {
    #pricing-page-v2026 .proof-step {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        margin-bottom: 80px;
    }

    #pricing-page-v2026 .proof-step.reverse {
        flex-direction: column;
    }

    #pricing-page-v2026 .proof-content {
        text-align: center;
    }

    #pricing-page-v2026 .proof-content h3 {
        font-size: 1.8rem;
    }

    #pricing-page-v2026 .step-specs li {
        justify-content: center;
    }

    #pricing-page-v2026 .smart-content h2,
    #pricing-page-v2026 .partnership h2 {
        font-size: 2rem;
    }

    #pricing-page-v2026 .proof-steps-container {
        margin-top: 50px;
    }

    #pricing-page-v2026 .transition-line {
        min-height: 80px;
    }
}

/* [V7] Contrast Strategy: Pain Points (Dark Reality) */
#pricing-page-v2026 .pain-points-v7 {
    background-color: #1a1a1a;
    color: #e0e0e0;
    position: relative;
    padding-bottom: 100px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    /* Slight Diagonal Cut */
    z-index: 2;
}

#pricing-page-v2026 .pain-points-v7 .section-header h2 {
    color: #fff;
}

#pricing-page-v2026 .pain-points-v7 .text-warning {
    color: #ff3333;
    /* Strong Warning Red */
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.4);
    font-weight: 900;
}

#pricing-page-v2026 .pain-points-v7 .section-header p {
    color: #888;
}

#pricing-page-v2026 .pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 50px auto 0;
}

#pricing-page-v2026 .pain-card {
    background: #2a2a2a;
    border: 1px solid #333;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

#pricing-page-v2026 .pain-card:hover {
    transform: translateY(-5px);
    background: #333;
    border-color: #ff3333;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

#pricing-page-v2026 .pain-card .icon-box {
    font-size: 2rem;
    color: #ffcc00;
    /* Caution Yellow */
    margin-bottom: 20px;
}

#pricing-page-v2026 .pain-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

#pricing-page-v2026 .pain-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.5;
    word-break: keep-all;
}

/* [V7] Contrast Strategy: Why Us (Bright Solution) */
#pricing-page-v2026 .why-us-v7 {
    background: #fff;
    /* Subtle background pattern */
    background-image: radial-gradient(#f0f0f0 1.5px, transparent 1.5px);
    background-size: 20px 20px;
    padding-top: 140px;
    /* Overlap compensation */
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    /* Below Pain Points */
    margin-top: -80px;
    /* Pull up to create overlap effect */
}

#pricing-page-v2026 .why-us-v7 .section-header h2 {
    color: #111;
}

#pricing-page-v2026 .why-us-v7 .text-highlight {
    color: var(--primary-color);
    background: linear-gradient(120deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0.1) 100%);
    box-shadow: inset 0 -10px 0 rgba(255, 102, 0, 0.1);
}

#pricing-page-v2026 .why-us-v7 .section-header p {
    color: #666;
}

#pricing-page-v2026 .reasons-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 60px auto 0;
}

#pricing-page-v2026 .reason-item {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 16px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

#pricing-page-v2026 .reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: var(--primary-color);
}

#pricing-page-v2026 .reason-item.featured-reason {
    grid-column: span 2;
    background: linear-gradient(135deg, #fff 0%, #fff9f0 100%);
    border: 2px solid var(--primary-color);
}

#pricing-page-v2026 .reason-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(255, 102, 0, 0.2);
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}

#pricing-page-v2026 .reason-content h4 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

#pricing-page-v2026 .reason-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

#pricing-page-v2026 .legal-note {
    display: block;
    margin-top: 10px;
    color: #888;
    font-size: 0.85rem;
}

/* Responsive V7 */
@media (max-width: 768px) {
    #pricing-page-v2026 .pain-grid {
        grid-template-columns: 1fr;
        /* Stack cards */
    }

    #pricing-page-v2026 .reasons-list {
        grid-template-columns: 1fr;
    }

    #pricing-page-v2026 .reason-item.featured-reason {
        grid-column: auto;
        /* Reset span */
    }

    #pricing-page-v2026 .pain-points-v7 {
        clip-path: none;
        /* Simplify on mobile */
        padding-bottom: 60px;
    }

    #pricing-page-v2026 .why-us-v7 {
        margin-top: 0;
        padding-top: 60px;
    }
}

/* [V10] Header Persona Layout: Pain Points (The Worry) */
#pricing-page-v2026 .pain-points-v10 {
    background-color: #f4f6f8;
    /* Soft Gray/Blue */
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

/* Header Persona: Title + Image */
#pricing-page-v2026 .section-header-persona {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

#pricing-page-v2026 .header-text {
    flex: 1;
    text-align: right;
    /* Text faces image */
}

#pricing-page-v2026 .pain-points-v10 .header-text h2 {
    color: #333;
    margin-bottom: 10px;
}

#pricing-page-v2026 .pain-points-v10 .header-text p {
    color: #666;
}

#pricing-page-v2026 .header-image {
    flex: 0 0 300px;
    /* Fixed width for image container */
}

#pricing-page-v2026 .persona-head-img {
    width: 100%;
    height: auto;
    max-min-height: 300px;
    object-fit: contain;
    /* Removed drop-shadow to prevent darkening/blurring perception */
}

#pricing-page-v2026 .pain-masonry-v10 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}


/* [V10] Header Persona Layout: Why Us (The Solution) */
#pricing-page-v2026 .why-us-v10 {
    background: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

#pricing-page-v2026 .section-header-persona.reverse-persona {
    flex-direction: row-reverse;
    /* Swap Text/Image for Solution */
}

#pricing-page-v2026 .reverse-persona .header-text {
    text-align: left;
    /* Text faces image */
}

#pricing-page-v2026 .why-us-v10 .header-text h2 {
    color: #111;
}

#pricing-page-v2026 .solution-grid-v10 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Text Highlights */
#pricing-page-v2026 .text-worry {
    color: #ff6b6b;
    position: relative;
    display: inline-block;
}

#pricing-page-v2026 .text-worry::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 107, 107, 0.2);
    z-index: -1;
}

#pricing-page-v2026 .text-solve {
    color: var(--primary-color);
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: rgba(255, 102, 0, 0.3);
    text-underline-offset: 5px;
}


/* Reuse Bubble/Card Styles from V8/V9 (Unchanged) */
#pricing-page-v2026 .pain-bubble {
    background: #fff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    max-width: 320px;
    border: 1px solid #eee;
    text-align: center;
    transition: transform 0.3s ease;
}

#pricing-page-v2026 .pain-bubble:hover {
    transform: translateY(-5px) scale(1.02);
    z-index: 10;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

#pricing-page-v2026 .pain-bubble:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

#pricing-page-v2026 .pain-bubble.left {
    transform: rotate(-1deg);
}

#pricing-page-v2026 .pain-bubble.right {
    transform: rotate(1deg);
}

#pricing-page-v2026 .pain-bubble.center {
    transform: rotate(0deg);
}

#pricing-page-v2026 .pain-bubble.featured-bubble {
    background: #fff0f0;
    border-color: #ffcccc;
}

#pricing-page-v2026 .pain-bubble.featured-bubble h3 {
    color: #d9534f;
    margin-top: 0;
    font-size: 1.1rem;
}

#pricing-page-v2026 .solution-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

#pricing-page-v2026 .solution-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.1);
    transform: translateY(-3px);
}

#pricing-page-v2026 .solution-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(to right, #fff9f0, #fff);
    border: 2px solid var(--primary-color);
}

#pricing-page-v2026 .solution-card .card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
}

#pricing-page-v2026 .solution-card .card-content h4 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #222;
}

#pricing-page-v2026 .solution-card .card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}


/* Responsive V10 */
@media (max-width: 768px) {

    #pricing-page-v2026 .section-header-persona,
    #pricing-page-v2026 .section-header-persona.reverse-persona {
        flex-direction: column;
        /* Stack image under text */
        text-align: center;
        gap: 20px;
    }

    #pricing-page-v2026 .header-text,
    #pricing-page-v2026 .reverse-persona .header-text {
        text-align: center;
    }

    #pricing-page-v2026 .header-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 250px;
    }

    #pricing-page-v2026 .pain-masonry-v10,
    #pricing-page-v2026 .solution-grid-v10 {
        gap: 20px;
    }

    #pricing-page-v2026 .solution-grid-v10 {
        grid-template-columns: 1fr;
    }

    #pricing-page-v2026 .solution-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    #pricing-page-v2026 .solution-card.featured {
        grid-column: auto;
    }
}

/* [V11] Immersive Split Layout */
#pricing-page-v2026 .immersive-split {
    min-height: 800px;
    display: flex;
    overflow: hidden;
}

#pricing-page-v2026 .immersive-split .row {
    width: 100%;
    margin: 0;
}

#pricing-page-v2026 .immersive-split .col-lg-6 {
    padding: 0;
}

#pricing-page-v2026 .split-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    /* Mobile Fallback */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Specific Backgrounds (Fallback if needed, but set inline in HTML) */
#pricing-page-v2026 .worry-bg {
    background-position: center top;
}

#pricing-page-v2026 .solve-bg {
    background-position: center top;
}

#pricing-page-v2026 .split-content {
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

#pricing-page-v2026 .pain-points-v11 .split-content {
    background: #f4f6f8;
    /* Soft Gray */
}

#pricing-page-v2026 .why-us-v11 .split-content {
    background: #fff;
}

#pricing-page-v2026 .content-wrapper {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

#pricing-page-v2026 .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

#pricing-page-v2026 .section-desc {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
}

/* V11 Body Styles */
#pricing-page-v2026 .pain-masonry-v11 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

#pricing-page-v2026 .solution-grid-v11 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Responsive V11 */
@media (max-width: 991px) {
    #pricing-page-v2026 .immersive-split {
        min-height: auto;
        display: block;
        /* Stack on mobile */
    }

    #pricing-page-v2026 .split-image {
        min-height: 400px;
        /* Banner Height on Mobile */
        min-height: 400px;
    }

    #pricing-page-v2026 .split-content {
        padding: 60px 24px;
        min-height: auto;
    }

    #pricing-page-v2026 .section-title {
        font-size: 2rem;
        text-align: center;
    }

    #pricing-page-v2026 .section-desc {
        text-align: center;
    }

    #pricing-page-v2026 .content-wrapper {
        max-width: 100%;
    }

    /* Ensure image is always on top for mobile */
    #pricing-page-v2026 .immersive-split .row {
        flex-direction: column;
    }

    #pricing-page-v2026 .immersive-split .col-lg-6:first-child {
        order: 1;
        /* Image first */
    }

    #pricing-page-v2026 .immersive-split .col-lg-6:last-child {
        order: 2;
        /* Content second */
    }

    /* Fix reverse row in Why Us */
    #pricing-page-v2026 .why-us-v11 .row {
        flex-direction: column;
    }

    #pricing-page-v2026 .why-us-v11 .col-lg-6:nth-child(1) {
        /* Initially Image (Right in desktop) -> Now Top */
        order: 1;
    }

    #pricing-page-v2026 .why-us-v11 .col-lg-6:nth-child(2) {
        /* Initially Content (Left in desktop) -> Now Bottom */
        order: 2;
    }
}

/* [V12] Modern Overlap Layout */
#pricing-page-v2026 .pain-points-v12 {
    background-color: #f4f6f8;
    position: relative;
    padding-bottom: 120px;
}

#pricing-page-v2026 .why-us-v12 {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 120px;
}

#pricing-page-v2026 .overlap-wrapper {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    /* Vertically center the content card */
}

/* Base Image Style */
#pricing-page-v2026 .overlap-image {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60%;
    /* Occupy 60% of the wrapper width */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

#pricing-page-v2026 .image-left {
    left: 0;
}

#pricing-page-v2026 .image-right {
    right: 0;
}

/* Base Content Card Style */
#pricing-page-v2026 .overlap-content {
    position: relative;
    width: 45%;
    /* Card width */
    background: #ffffff;
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    z-index: 2;
    /* Ensure it floats above image */
}

#pricing-page-v2026 .pain-points-v12 .overlap-content {
    /* Right Customization */
    border-top: 4px solid #333;
}

#pricing-page-v2026 .why-us-v12 .overlap-content {
    /* Left Customization */
    border-top: 4px solid var(--primary-color);
    background: #fff;
}


/* Inner Content Styles */
#pricing-page-v2026 .pain-list-v12 {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

#pricing-page-v2026 .pain-list-v12 li {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 15px;
    padding-left: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#pricing-page-v2026 .pain-list-v12 li i {
    color: #ff6b6b;
    margin-top: 4px;
}

#pricing-page-v2026 .pain-list-v12 li.highlight {
    font-weight: 700;
    color: #333;
    background: #fff0f0;
    padding: 12px;
    border-radius: 8px;
}

#pricing-page-v2026 .pain-masonry-mini {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

#pricing-page-v2026 .pain-tag {
    background: #eee;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #555;
    font-weight: 600;
}

#pricing-page-v2026 .solution-grid-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 20px;
}

#pricing-page-v2026 .solution-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

#pricing-page-v2026 .solution-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2px;
}

#pricing-page-v2026 .solution-item .text strong {
    display: block;
    font-size: 1rem;
    color: #222;
    margin-bottom: 4px;
}

#pricing-page-v2026 .solution-item .text p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

#pricing-page-v2026 .legal-notice-mini {
    font-size: 0.8rem;
    color: #999;
    margin-top: 20px;
}

/* Responsive V12 */
@media (max-width: 991px) {

    #pricing-page-v2026 .pain-points-v12,
    #pricing-page-v2026 .why-us-v12 {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    #pricing-page-v2026 .overlap-wrapper {
        display: block;
        /* Stack */
        min-height: auto;
    }

    #pricing-page-v2026 .overlap-image {
        position: relative;
        width: 100%;
        min-height: 300px;
        /* Banner height */
        border-radius: 16px;
        margin-bottom: -40px;
        /* Negative margin to pull content up */
        z-index: 1;
    }

    #pricing-page-v2026 .overlap-content {
        width: 90%;
        margin: 0 auto;
        padding: 40px 30px;
        z-index: 2;
        /* Sit on top of image */
    }

    #pricing-page-v2026 .solution-grid-mini {
        grid-template-columns: 1fr;
    }
}

/* [V13] Hero Persona + Grid Layout */
#pricing-page-v2026 .pain-points-v13,
#pricing-page-v2026 .why-us-v13 {
    padding-top: 100px;
    padding-bottom: 100px;
}

#pricing-page-v2026 .pain-points-v13 {
    background-color: #f4f6f8;
}

#pricing-page-v2026 .why-us-v13 {
    background-color: #fff;
}

/* Hero Persona Image - Full Visibility */
#pricing-page-v2026 .hero-persona-wrapper {
    position: relative;
    width: 100%;
    text-align: center;
}

#pricing-page-v2026 .hero-persona-img {
    width: 100%;
    height: auto;
    max-min-height: 800px;
    /* Prevent overly tall images on large screens */
    object-fit: contain;
    /* CRITICAL: Ensure image is never cropped */
    /* border-radius: 20px; Removed for cleaner look, can restore if needed */
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    /* Subtle shadow for depth */
}

/* Grid Layouts - Full Content Restoration */
#pricing-page-v2026 .pain-masonry-v13 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    /* Align left for masonry feel */
}

/* Reuse Pain Bubble Styles but adjust sizing */
#pricing-page-v2026 .pain-masonry-v13 .pain-bubble {
    flex: 1 1 300px;
    /* Grow to fill, min-width 300px */
    max-width: 100%;
    /* Allow full width if needed */
    margin: 0;
    /* Override masonry margin */
}

#pricing-page-v2026 .solution-grid-v13 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Reuse Solution Card Styles */
#pricing-page-v2026 .solution-grid-v13 .solution-card {
    height: 100%;
    /* Equal height cards */
}

/* Responsive V13 */
@media (max-width: 991px) {

    #pricing-page-v2026 .pain-points-v13 .row,
    #pricing-page-v2026 .why-us-v13 .row {
        flex-direction: column;
        /* Stack vertically */
    }

    #pricing-page-v2026 .hero-persona-wrapper {
        margin-bottom: 40px;
        /* Spacing between image and content */
    }

    #pricing-page-v2026 .hero-persona-img {
        max-min-height: 500px;
        /* Moderate height on mobile */
    }

    #pricing-page-v2026 .pain-masonry-v13,
    #pricing-page-v2026 .solution-grid-v13 {
        justify-content: center;
    }

    #pricing-page-v2026 .section-title,
    #pricing-page-v2026 .section-desc {
        text-align: center;
    }
}

/* Premium Eyebrow Slogan (V19 Refined) - Kept for V20 */
#pricing-page-v2026 .slogan-eyebrow {
    font-size: 1.1rem;
    /* Slightly larger for better readability */
    font-weight: 800;
    /* Bold impact */
    letter-spacing: 1px;
    /* Reduced spacing for punchiness */
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    /* More spacing from title relative to eyebrow */
    /* Removed underline decoration for simpler look */
}

#pricing-page-v2026 .pain-points-v20 .slogan-eyebrow {
    color: #495057;
    /* Dark Gray for seriousness */
}

#pricing-page-v2026 .why-us-v20 .slogan-eyebrow.text-primary {
    color: #007bff;
    /* Force primary blue */
}

/* Section Title Refinement (V19) - Kept for V20 */
#pricing-page-v2026 .pain-points-v20 .section-title,
#pricing-page-v2026 .why-us-v20 .section-title {
    font-size: 2.2rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
}

/* [V22] Pure Typography Grid & Feature Matrix (No Images) */
#pricing-page-v2026 .pain-points-v22,
#pricing-page-v2026 .why-us-v22 {
    padding-top: 100px;
    padding-bottom: 100px;
}

#pricing-page-v2026 .pain-points-v22 {
    background-color: #fdeec3;
    color: #111;
    position: relative;
    /* For triangle positioning */
}

#pricing-page-v2026 .pain-points-v22::after {
    content: '';
    position: absolute;
    top: 100%;
    /* Position right below the section */
    left: 0;
    width: 100%;
    min-height: 72px;
    /* Increased by 20% (60px -> 72px) */
    background-color: #fdeec3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
    /* Force overlap to eliminate white line gap */
    z-index: 10;
}

#pricing-page-v2026 .why-us-v22 {
    background-color: #fff;
}

/* 1. Pain Points (Pure Grid) */
#pricing-page-v2026 .pain-grid-pure {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

#pricing-page-v2026 .pain-card-pure {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

#pricing-page-v2026 .pain-card-pure:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

#pricing-page-v2026 .pain-card-pure p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    word-break: keep-all;
}

#pricing-page-v2026 .pain-card-pure.highlight-card {
    background: #212529;
    /* Dark Accent for contrast */
}

#pricing-page-v2026 .pain-card-pure.highlight-card p {
    color: #fff;
}

/* 2. Why Us (Feature Matrix) */
#pricing-page-v2026 .feature-matrix {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* Wider gap for matrix */
    max-width: 1100px;
    margin: 0 auto;
}

#pricing-page-v2026 .matrix-item {
    padding: 20px;
    text-align: center;
    /* No border, no card bg */
}

#pricing-page-v2026 .matrix-item .icon-mini {
    font-size: 1.8rem;
    color: #007bff;
    margin-bottom: 15px;
    display: inline-block;
}

#pricing-page-v2026 .matrix-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #212529;
}

#pricing-page-v2026 .matrix-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
    word-break: keep-all;
}

/* Key Feature (Full Width) */
#pricing-page-v2026 .matrix-item.key-feature {
    grid-column: 1 / -1;
    background: #f8fbff;
    border: 1px solid #cce5ff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    text-align: left;
    /* Reset alignment for flexible flexbox */
}

#pricing-page-v2026 .matrix-item.key-feature h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

/* Responsive V22 */
@media (max-width: 991px) {
    #pricing-page-v2026 .pain-grid-pure {
        grid-template-columns: repeat(2, 1fr);
    }

    #pricing-page-v2026 .feature-matrix {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Mobile Optimization: Compact Grids to reduce scroll */
    #pricing-page-v2026 .pain-grid-pure {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 cols */
        gap: 10px;
    }

    #pricing-page-v2026 .pain-card-pure {
        padding: 15px;
        /* Compact padding */
    }

    #pricing-page-v2026 .pain-card-pure p {
        font-size: 0.85rem;
        /* Smaller text */
    }

    #pricing-page-v2026 .feature-matrix {
        grid-template-columns: repeat(2, 1fr);
        /* Keep 2 cols */
        gap: 15px;
    }

    #pricing-page-v2026 .matrix-item {
        padding: 10px;
    }

    #pricing-page-v2026 .matrix-item .icon-mini {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    #pricing-page-v2026 .matrix-item h5 {
        font-size: 0.95rem;
    }

    #pricing-page-v2026 .matrix-item p {
        display: none;
        /* Optional: Hide description on mobile if too long? No, keep it short. */
        font-size: 0.8rem;
    }

    #pricing-page-v2026 .matrix-item.key-feature {
        padding: 25px;
        text-align: center;
    }

    #pricing-page-v2026 .matrix-item.key-feature .d-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* --- Why Us Section Enhancements (Global) --- */

/* Icon Box Animation & Style */
#pricing-page-v2026 .icon-box-large {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#pricing-page-v2026 .icon-box-large:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
    color: #ff6600;
}

/* Legal Notice Box (Copyright) */
#pricing-page-v2026 .legal-notice-box {
    background: #fff3cd;
    /* Warning Yellow Layout */
    border: 1px solid #ffeeba;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    position: relative;
    overflow: hidden;
}

#pricing-page-v2026 .legal-notice-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #ffc107;
    /* Emphasis Bar */
}

#pricing-page-v2026 .legal-notice-box h4 {
    color: #856404;
    font-weight: 800;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#pricing-page-v2026 .legal-notice-box p {
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Mobile Visibility Enhancement */
@media (max-width: 768px) {
    #pricing-page-v2026 .legal-notice-box {
        background: #fff8e1;
        border: 2px solid #ffc107;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-align: left;
    }

    #pricing-page-v2026 .legal-notice-box h4 {
        font-size: 1.1rem;
    }

    #pricing-page-v2026 .legal-notice-box p {
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.6;
        word-break: keep-all;
        color: #333;
    }

    #pricing-page-v2026 .legal-notice-box small {
        font-size: 0.85rem;
        color: #666;
    }
}

/* --- Copyright Box Redesign & Mobile Fix (Global) --- */

/* Legal Notice Box Container */
#pricing-page-v2026 .legal-notice-box {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e4e8;
    /* Reset previous yellow style if any remains */
    padding: 0;
}

#pricing-page-v2026 .legal-notice-box::before {
    display: none;
    /* Remove yellow bar */
}

/* Blue Header */
#pricing-page-v2026 .legal-header {
    background: #0d6efd;
    /* Bootstrap Primary Blue */
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#pricing-page-v2026 .legal-header h4 {
    margin: 0;
    color: #fff;
    /* Force White Text */
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#pricing-page-v2026 .legal-header i {
    color: #fff;
    /* Force White Icon */
}

/* Body Content */
.legal-#pricing-page-v2026 {
    padding: 20px;
    text-align: left;
    background: #fff;
}

/* Force Mobile Visibility & Typography */
#pricing-page-v2026 .matrix-item.key-feature p,
.legal-#pricing-page-v2026 p {
    display: block;
    /* Override display:none */
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    word-break: keep-all;
    margin-bottom: 5px;
    text-align: left;
}

.legal-#pricing-page-v2026 small {
    display: block;
    color: #666;
    font-size: 0.85rem;
}

/* Ensure Icon Box Styles are Global */
#pricing-page-v2026 .icon-box-large {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    min-height: 80px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#pricing-page-v2026 .icon-box-large:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.2);
    color: #ff6600;
}

/* --- Visual Effects for All Icons (Why Us Section) --- */

/* Base Style for Mini Icons */
#pricing-page-v2026 .matrix-item .icon-mini {
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    min-height: 60px;
    border-radius: 50%;
    background: #f8f9fa;
    /* Light grey background */
    color: #666;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

#pricing-page-v2026 .matrix-item .icon-mini i {
    font-size: 1.6rem;
}

/* Hover Effect: Card Lift */
#pricing-page-v2026 .matrix-item {
    transition: all 0.3s ease;
    border-radius: 12px;
    padding: 20px;
    /* Ensure click/hover area */
}

#pricing-page-v2026 .matrix-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background: #fff;
    /* Ensure it stands out if transparent before */
}

/* Hover Effect: Icon Pop & Color */
#pricing-page-v2026 .matrix-item:hover .icon-mini {
    transform: scale(1.15) rotate(10deg);
    background: #fff0e6;
    /* Light orange bg */
    color: #ff6600;
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.25);
}

/* Ensure Icon Box Large also has consistent hover behavior if not already perfect */
#pricing-page-v2026 .icon-box-large:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.3);
    color: #ff6600;
}

/* --- Enhanced Icon Visibility & Strong Hover Effects (Global Override) --- */

/* 1. Default State: Always Orange */
#pricing-page-v2026 .matrix-item .icon-mini {
    background: #fff0e6;
    /* Light orange bg */
    color: #ff6600;
    /* Orange icon */
    box-shadow: 0 4px 10px rgba(255, 102, 0, 0.1);
    /* Subtle orange shadow */
}

/* 2. Card Hover State: Orange Gradient Fill */
#pricing-page-v2026 .matrix-item {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

#pricing-page-v2026 .matrix-item:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, #ff9966, #ff5e62);
    /* Gradient Fill */
    box-shadow: 0 15px 30px rgba(255, 94, 98, 0.4);
    /* Strong colored shadow */
    border-color: transparent;
}

/* 3. Content Hover State: Contrast White */
#pricing-page-v2026 .matrix-item:hover .icon-mini {
    background: rgba(255, 255, 255, 0.2);
    /* Semi-transparent white */
    color: #ffffff;
    /* Force White */
    transform: scale(1.1) rotate(10deg);
    box-shadow: none;
}

#pricing-page-v2026 .matrix-item:hover h5,
#pricing-page-v2026 .matrix-item:hover p {
    color: #ffffff;
    /* Force White Text */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* --- Mobile Visibility for Matrix Item Descriptions --- */
#pricing-page-v2026 .matrix-item p {
    display: block;
    /* Force show descriptions on mobile */
    font-size: 0.9rem;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
    word-break: keep-all;
}

#pricing-page-v2026 .matrix-item:hover p {
    color: #ffffff;
    /* Ensure white text on hover */
}

/* --- ISOLATION: Disable Hover Effects for Copyright Box ONLY (.key-feature) --- */

/* 1. Prevent background/shadow changes */
#pricing-page-v2026 .matrix-item.key-feature:hover {
    transform: none;
    background: #fff;
    /* Keep white background */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    /* Keep default shadow */
    border-color: #e1e4e8;
    /* Keep default border */
    cursor: default;
}

/* 2. Prevent Text Color Changes (Keep original colors) */
#pricing-page-v2026 .matrix-item.key-feature:hover h4,
#pricing-page-v2026 .matrix-item.key-feature:hover p,
#pricing-page-v2026 .matrix-item.key-feature:hover small {
    color: inherit;
    /* Do not turn white */
    text-shadow: none;
}

/* 3. Ensure Header stays Blue/White */
#pricing-page-v2026 .matrix-item.key-feature:hover .legal-header {
    background: #0d6efd;
    /* Keep Blue */
}

#pricing-page-v2026 .matrix-item.key-feature:hover .legal-header h4,
#pricing-page-v2026 .matrix-item.key-feature:hover .legal-header i {
    color: #fff;
    /* Keep White */
}

/* 4. Ensure Body Text stays Black/Grey */
.matrix-item.key-feature:hover .legal-#pricing-page-v2026 p {
    color: #333;
}

.matrix-item.key-feature:hover .legal-#pricing-page-v2026 small {
    color: #666;
}

/* --- [2026 TREND REDESIGN STYLES] --- */
/* Vibe Coding: Neo-Retro & Warm Bento */

/* Shared Trends */
#pricing-page-v2026 .section-spacing {
    padding: 100px 0;
}

/* Warm Yellow BG */
#pricing-page-v2026 .bg-light-mesh {
    background: radial-gradient(circle at 50% 50%, #fff 0%, #f4f4f4 100%);
}

#pricing-page-v2026 .bg-dark-layer {
    background-color: #fdeec3;
    position: relative;
    /* overflow: hidden; REMOVED to show triangle */
    z-index: 10;
}

/* Triangle Pointer */
#pricing-page-v2026 .bg-dark-layer::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-height: 80px;
    background-color: #fdeec3;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    margin-top: -1px;
    /* Remove 1px gap */
    pointer-events: none;
    z-index: 10;
}

#pricing-page-v2026 .trend-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

#pricing-page-v2026 .trend-badge.error-glow {
    background: rgba(255, 59, 48, 0.1);
    color: #c0392b;
    box-shadow: none;
    border: 1px solid rgba(255, 59, 48, 0.2);
}

#pricing-page-v2026 .trend-badge.success-glow {
    background: rgba(52, 199, 89, 0.1);
    color: #28a745;
    box-shadow: 0 0 15px rgba(52, 199, 89, 0.2);
}

#pricing-page-v2026 .text-neon-red {
    color: #d32f2f;
    text-shadow: none;
    font-weight: 800;
}

/* Dark Red for contrast on yellow */
#pricing-page-v2026 .text-white {
    color: #333;
}

/* Override white text to dark grey */
#pricing-page-v2026 .glass-dark {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Bento Grid System */
#pricing-page-v2026 .bento-grid-dark,
#pricing-page-v2026 .bento-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

#pricing-page-v2026 .bento-card {
    padding: 30px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Grid Spans */
#pricing-page-v2026 .span-1 {
    grid-column: span 1;
}

#pricing-page-v2026 .span-2 {
    grid-column: span 2;
}

#pricing-page-v2026 .span-3 {
    grid-column: span 3;
}

#pricing-page-v2026 .row-2 {
    grid-row: span 2;
}

/* Warm Card Styles (Pain Points) */
#pricing-page-v2026 .glass-dark h3 {
    color: #1a1a1a;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 10px;
}

#pricing-page-v2026 .glass-dark p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

#pricing-page-v2026 .glass-dark .card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

#pricing-page-v2026 .glass-dark .card-icon.error {
    color: #c0392b;
}

#pricing-page-v2026 .glass-dark .card-icon.warning {
    color: #e67e22;
}

/* Special Highlight Card (Cost) */
#pricing-page-v2026 .border-neon-orange {
    background: #fff;
    border: 2px solid #ff6600;
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

#pricing-page-v2026 .border-neon-orange h3 {
    color: #d32f2f;
}

#pricing-page-v2026 .border-neon-orange p {
    color: #333;
}

/* Hover Effects */
#pricing-page-v2026 .glass-dark:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

#pricing-page-v2026 .hover-glow-red {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(211, 47, 47, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

#pricing-page-v2026 .bento-card:hover .hover-glow-red {
    opacity: 1;
}

/* Enable neon glows */
#pricing-page-v2026 .hover-glow-orange {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 102, 0, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 0;
}

#pricing-page-v2026 .bento-card:hover .hover-glow-orange {
    opacity: 1;
}

/* Light Holographic Cards (Why Us) */
#pricing-page-v2026 .bento-grid-light .bento-card {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #eee;
}

#pricing-page-v2026 .holo-card {
    background: linear-gradient(135deg, #fff 0%, #fff0e6 100%);
    border: 1px solid rgba(255, 102, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#pricing-page-v2026 .holo-content h3 {
    font-size: 1.8rem;
    color: #ff6600;
    margin: 20px 0;
}

#pricing-page-v2026 .holo-content .icon-3d {
    font-size: 4rem;
    color: #ff6600;
    text-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

#pricing-page-v2026 .holo-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    #pricing-page-v2026 background: linear-gradient(45deg,
            #pricing-page-v2026 rgba(255, #pricing-page-v2026 255, #pricing-page-v2026 255, #pricing-page-v2026 0) 40%,
            #pricing-page-v2026 rgba(255, #pricing-page-v2026 255, #pricing-page-v2026 255, #pricing-page-v2026 0.8) 50%,
            rgba(255, 255, 255, 0) 60%);
    transform: rotate(30deg);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

#pricing-page-v2026 .holo-card:hover .holo-shine,
#pricing-page-v2026 .holo-card:active .holo-shine {
    opacity: 0.3;
    transform: rotate(30deg) translate(20px, 20px);
}

#pricing-page-v2026 .holo-card:active {
    transform: scale(0.98);
}

#pricing-page-v2026 .badge-safe {
    background: #e6fffa;
    color: #00b894;
    padding: 5px 12px;
    border-radius: 20px;
    font-weight: 800;
    display: inline-block;
    margin-top: 15px;
}

#pricing-page-v2026 .white-neon {
    transition: all 0.3s ease;
}

#pricing-page-v2026 .white-neon:hover,
#pricing-page-v2026 .white-neon:active,
#pricing-page-v2026 .white-neon:focus-within {
    background-color: #ff6600;
    box-shadow: 0 15px 40px rgba(255, 102, 0, 0.4);
    border-color: #ff6600;
    transform: translateY(-5px);
}

#pricing-page-v2026 .white-neon h4 {
    font-size: 1.1rem;
    margin: 15px 0 0 0;
    color: #333;
    transition: color 0.3s ease;
}

#pricing-page-v2026 .white-neon .icon-flat {
    font-size: 1.5rem;
    color: #ff6600;
    transition: color 0.3s ease;
}

#pricing-page-v2026 .white-neon p {
    transition: color 0.3s ease;
}

#pricing-page-v2026 .white-neon:hover h4,
#pricing-page-v2026 .white-neon:active h4,
#pricing-page-v2026 .white-neon:focus-within h4,
#pricing-page-v2026 .white-neon:hover .icon-flat,
#pricing-page-v2026 .white-neon:active .icon-flat,
#pricing-page-v2026 .white-neon:focus-within .icon-flat,
#pricing-page-v2026 .white-neon:hover p,
#pricing-page-v2026 .white-neon:active p,
#pricing-page-v2026 .white-neon:focus-within p {
    color: #fff;
}

@keyframes float {

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

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

/* Responsive */
@media (max-width: 768px) {

    #pricing-page-v2026 .bento-grid-dark,
    #pricing-page-v2026 .bento-grid-light {
        grid-template-columns: 1fr;
    }

    #pricing-page-v2026 .span-1,
    #pricing-page-v2026 .span-2,
    #pricing-page-v2026 .span-3 {
        grid-column: span 1;
    }

    #pricing-page-v2026 .hero-split {
        height: auto;
        flex-direction: column-reverse;
    }
}

/* Helper Classes for Full Content */
#pricing-page-v2026 .bento-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

#pricing-page-v2026 .bento-card .small {
    font-size: 0.85rem;
    line-height: 1.4;
}

/* [Final Mobile Optimization - 2026] */
/* Force Override for Hero Title Consistency */
@media (max-width: 768px) {
    #pricing-page-v2026 .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.3;
    }
}