/* Viggo Product Page Custom Styles */

/* Hero Section */
.tj-hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 220px 0 150px;
    color: #fff;
    z-index: 1;
}

.tj-hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    /* Darker overlay for readability */
    z-index: -1;
}

.hero-content .hero-title {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content .hero-subline {
    color: #e0e0e0;
    font-size: 22px;
    margin-bottom: 45px;
    font-weight: 300;
    max-width: 800px;
}

.hero-btn-group {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Problem Section */
.problem-section {
    position: relative;
    background-color: #fff;
}

.problem-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.problem-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    font-size: 18px;
}

.problem-list li::before {
    content: "\f00d";
    /* FontAwesome X icon or similar */
    font-family: "Font Awesome 6 Pro";
    color: var(--tj-color-theme-primary);
    position: absolute;
    left: 0;
    font-weight: 300;
}

.rounded-chart {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Solution Section */
.solution-section {
    background-color: #f9f9f9;
}

.solution-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.solution-card .icon-box {
    width: 70px;
    height: 70px;
    background: rgba(255, 53, 74, 0.1);
    /* Theme color light */
    color: var(--tj-color-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
}

.solution-card h4 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.benefit-text {
    margin-top: 20px;
    font-size: 15px;
    color: var(--tj-color-theme-primary);
    font-weight: 600;
    padding-top: 20px;
    border-top: 1px dashed #eee;
}

/* Evidence Section */
.evidence-section {
    background-color: #fff;
}

.metric-box h3.counter {
    font-size: 64px;
    font-weight: 900;
    color: var(--tj-color-theme-primary);
    margin-bottom: 5px;
    font-family: 'Outfit', sans-serif;
    /* Try to match brand */
}

.metric-box p {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.testimonial-quote {
    font-size: 28px;
    font-style: italic;
    color: #333;
    position: relative;
    line-height: 1.5;
}

.testimonial-quote::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Pro";
    font-size: 40px;
    color: #eee;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-quote footer {
    font-size: 16px;
    margin-top: 30px;
    font-weight: 700;
    color: var(--tj-color-theme-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Arsenal Section */
.arsenal-section {
    background-color: #121212;
}

.arsenal-section .accordion-item {
    border: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--tj-color-theme-primary) !important;
    background-color: transparent;
    box-shadow: none;
}

.accordion-button {
    font-size: 24px;
    font-weight: 600;
    padding: 25px 0;
}

.accordion-body {
    padding: 0 0 25px 0;
    font-size: 18px;
    color: #aaa;
}

/* Pricing Section */
.pricing-section {
    background: #fff;
}

.pricing-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #eee;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.pricing-card.recommended {
    border: 2px solid var(--tj-color-theme-primary);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tj-color-theme-primary);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.pricing-info h3 {
    font-size: 32px;
    margin-bottom: 5px;
}

.pricing-card .subtitle {
    color: #888;
    margin-bottom: 30px;
    font-size: 16px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    margin-top: 30px;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
}

.pricing-features li i {
    color: var(--tj-color-theme-primary);
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .pricing-card.recommended {
        transform: scale(1);
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

/* Helper Classes */
.text-light-gray {
    color: #ccc !important;
}

.bg-dark-custom {
    background-color: #121212 !important;
}

.solution-card .badge {
    margin-left: 5px;
    padding: 5px 8px;
    border-radius: 4px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 10px;
    vertical-align: middle;
}

/* CTA Button Text Color Fixes */
.hero-btn-group .tj-primary-btn {
    color: #fff !important;
}

.pricing-card.recommended .tj-primary-btn {
    color: #fff !important;
}

.pricing-section .tj-primary-btn.btn-lg {
    color: #fff !important;
}

/* Remove white border from Compliance accordion items */
.arsenal-section .accordion-item {
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}