/* --- Detail Page Specific Styles --- */
.detail-hero {
    height: 60vh !important;
    min-height: 500px !important;
    padding-top: 80px !important;
}

.detail-hero .hero-container-flex {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.detail-hero .hero-title-creative {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
}

.detail-hero .hero-desc-creative {
    max-width: 600px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.detail-layout {
    position: relative;
    z-index: 2;
    background: var(--color-bg);
}

/* --- Minimalist Pricing List --- */
.pricing-list {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.pricing-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: default;
}

.pricing-item:hover {
    padding-left: 10px;
}

.pricing-name {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000 !important;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.pricing-item:hover .pricing-name {
    color: #6366F1 !important;
}

.pricing-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: env(line-height-base, 1.5);
    max-width: 650px;
    margin: 0;
}

.pricing-details {
    display: flex;
    align-items: center;
    gap: 40px;
}

.detail-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 110px;
    text-align: right;
}

.detail-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #999;
    font-weight: 600;
}

.detail-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.detail-box.accent .detail-value {
    color: #6366F1;
}

.detail-arrow {
    width: 20px;
    height: 20px;
    color: rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-item:hover .detail-arrow {
    color: #6366F1;
    transform: translate(4px, -4px);
}

.detail-arrow svg {
    width: 100%;
    height: 100%;
}

@media (max-width: 991px) {
    .pricing-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px 0;
    }

    .pricing-details {
        gap: 30px;
        justify-content: flex-start;
    }

    .detail-box {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .pricing-name {
        font-size: 1.3rem !important;
    }

    .pricing-details {
        flex-wrap: wrap;
        gap: 20px;
    }

    .detail-arrow {
        display: none;
    }
}


/* --- Ambient Background Effects --- */
.pricing-section,
.overview-section {
    position: relative;
    overflow: hidden;
    background: #fff !important;
}

.pe-ambient-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.pe-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
}

.pe-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.pe-blob-1 {
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366F1 0%, rgba(99, 102, 241, 0) 70%);
}

.pe-blob-2 {
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #818CF8 0%, rgba(99, 102, 241, 0) 70%);
}

.pricing-section .container,
.overview-section .container {
    position: relative;
    z-index: 2;
}

/* --- General Page Structure (Light Theme) --- */
.detail-layout {
    position: relative;
    z-index: 2;
    background: #fff;
    /* Ensure white background for content items */
    color: #000;
}

.overview-section,
.pricing-section {
    background: #fff !important;
}

.section-title {
    color: #000 !important;
}

/* --- Overview Section --- */
.overview-section {
    background: #fdfdfd !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.overview-text {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #444;
    max-width: 900px;
    margin-top: 20px;
}

/* --- Action Section --- */
.action-section {
    padding-bottom: 120px !important;
    background: #fff;
}

.action-card {
    background: #f9f9fb;
    border: 1px solid #eee;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.action-title {
    font-size: 2.5rem !important;
    margin-bottom: 30px;
    color: #000 !important;
}

/* --- Base & Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Base styles for sections in detail page */
.detail-layout section {
    padding: 100px 0;
}

.container {
    width: min(100% - 40px, 1400px);
    margin: 0 auto;
}

@media (max-width: 768px) {
    .action-card {
        padding: 40px 20px;
    }

    .action-title {
        font-size: 1.8rem !important;
    }

    .overview-text {
        font-size: 1.1rem;
    }
}