* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #050505;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Particles Background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(220, 38, 38, 0.4);
    border-radius: 50%;
    animation: float-particle 15s infinite;
    opacity: 0;
}

.particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: pulse-particle 2s infinite;
}

@keyframes float-particle {
    0% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100px) rotate(720deg);
    }
}

@keyframes pulse-particle {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.5);
    }
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 70%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.particle:nth-child(7) {
    left: 15%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.particle:nth-child(8) {
    left: 60%;
    animation-delay: 7s;
    animation-duration: 13s;
}

/* Background Animation */
.background-network {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(220, 38, 38, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 40%);
    z-index: -1;
}

/* Scroll Animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: relative;
    z-index: 100;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
}

.logo-icon {
    font-size: 28px;
}

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

.nav-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-links.desktop {
    display: flex;
}

.nav-right.desktop {
    display: flex;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 20px;
}

.mobile-menu .nav-link {
    padding: 8px 0;
    font-size: 16px;
}

.mobile-menu .user-btn {
    width: fit-content;
}

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

.lang-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #a0a0a0;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #22c55e;
    color: #22c55e;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

.user-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    background: linear-gradient(135deg, #ff6b6b 0%, #dc2626 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-osint {
    color: #ff6b6b;
    -webkit-text-fill-color: #ff6b6b;
}

.hero-description {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 32px;
    max-width: 400px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.arrow {
    font-size: 18px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.terminal-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.terminal-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

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

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27ca40; }

.terminal-title {
    font-size: 12px;
    color: #707070;
}

.terminal-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
}

.terminal-line {
    display: flex;
    gap: 8px;
}

.prompt {
    color: #22c55e;
}

.floating-logo {
    position: absolute;
    right: -40px;
    bottom: -20px;
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Search Section */
.search-section {
    margin-bottom: 80px;
}

.search-box {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
}

.search-input-wrapper {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.search-input-wrapper {
    position: relative;
    display: flex;
    flex: 1;
}

.search-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 20px 16px 50px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.search-input:focus {
    border-color: rgba(220, 38, 38, 0.5);
}

.search-input::placeholder {
    color: #707070;
}

.search-btn {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

.search-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tool-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.tool-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
}

.tool-btn.active {
    background: rgba(234, 179, 8, 0.1);
    border-color: rgba(234, 179, 8, 0.4);
    color: #fbbf24;
}



/* Features Title */
.features-title {
    text-align: center;
    margin-bottom: 60px;
}

.features-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.features-title p {
    color: #707070;
    font-size: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #707070;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 24px;
    transition: color 0.2s;
}

.back-link:hover {
    color: #ffffff;
}

.pricing-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.red-highlight {
    color: #dc2626;
}

.pricing-subtitle {
    color: #707070;
    font-size: 15px;
    max-width: 500px;
}

/* Subscription Plans */
.subscription-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.subscription-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.subscription-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.subscription-card.featured {
    border-color: #dc2626;
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.2);
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.plan-badge.popular {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.plan-price {
    margin-bottom: 12px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
}

.price-period {
    color: #707070;
    font-size: 16px;
}

.plan-searches {
    font-size: 18px;
    font-weight: 600;
    color: #fbbf24;
    margin-bottom: 32px;
}

.plan-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    font-size: 14px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.subscribe-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Enterprise Offer */
.enterprise-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 20px;
    padding: 48px;
}

.offer-badge {
    display: inline-block;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.enterprise-left h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
}

.enterprise-left p {
    color: #a0a0a0;
    font-size: 15px;
    line-height: 1.6;
}

.enterprise-card {
    position: relative;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    margin-top: 24px;
}

.card-content h4 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 8px;
}

.card-content > p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 20px;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #fca5a5;
    margin-bottom: 12px;
}

.card-details {
    color: #707070;
    font-size: 13px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
}

.testimonials-title {
    font-size: 32px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 12px;
}

.testimonials-subtitle {
    color: #707070;
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.testimonials-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-weight: 600;
    font-size: 14px;
}

.author-role {
    color: #707070;
    font-size: 12px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dots .dot.active {
    background: #dc2626;
}

.cta-section {
    display: flex;
    justify-content: center;
}

.cta-box {
    background: rgba(220, 38, 38, 0.05);
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
    max-width: 600px;
}

.cta-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-box p {
    color: #a0a0a0;
    font-size: 15px;
    margin-bottom: 24px;
}

.cta-final-btn {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: none;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.cta-final-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .pricing-card-large {
        grid-template-columns: 1fr;
    }
    
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .enterprise-offer {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 40px;
    }
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 8px;
}

.stat-label {
    color: #707070;
    font-size: 14px;
}

/* Features Grid Section */
.features-grid {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-header p {
    color: #707070;
    font-size: 15px;
}

.features-grid-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.3);
}

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

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-card p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    font-size: 24px;
    color: #dc2626;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section a {
    display: block;
    color: #707070;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-description {
    color: #707070;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #707070;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .nav-links.desktop,
    .nav-right.desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .pricing-card-large {
        grid-template-columns: 1fr;
    }
    
    .pricing-left {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .enterprise-offer {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .search-tools {
        justify-content: center;
    }
    
    .nav-right {
        flex-wrap: wrap;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
}

/* Dashboard Page */
.dashboard-hero {
    padding: 80px 0 40px;
}

.dashboard-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.dashboard-subtitle {
    color: #a0a0a0;
    font-size: 16px;
}

.dashboard-search-section {
    padding: 40px 0;
}

.dashboard-stats {
    padding: 40px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 32px;
}

.dashboard-panel {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
}

.dashboard-panel:first-child {
    grid-column: 1 / 2;
}

.panel-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.no-results {
    color: #707070;
    text-align: center;
    padding: 40px 0;
}

.result-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
}

.result-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #dc2626;
}

.result-item p {
    color: #a0a0a0;
    font-size: 14px;
    line-height: 1.5;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.activity-type {
    font-weight: 600;
    font-size: 14px;
}

.activity-time {
    color: #707070;
    font-size: 13px;
}

.subscription-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.plan-name {
    font-size: 24px;
    font-weight: 800;
    color: #dc2626;
}

.plan-progress {
    margin: 24px 0;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #fca5a5);
    border-radius: 5px;
    transition: width 0.6s ease;
}

.progress-text {
    color: #a0a0a0;
    font-size: 13px;
}

.renewal-date {
    color: #707070;
    font-size: 14px;
}

.upgrade-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.upgrade-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.stat-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(220, 38, 38, 0.5);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

/* Cart Styles */
.cart-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}

.cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(220, 38, 38, 0.5);
}

.cart-count {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 20px;
    text-align: center;
}

/* Cart Page Styles */
.cart-hero {
    padding: 80px 0 40px;
}

.cart-hero-title {
    font-size: 36px;
    font-weight: 800;
}

.cart-content {
    padding: 40px 0;
}

.cart-items {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
}

.empty-cart {
    text-align: center;
    color: #707070;
    font-size: 18px;
    padding: 40px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.cart-item-price {
    color: #dc2626;
    font-size: 18px;
    font-weight: 700;
}

.cart-item-remove {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(220, 38, 38, 0.3);
    color: #fca5a5;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.cart-item-remove:hover {
    background: rgba(220, 38, 38, 0.2);
}

.cart-summary {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.total-label {
    font-size: 24px;
    font-weight: 700;
}

.total-amount {
    font-size: 36px;
    font-weight: 800;
    color: #dc2626;
}

.checkout-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}


/* Login Page */
.login-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

.login-box {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px;
    max-width: 500px;
    width: 100%;
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.login-subtitle {
    color: #a0a0a0;
    font-size: 14px;
}

.auth-tabs {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.auth-tab {
    flex: 1;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
}

.auth-tab:hover {
    background: rgba(255, 255, 255, 0.08);
}

.auth-tab.active {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border-color: #dc2626;
    color: white;
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 24px;
}

.auth-form.active {
    display: flex;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #a0a0a0;
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 16px 20px;
    color: white;
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus {
    border-color: rgba(220, 38, 38, 0.5);
}

.form-group input::placeholder {
    color: #707070;
}

.auth-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

/* Pricing Page */
.pricing-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.pricing-hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-hero-subtitle {
    color: #a0a0a0;
    font-size: 16px;
}

.pricing-cards-section {
    padding: 40px 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.pricing-card {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured {
    border-color: #dc2626;
    box-shadow: 0 0 40px rgba(220, 38, 38, 0.2);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.pricing-card-description {
    color: #a0a0a0;
    font-size: 14px;
}

.pricing-card-price {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-card-price .price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #dc2626;
}

.pricing-card-price .price-period {
    color: #707070;
    font-size: 18px;
}

.pricing-card-searches {
    text-align: center;
    margin-bottom: 32px;
    padding: 16px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 12px;
}

.pricing-card-searches .searches-count {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #fbbf24;
}

.pricing-card-searches .searches-label {
    color: #a0a0a0;
    font-size: 14px;
}

.pricing-card-features {
    list-style: none;
    margin-bottom: 32px;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #a0a0a0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item::before {
    content: '✓';
    color: #22c55e;
    font-size: 16px;
    font-weight: 700;
}

.feature-item.disabled {
    opacity: 0.4;
}

.feature-item.disabled::before {
    content: '✗';
    color: #707070;
}

.pricing-card-btn {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.pricing-card-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-btn.featured {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    border: none;
}

.pricing-card-btn.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.pricing-faq-section {
    padding: 80px 0;
}

.pricing-faq-title {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
}

.pricing-faq-list {
    max-width: 800px;
    margin: 0 auto;
}



/* History Page */
.history-hero {
    padding: 80px 0 40px;
}

.history-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.history-subtitle {
    color: #a0a0a0;
    font-size: 16px;
}

.history-filters {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(220, 38, 38, 0.15);
    border-color: #dc2626;
    color: white;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.history-item {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.history-details {
    flex: 1;
}

.history-type {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 8px;
}

.history-query {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 8px;
}

.history-date {
    color: #707070;
    font-size: 13px;
}

.history-results {
    color: #fbbf24;
    font-weight: 700;
    font-size: 18px;
}

/* API Page */
.api-hero {
    padding: 80px 0 40px;
}

.api-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.api-subtitle {
    color: #a0a0a0;
    font-size: 16px;
}

.api-section {
    padding: 40px 0;
}

.api-endpoint {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
}

.endpoint-method {
    display: inline-block;
    background: #dc2626;
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.endpoint-url {
    font-family: 'Courier New', monospace;
    font-size: 16px;
    margin-bottom: 16px;
    background: rgba(0, 0, 0, 0.3);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.endpoint-desc {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 20px;
}

.endpoint-params h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.param-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.param-name {
    font-family: 'Courier New', monospace;
    font-weight: 700;
}

.param-desc {
    color: #707070;
    font-size: 13px;
}

@media (max-width: 968px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .history-item {
        flex-direction: column;
        align-items: flex-start;
    }
}