/* General Styling */
:root {
    --primary: #8B5FBF;
    --primary-dark: #6A3093;
    --accent: #A37EBA;
    --dark: #121212;
    --darker: #0a0a0a;
    --light: #ffffff;
    --gray: #cccccc;
    --gray-dark: #888888;
    --success: #00cc88;
    --danger: #ff3860;
}

body {
    background: var(--dark);
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.6;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    transition: background 0.3s;
    border-bottom: 1px solid rgba(139, 95, 191, 0.2);
}

header.scrolled {
    background: rgba(18, 18, 18, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
}

.logo-icon {
    margin-right: 10px;
    font-size: 32px;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover:after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(40, 26, 60, 0.5) 0%, var(--dark) 70%);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1; /* Particles are on the bottom layer */
}

.hero-content {
    max-width: 650px;
    position: relative; /* This is crucial for z-index to work */
    z-index: 2; /* Content is forced above the particles */
    text-align: center;
    margin: 0 auto;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(90deg, var(--light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--light) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(139, 95, 191, 0.3);
    position: relative;
    overflow: hidden;
    animation: pulse-glow 2.5s infinite ease-in-out;
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 95, 191, 0.6);
    color: var(--light);
    animation: none;
}

.btn:hover:before {
    left: 100%;
}

.btn:disabled {
    background: var(--gray-dark);
    box-shadow: none;
    animation: none;
    cursor: not-allowed;
    opacity: 0.5;
}


/* Main Content */
.main-content {
    background: var(--darker);
    padding: 80px 0;
    position: relative;
}

#app-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh; /* Ensures the section takes enough height to be centered */
}

.section-title {
    color: var(--light);
}

.card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid transparent;
    border-radius: 16px;
    transition: transform 0.3s, background 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    color: var(--light);
}

.card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    background: rgba(139, 95, 191, 0.15);
    border-color: rgba(139, 95, 191, 0.3);
    box-shadow: 0 0 25px rgba(139, 95, 191, 0.2);
}

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

.card-header {
    background: rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    color: var(--light);
    padding: 20px;
}

.card-body {
    padding: 25px;
    color: var(--light);
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--light);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
}

.form-control::placeholder {
    color: var(--gray-dark);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    color: var(--light);
    box-shadow: 0 0 0 0.25rem rgba(139, 95, 191, 0.25);
}

/* Search Results Styling */
.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(139, 95, 191, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
    color: var(--light);
}

.search-result-item:hover {
    background-color: rgba(139, 95, 191, 0.2);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item strong {
    display: block;
    margin-bottom: 2px;
    color: var(--light);
}

.search-result-item small {
    font-size: 12px;
    color: var(--gray);
}

/* Loading Indicator */
#loading-indicator {
    margin: 20px 0;
}

/* Metric Cards */
.metric-card {
    text-align: center;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.metric-card:hover {
    background: rgba(139, 95, 191, 0.1);
    transform: translateY(-5px);
}

.metric-icon {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary);
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: var(--light);
}

.metric-label {
    font-size: 12px;
    color: var(--gray);
    text-transform: uppercase;
}

/* Data Rows */
.data-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.data-row .key {
    color: var(--gray);
}

.data-row .value.positive {
    color: var(--success);
}

.data-row .value.negative {
    color: var(--danger);
}

/* Keyframe animation for the button glow */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 10px 30px rgba(139, 95, 191, 0.3);
    }
    50% {
        box-shadow: 0 10px 45px rgba(139, 95, 191, 0.5);
    }
    100% {
        box-shadow: 0 10px 30px rgba(139, 95, 191, 0.3);
    }
}

/* Sentiment Items */
.sentiment-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.sentiment-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}

.sentiment-icon.positive {
    background-color: rgba(0, 204, 136, 0.2);
    color: var(--success);
}

.sentiment-icon.neutral {
    background-color: rgba(108, 117, 125, 0.2);
    color: var(--gray-dark);
}

.sentiment-icon.negative {
    background-color: rgba(220, 53, 69, 0.2);
    color: var(--danger);
}

.sentiment-details {
    flex: 1;
}

.sentiment-label {
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--light);
}

/* News Cards */
.news-card {
    display: flex;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    background: rgba(139, 95, 191, 0.1);
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
}

.news-sentiment-icon {
    margin-right: 15px;
    font-size: 20px;
}

.news-sentiment-icon.positive {
    color: var(--success);
}

.news-sentiment-icon.neutral {
    color: var(--gray-dark);
}

.news-sentiment-icon.negative {
    color: var(--danger);
}

.news-title {
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--light);
}

.news-meta {
    font-size: 12px;
    color: var(--gray);
}

/* Prediction Cards */
.prediction-card {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s;
}

.prediction-card:hover {
    background: rgba(139, 95, 191, 0.1);
    transform: translateY(-5px);
}

.horizon {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 8px;
}

.range {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--light);
}

.expected-price {
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--gray);
}

.percentage-range {
    font-size: 12px;
}

/* Professional Chart Styles */
.chart-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.chart-controls {
    display: flex;
    gap: 8px;
}

.chart-controls .btn {
    font-size: 12px;
    padding: 4px 8px;
    background: rgba(139, 95, 191, 0.2);
    border: 1px solid rgba(139, 95, 191, 0.3);
    color: #fff;
    animation: none;
}

.chart-controls .btn:hover {
    background: rgba(139, 95, 191, 0.4);
}

#price-chart {
    height: 500px;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 8px 8px;
}

.tv-lightweight-charts {
    border-radius: 8px;
    overflow: hidden;
}

/* Alert customization */
.alert-danger {
    background: rgba(220, 53, 69, 0.2);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff3860;
}

/* Progress bar customization */
.progress {
    background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
    background: linear-gradient(90deg, #8B5FBF, #6A3093);
}

/* Modal customization */
.modal-content {
    background: #1a1a1a;
    color: #fff;
    border: 1px solid rgba(139, 95, 191, 0.3);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close {
    filter: invert(1);
}

/* Footer */
footer {
    padding: 80px 0 40px;
    background: var(--darker);
    text-align: center;
    position: relative;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    color: var(--gray-dark);
    font-size: 16px;
}

/* How It Works Step Number Styling */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08); /* Dark background */
    border: 2px solid var(--primary); /* Accent border */
    color: var(--primary); /* Accent text color */
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(139, 95, 191, 0.2);
}


/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 50px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero p {
        margin: 0 auto 40px;
    }

    .nav-links {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 16px;
    }

    #price-chart {
        height: 400px;
    }

    .chart-controls {
        flex-direction: column;
        gap: 4px;
    }
}

/* Fullscreen styles */
#price-chart:-webkit-full-screen,
#price-chart:-ms-fullscreen,
#price-chart:fullscreen {
    height: 100vh !important;
    width: 100vw !important;
}

/* Fantasy How It Works Page Styles */
.fantasy-card {
    background: rgba(139, 95, 191, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(139, 95, 191, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.fantasy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(139, 95, 191, 0.2);
    background: rgba(139, 95, 191, 0.15);
}

.fantasy-illustration {
    position: relative;
    padding: 30px;
}

.magic-sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
                      radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
                      radial-gradient(circle at 40% 70%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
                      radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 100% 100%;
    opacity: 0.6;
    animation: sparkle 3s infinite alternate;
}

@keyframes sparkle {
    0% { opacity: 0.3; }
    100% { opacity: 0.8; }
}

.fantasy-character {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 95, 191, 0.2);
    transition: all 0.3s ease;
}

.fantasy-character:hover {
    transform: translateY(-8px);
    background: rgba(139, 95, 191, 0.1);
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.2);
}

.character-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 95, 191, 0.1);
    border: 2px solid var(--primary);
    margin: 0 auto 20px;
}

/* Responsive adjustments for fantasy elements */
@media (max-width: 992px) {
    .fantasy-illustration {
        margin-bottom: 40px;
    }
}

/*
This file styles the "How It Works" page.
It gives a fantasy or magical feel to the design.
*/

/* Styles for the cards in the "Our Magical Process" section */
.fantasy-card {
    background: rgba(255, 255, 255, 0.05); /* Slightly see-through background */
    border-radius: 16px; /* Rounded corners */
    border: 1px solid rgba(139, 95, 191, 0.3); /* Purple border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Soft shadow */
    height: 100%; /* Make all cards the same height */
    transition: all 0.3s ease; /* Smooth animation on hover */
}

.fantasy-card:hover {
    transform: translateY(-10px); /* Move the card up a little when you hover */
    box-shadow: 0 15px 40px rgba(139, 95, 191, 0.3); /* Stronger purple glow on hover */
}

/* Styles for the step numbers (1, 2, 3...) */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%; /* Makes it a circle */
    background: linear-gradient(145deg, var(--primary), var(--primary-dark)); /* Purple gradient */
    color: var(--light); /* White text color */
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(139, 95, 191, 0.5); /* Purple glow */
}

/* Styles for the big icons next to the steps */
.fantasy-illustration {
    position: relative;
    color: var(--primary); /* Purple color for the icon */
}

/* Styles for the "Magical Companions" section */
.fantasy-character {
    transition: all 0.3s ease; /* Smooth animation on hover */
}

.fantasy-character:hover {
    transform: scale(1.05); /* Makes the character box slightly bigger on hover */
}

.character-icon {
    font-size: 40px;
}

/* Features Page Styles */
.feature-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-content {
    position: relative;
}

.feature-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 95, 191, 0.1);
    border: 2px solid var(--primary);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.feature-card {
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(139, 95, 191, 0.1);
    border-color: rgba(139, 95, 191, 0.3);
    box-shadow: 0 15px 35px rgba(139, 95, 191, 0.2);
}

.feature-card .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 95, 191, 0.1);
    border: 2px solid var(--primary);
    margin: 0 auto;
}

.data-pillars {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

.pillar {
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    background: rgba(139, 95, 191, 0.1);
    border: 1px solid rgba(139, 95, 191, 0.2);
    flex: 1;
    margin: 0 10px;
}

.tech-stack-item {
    margin-bottom: 30px;
}

.performance-metric {
    margin-bottom: 25px;
}

.progress {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

/* Responsive adjustments for features page */
@media (max-width: 992px) {
    .feature-visual {
        margin-top: 40px;
    }

    .data-pillars {
        flex-direction: column;
        gap: 15px;
    }

    .pillar {
        margin: 5px 0;
    }
}

/* Why Us Page Styles */
.advantage-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.advantage-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.advantage-content {
    position: relative;
}

.advantage-icon-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 95, 191, 0.1);
    border: 2px solid var(--primary);
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    margin-bottom: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.advantage-list li i {
    margin-right: 12px;
    font-size: 1.2rem;
}

.comparison-table {
    width: 100%;
}

.comparison-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comparison-label {
    width: 150px;
    color: var(--light);
    font-weight: 500;
}

.comparison-bar {
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 15px;
    position: relative;
    transition: width 1.5s ease;
}

.comparison-bar span {
    color: var(--light);
    font-weight: 600;
    font-size: 0.9rem;
}

.tech-badge {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tech-badge .badge {
    background: rgba(139, 95, 191, 0.2);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid var(--primary);
}

.data-coverage {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}

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

.coverage-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.coverage-label {
    font-size: 0.9rem;
    color: var(--gray);
}

.performance-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
}

.accuracy-meter {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meter-gauge {
    width: 60px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.gauge-fill {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, var(--primary), var(--primary-dark));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 1.5s ease;
}

.gauge-fill span {
    color: var(--light);
    font-weight: 700;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.meter-label {
    margin-top: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 95, 191, 0.1);
    border-color: rgba(139, 95, 191, 0.3);
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.2);
}

.testimonial-rating {
    color: var(--primary);
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    margin-top: 20px;
}

.author-name {
    color: var(--light);
    font-weight: 600;
}

.author-title {
    color: var(--gray);
    font-size: 0.9rem;
}

.commitment-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.commitment-card:hover {
    transform: translateY(-5px);
    background: rgba(139, 95, 191, 0.1);
    border-color: rgba(139, 95, 191, 0.3);
    box-shadow: 0 10px 25px rgba(139, 95, 191, 0.2);
}

.commitment-card .commitment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(139, 95, 191, 0.1);
    border: 2px solid var(--primary);
    margin: 0 auto;
}

/* Responsive adjustments for Why Us page */
@media (max-width: 992px) {
    .advantage-visual {
        margin-top: 40px;
    }

    .data-coverage {
        flex-direction: column;
        gap: 20px;
    }

    .performance-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .stat-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .comparison-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-label {
        width: 100%;
        margin-bottom: 5px;
    }

    .comparison-bar {
        width: 100% !important;
    }
}