/* Reset and base styles */
/* Force header and footer colors */
header, .site-header, nav.header-nav {
    background: rgba(71, 85, 105, 0.95) !important;
}

footer, .footer {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%) !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1F2937;
    background: #F8FAFC !important;
    overflow-x: hidden;
}

/* Additional background override for dashboard */
body.dashboard-page {
    background: #F8FAFC !important;
}

.main-content {
    background: #F8FAFC;
    min-height: calc(100vh - 80px);
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(71, 85, 105, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 118, 110, 0.3);
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Force header nav background */
.header-nav {
    background: transparent !important;
}

nav.header-nav {
    background: transparent !important;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-link {
    text-decoration: none;
}

.brand-title {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #B45309;
}

.btn {
    background: rgba(180, 83, 9, 0.8);
    border: 1px solid rgba(180, 83, 9, 0.9);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: rgba(180, 83, 9, 1);
    border-color: rgba(180, 83, 9, 1);
    transform: translateY(-1px);
}

.btn-primary {
    background: rgba(180, 83, 9, 0.8);
    border: 1px solid rgba(180, 83, 9, 0.9);
    color: #fff;
}

.btn-primary:hover {
    background: rgba(180, 83, 9, 1);
    border-color: rgba(180, 83, 9, 1);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F766E 0%, #475569 35%, #6B7280 70%, #B45309 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
        rgba(15, 118, 110, 0.9) 0%,
        rgba(71, 85, 105, 0.85) 35%,
        rgba(107, 114, 128, 0.8) 70%,
        rgba(180, 83, 9, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-text {
    color: #fff;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-highlight {
    color: #B45309;
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.cta-button {
    background: #fff;
    color: #333;
    border: none;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-button.primary {
    background: linear-gradient(135deg, #0F766E 0%, #B45309 100%);
    color: #fff;
}

.cta-button.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
}

/* Dashboard Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dashboard-title {
    font-weight: 600;
    color: #333;
    font-size: 18px;
}

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

.control {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: #f0f0f0;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.control.active {
    background: #0F766E;
    color: #fff;
}

.chart-container {
    margin-bottom: 20px;
    height: 120px;
    display: flex;
    align-items: end;
    gap: 8px;
    padding: 20px 0;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 80px;
    width: 100%;
}

.bar {
    background: linear-gradient(135deg, #0F766E 0%, #475569 100%);
    border-radius: 4px 4px 0 0;
    flex: 1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.bar.active {
    opacity: 1;
    background: linear-gradient(135deg, #B45309 0%, #0F766E 100%);
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.stat-item {
    flex: 1;
}

.stat-label {
    font-size: 12px;
    color: #666;
    margin-bottom: 4px;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.feature-icon {
    font-size: 16px;
}

.feature-content {
    flex: 1;
}

.feature-name {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.feature-desc {
    font-size: 12px;
    color: #666;
}

.feature-status {
    color: #10b981;
    font-weight: bold;
}

/* Technology Trust Section */
.technology-trust {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfccb 50%, #f0f9ff 100%);
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.trust-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 20px;
}

.trust-icon {
    font-size: 48px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.trust-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.2;
}

.trust-subtitle {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    max-width: 500px;
}

.trust-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.trust-stat {
    text-align: center;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.trust-stat:hover {
    border-color: #0F766E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 118, 110, 0.15);
}

.stat-number {
    font-size: 18px;
    font-weight: 700;
    color: #0F766E;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Bar */
.trust-bar {
    background: #fff;
    padding: 32px 0;
    border-bottom: 1px solid #eee;
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-text {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 32px;
}

.trust-logo {
    color: #999;
    font-weight: 500;
    font-size: 14px;
}

/* Features Section */
.features {
    background: #fff;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.feature-item {
    text-align: center;
    padding: 32px;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 24px;
}

.feature-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

/* Code Section */
.code-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.code-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.code-info h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.2;
}

.code-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.code-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #0F766E;
    color: #fff;
    border-radius: 50%;
    font-weight: 600;
    font-size: 14px;
}

.step-text {
    font-weight: 500;
    color: #333;
}

.code-block {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.code-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #2a2a2a;
    border-bottom: 1px solid #333;
}

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

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ff5f57; }
.control-dot.yellow { background: #ffbd2e; }
.control-dot.green { background: #28ca42; }

.code-title {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.copy-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.code-content {
    padding: 20px;
}

.code-content pre {
    color: #e6e6e6;
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', monospace;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
}

/* Pricing Section */
.pricing {
    background: #fff;
    padding: 100px 0;
}

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

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

.pricing-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 118, 110, 0.1);
}

.pricing-card.featured {
    border-color: #0F766E;
    background: linear-gradient(135deg, #0F766E 0%, #475569 100%);
    color: #fff;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #B45309;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-desc {
    font-size: 16px;
    opacity: 0.8;
}

.pricing-features {
    margin-bottom: 32px;
    text-align: left;
}

.pricing-feature {
    padding: 8px 0;
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    background: #f3f4f6;
    color: #333;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pricing-btn:hover {
    background: #e5e7eb;
}

.pricing-btn.primary {
    background: #fff;
    color: #0F766E;
}

.pricing-btn.primary:hover {
    background: #f8f9fa;
}

/* Powered By Section */
.powered-by-section {
    background: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.powered-by-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.powered-by-header {
    margin-bottom: 60px;
}

.powered-by-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
    line-height: 1.2;
}

.powered-by-header p {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.powered-by-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.powered-feature {
    background: white;
    padding: 32px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
}

.powered-feature:hover {
    border-color: #0F766E;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 118, 110, 0.15);
}

.powered-icon {
    font-size: 40px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.powered-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.powered-feature p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0F766E 0%, #475569 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    color: #fff;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%) !important;
    color: #fff;
    padding: 80px 0 32px;
    border-top: 3px solid #0F766E;
}

footer.footer {
    background: linear-gradient(135deg, #374151 0%, #1F2937 100%) !important;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 48px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.footer-group h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-group a {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-group a:hover {
    color: #B45309;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(15, 118, 110, 0.3);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.tech-attribution {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    font-style: italic;
}

.tech-credit {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 8px;
}

/* User Menu */
.user-menu {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
}

.user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.user-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: #0F766E;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 0.875rem;
}

.user-email {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.user-menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 50;
}

.menu-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #374151;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s;
}

.menu-item:hover {
    background-color: #f3f4f6;
}

.menu-item-danger {
    color: #dc2626;
}

.menu-item-danger:hover {
    background-color: #fef2f2;
}

.menu-divider {
    height: 1px;
    background-color: #e5e7eb;
    margin: 0.5rem 0;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: white;
    padding: 1rem;
    border-radius: 0.375rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #0F766E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-width: 300px;
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
    color: #6b7280;
    margin-left: 1rem;
}

/* Transitions */
.toast-enter {
    opacity: 0;
    transform: translateX(100%);
}

.toast-leave {
    opacity: 0;
    transform: translateX(100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .code-demo {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

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

    .hero-description {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .dashboard-mockup {
        transform: none;
        max-width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .trust-title {
        font-size: 24px;
    }

    .trust-stats {
        flex-direction: row;
        justify-content: center;
    }

    .powered-by-header h3 {
        font-size: 28px;
    }

    .powered-by-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title,
.hero-description,
.cta-button {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-description {
    animation-delay: 0.2s;
}

.cta-button {
    animation-delay: 0.4s;
}

.dashboard-mockup {
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

/* Search Depth Preview Section */
.search-depth-preview {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfccb 100%);
    padding: 48px 0;
    border-bottom: 1px solid #e5e7eb;
}

.depth-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.depth-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 32px;
}

.depth-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.depth-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.depth-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.depth-card:hover {
    border-color: #10b981;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

.depth-card:hover::before {
    opacity: 1;
}

.depth-card.featured {
    border-color: #10b981;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.depth-card.featured::before {
    opacity: 1;
}

.depth-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.depth-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.depth-card p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.5;
}

/* Enhanced pricing styles */
.price-breakdown {
    font-size: 12px;
    color: #6b7280;
    font-style: italic;
}
