/* WF Analytics page styles */

/* Hero badge */
.analytics-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.analytics-hero-badge svg {
    width: 18px;
    height: 18px;
    color: var(--gold-light);
}

.analytics-hero-badge span {
    font-size: 14px;
    color: var(--gray-700);
}

/* Hero integration badges */
.analytics-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.analytics-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--gray-700);
}

.analytics-badge-item svg {
    width: 16px;
    height: 16px;
}

/* Compare section */
.analytics-compare-section {
    background: var(--gray-900);
}

.analytics-compare-grid {
    max-width: 800px;
    margin: 0 auto;
}

/* CTA email icon */
.analytics-cta-section .btn-ultra svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

/* Pricing section */
.analytics-pricing {
    padding: 80px 0;
    background: var(--gray-950);
}

.analytics-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .analytics-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.pricing-card {
    background: var(--gray-900);
    border: 1px solid var(--gray-800);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card-featured {
    border-color: var(--gold-light);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.08) 0%, var(--gray-900) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: var(--gray-950);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-800);
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-100);
    margin-bottom: 8px;
}

.pricing-tagline {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-100);
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-400);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-300);
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--wf-blue-light);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    text-align: center;
    background: var(--gray-800);
    color: var(--gray-100);
    border: 1px solid var(--gray-700);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: var(--gray-700);
    border-color: var(--gray-600);
}

.btn-pricing-featured {
    background: linear-gradient(135deg, var(--wf-blue-light), var(--wf-blue-dark));
    border: none;
}

.btn-pricing-featured:hover {
    background: linear-gradient(135deg, var(--wf-blue-dark), var(--wf-blue-light));
    transform: translateY(-2px);
}

/* Analytics features section */
.analytics-features {
    background: var(--gray-950);
}

/* Analytics integration section */
.analytics-integration {
    background: var(--gray-900);
}

/* Analytics industries section */
.analytics-industries-section .section-title,
.analytics-cta-section .cta-content h2 {
    color: var(--gray-100);
}

/* ========================================
   LIGHT MODE ADJUSTMENTS
   ======================================== */

html[data-theme="light"] .analytics-hero-badge,
html:not([data-theme]) .analytics-hero-badge {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

html[data-theme="light"] .analytics-hero-badge span,
html:not([data-theme]) .analytics-hero-badge span {
    color: var(--gray-700);
}

html[data-theme="light"] .analytics-badge-item,
html:not([data-theme]) .analytics-badge-item {
    background: rgba(0, 0, 0, 0.05);
    color: var(--gray-700);
}

html[data-theme="light"] .analytics-pricing,
html:not([data-theme]) .analytics-pricing {
    background: #f5f8fc;
}

html[data-theme="light"] .pricing-card,
html:not([data-theme]) .pricing-card {
    background: #ffffff;
    border-color: #e5e7eb;
}

html[data-theme="light"] .pricing-card-featured,
html:not([data-theme]) .pricing-card-featured {
    border-color: var(--gold-dark);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.05) 0%, #ffffff 100%);
}

html[data-theme="light"] .pricing-header,
html:not([data-theme]) .pricing-header {
    border-bottom-color: #e5e7eb;
}

html[data-theme="light"] .pricing-name,
html:not([data-theme]) .pricing-name {
    color: var(--gray-900);
}

html[data-theme="light"] .pricing-tagline,
html:not([data-theme]) .pricing-tagline {
    color: var(--gray-600);
}

html[data-theme="light"] .price-amount,
html:not([data-theme]) .price-amount {
    color: var(--gray-900);
}

html[data-theme="light"] .price-currency,
html:not([data-theme]) .price-currency {
    color: var(--gray-500);
}

html[data-theme="light"] .price-period,
html:not([data-theme]) .price-period {
    color: var(--gray-500);
}

html[data-theme="light"] .pricing-features li,
html:not([data-theme]) .pricing-features li {
    color: var(--gray-700);
}

html[data-theme="light"] .pricing-features li svg,
html:not([data-theme]) .pricing-features li svg {
    color: var(--wf-blue-dark);
}

html[data-theme="light"] .btn-pricing,
html:not([data-theme]) .btn-pricing {
    background: #f3f4f6;
    color: var(--gray-900);
    border-color: #e5e7eb;
}

html[data-theme="light"] .btn-pricing:hover,
html:not([data-theme]) .btn-pricing:hover {
    background: #e5e7eb;
    border-color: #d1d5db;
}

html[data-theme="light"] .btn-pricing-featured,
html:not([data-theme]) .btn-pricing-featured {
    background: linear-gradient(135deg, var(--wf-blue-dark), #0052a3);
    color: #ffffff;
    border: none;
}

html[data-theme="light"] .analytics-features,
html:not([data-theme]) .analytics-features {
    background: #ffffff;
}

html[data-theme="light"] .analytics-integration,
html:not([data-theme]) .analytics-integration {
    background: #f5f8fc;
}

html[data-theme="light"] .analytics-compare-section,
html:not([data-theme]) .analytics-compare-section {
    background: #f5f8fc;
}

html[data-theme="light"] .analytics-compare-section .section-title,
html:not([data-theme]) .analytics-compare-section .section-title {
    color: var(--gray-900);
    background: none;
    -webkit-text-fill-color: currentColor;
}

html[data-theme="light"] .analytics-compare-section .section-subtitle,
html:not([data-theme]) .analytics-compare-section .section-subtitle {
    color: var(--gray-600);
}

html[data-theme="light"] .analytics-industries-section .section-title,
html:not([data-theme]) .analytics-industries-section .section-title {
    color: var(--gray-900);
    background: none;
    -webkit-text-fill-color: currentColor;
    text-shadow: none;
}

html[data-theme="light"] .analytics-industries-section .industry-card h3,
html:not([data-theme]) .analytics-industries-section .industry-card h3 {
    color: var(--gray-900);
}

html[data-theme="light"] .analytics-industries-section .industry-card p,
html:not([data-theme]) .analytics-industries-section .industry-card p {
    color: var(--gray-600);
}

html[data-theme="light"] .analytics-industries-section .industry-icon,
html:not([data-theme]) .analytics-industries-section .industry-icon {
    background: rgba(0, 102, 204, 0.12);
}

html[data-theme="light"] .analytics-industries-section .industry-icon svg,
html:not([data-theme]) .analytics-industries-section .industry-icon svg {
    color: var(--wf-blue-dark);
}

html[data-theme="light"] .analytics-cta-section,
html:not([data-theme]) .analytics-cta-section {
    background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 100%);
}

html[data-theme="light"] .analytics-cta-section .cta-content h2,
html:not([data-theme]) .analytics-cta-section .cta-content h2 {
    color: var(--gray-900);
}

html[data-theme="light"] .analytics-cta-section .cta-content p,
html:not([data-theme]) .analytics-cta-section .cta-content p {
    color: var(--gray-700);
}
