/* Start custom CSS for html, class: .elementor-element-de83aa6 *//* Main Container */
.comparison-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 450px;
    background: radial-gradient(circle at center, rgba(79, 70, 229, 0.02) 0%, transparent 70%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}



/* Insights Section */
.insights-section {
    text-align: center;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
    border: 2px solid rgba(79, 70, 229, 0.1);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.insights-section h3 {
    color: #1F2937;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
}

.insights-section p {
    color: #4B5563;
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-chart-container {
        padding: 20px 10px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .insights-section {
        padding: 20px;
    }
    
    .insights-section h3 {
        font-size: 1.3em;
    }
    
    .insights-section p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-74782ea *//* Product Research Chart Container */
.product-research-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Chart Header */
.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h3 {
    color: #1e293b;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header p {
    color: #64748b;
    font-size: 1em;
    margin: 0;
    font-weight: 400;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.06));
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Insight Cards */
.insight-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Insight Icons */
.insight-icon {
    font-size: 2em;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Insight Titles */
.insight-card h4 {
    color: #1e293b;
    font-size: 1.1em;
    font-weight: 650;
    margin: 0 0 10px 0;
}

/* Insight Text */
.insight-card p {
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Card Specific Styling */
.elementor-50039 .elementor-element.elementor-element-74782ea .accuracy {
    border-left: 4px solid #10B981;
}

.elementor-50039 .elementor-element.elementor-element-74782ea .filtering {
    border-left: 4px solid #F59E0B;
}

.elementor-50039 .elementor-element.elementor-element-74782ea .tracking {
    border-left: 4px solid #6366f1;
}

.elementor-50039 .elementor-element.elementor-element-74782ea .opportunity {
    border-left: 4px solid #F59E0B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-research-chart-container {
        padding: 20px 15px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .chart-header h2 {
        font-size: 1.5em;
    }
    
    .chart-header p {
        font-size: 0.9em;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .insight-card {
        padding: 18px;
    }
    
    .insight-icon {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .insight-card h4 {
        font-size: 1em;
    }
    
    .insight-card p {
        font-size: 0.85em;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-17bad6f */.discount-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.discount-box {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Source Sans Pro;
}

.logo-section {
    border-right: 2px solid #f9f9f9 ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-section img {
    max-width: 100px;
}

.content-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    flex: 2;
}

.content-section h3 {
    margin-top: 0;
    color: #5A5A5A;
    margin-bottom: 25px;
    margin-right:50px;
    font-size: 26px;
    line-height: 1.4;
}

.button-section {
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.discount-button {
    background-color: #FF6F5E;
    color: #fff !important;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.discount-button:hover {
    background-color: #E65B4C;
}

/* Mobile styles */
@media (max-width: 736px) {
    .discount-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-section, .content-section, .button-section {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .button-section {
        text-align: center;
        margin-top: 10px;
    }
    
    .discount-button {
    margin-top:20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-acb976a *//* Product Research Chart Container */
.keyword-research-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Chart Header */
.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h3 {
    color: #1e293b;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header p {
    color: #64748b;
    font-size: 1em;
    margin: 0;
    font-weight: 400;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.06));
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Insight Cards */
.insight-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Insight Icons */
.insight-icon {
    font-size: 2em;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Insight Titles */
.insight-card h4 {
    color: #1e293b;
    font-size: 1.1em;
    font-weight: 650;
    margin: 0 0 10px 0;
}

/* Insight Text */
.insight-card p {
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Card Specific Styling */
.elementor-50039 .elementor-element.elementor-element-acb976a .database {
    border-left: 4px solid #F59E0B;
}

.elementor-50039 .elementor-element.elementor-element-acb976a .reverse {
    border-left: 4px solid #F59E0B;
}

.elementor-50039 .elementor-element.elementor-element-acb976a .tracking {
    border-left: 4px solid #6366f1;
}

.elementor-50039 .elementor-element.elementor-element-acb976a .integration {
    border-left: 4px solid #10B981;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-research-chart-container {
        padding: 20px 15px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .chart-header h2 {
        font-size: 1.5em;
    }
    
    .chart-header p {
        font-size: 0.9em;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .insight-card {
        padding: 18px;
    }
    
    .insight-icon {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .insight-card h4 {
        font-size: 1em;
    }
    
    .insight-card p {
        font-size: 0.85em;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-58655e1 */.discount-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.discount-box {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Source Sans Pro;
}

.logo-section {
    border-right: 2px solid #f9f9f9 ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-section img {
    max-width: 100px;
}

.content-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    flex: 2;
}

.content-section h3 {
    margin-top: 0;
    color: #5A5A5A;
    margin-bottom: 25px;
    margin-right:50px;
    font-size: 26px;
    line-height: 1.4;
}

.button-section {
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.discount-button {
    background-color: #FF6F5E;
    color: #fff !important;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.discount-button:hover {
    background-color: #E65B4C;
}

/* Mobile styles */
@media (max-width: 736px) {
    .discount-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-section, .content-section, .button-section {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .button-section {
        text-align: center;
        margin-top: 10px;
    }
    
    .discount-button {
    margin-top:20px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e6628c8 *//* Product Research Chart Container */
.listing-optimization-chart-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Chart Header */
.chart-header {
    text-align: center;
    margin-bottom: 30px;
}

.chart-header h3 {
    color: #1e293b;
    font-size: 1.8em;
    font-weight: 700;
    margin: 0 0 8px 0;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chart-header p {
    color: #64748b;
    font-size: 1em;
    margin: 0;
    font-weight: 400;
}

/* Chart Wrapper */
.chart-wrapper {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

/* Canvas Styling */
canvas {
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.06));
}

/* Insights Grid */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

/* Insight Cards */
.insight-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

/* Insight Icons */
.insight-icon {
    font-size: 2em;
    margin-bottom: 12px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Insight Titles */
.insight-card h4 {
    color: #1e293b;
    font-size: 1.1em;
    font-weight: 650;
    margin: 0 0 10px 0;
}

/* Insight Text */
.insight-card p {
    color: #475569;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
}

/* Text Highlights */
.jungle-highlight {
    color: #10B981;
    font-weight: 700;
}

.helium-highlight {
    color: #F59E0B;
    font-weight: 700;
}

/* Card Specific Styling */
.elementor-50039 .elementor-element.elementor-element-e6628c8 .builder {
    border-left: 4px solid #10B981;
}

.elementor-50039 .elementor-element.elementor-element-e6628c8 .ai {
    border-left: 4px solid #F59E0B;
}

.elementor-50039 .elementor-element.elementor-element-e6628c8 .tracking {
    border-left: 4px solid #6366f1;
}

.elementor-50039 .elementor-element.elementor-element-e6628c8 .analysis {
    border-left: 4px solid #F59E0B;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-research-chart-container {
        padding: 20px 15px;
    }
    
    .chart-wrapper {
        height: 350px;
        padding: 20px;
    }
    
    .chart-header h2 {
        font-size: 1.5em;
    }
    
    .chart-header p {
        font-size: 0.9em;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .insight-card {
        padding: 18px;
    }
    
    .insight-icon {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .chart-wrapper {
        height: 300px;
        padding: 15px;
    }
    
    .insight-card h4 {
        font-size: 1em;
    }
    
    .insight-card p {
        font-size: 0.85em;
    }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-2624ab4 */.discount-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.discount-box {
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Source Sans Pro;
}

.logo-section {
    border-right: 2px solid #f9f9f9 ;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-section img {
    max-width: 100px;
}

.content-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 40px;
    flex: 2;
}

.content-section h3 {
    margin-top: 0;
    color: #5A5A5A;
    margin-bottom: 25px;
    margin-right:50px;
    font-size: 26px;
    line-height: 1.4;
}

.button-section {
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.discount-button {
    background-color: #FF6F5E;
    color: #fff !important;
    font-weight: 900;
    font-size: 18px;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
}

.discount-button:hover {
    background-color: #E65B4C;
}

/* Mobile styles */
@media (max-width: 736px) {
    .discount-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-section, .content-section, .button-section {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .button-section {
        text-align: center;
        margin-top: 10px;
    }
    
    .discount-button {
    margin-top:20px;
    }
}/* End custom CSS */