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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(30, 30, 30, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(20, 20, 20, 0.5) 0%, transparent 30%);
    background-attachment: fixed;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 48%, rgba(124, 58, 237, 0.02) 49%, rgba(124, 58, 237, 0.02) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(124, 58, 237, 0.02) 49%, rgba(124, 58, 237, 0.02) 51%, transparent 52%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

.navbar {
    background: linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
    overflow: hidden;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(124, 58, 237, 0.03) 25%, 
        rgba(124, 58, 237, 0.05) 50%, 
        rgba(124, 58, 237, 0.03) 75%, 
        transparent 100%);
    animation: shimmer 8s infinite;
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 50%, rgba(124, 58, 237, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

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

.nav-logo {
    font-size: 1.8rem;
    font-weight: 300;
    color: #ffffff;
    display: flex;
    align-items: center;
    letter-spacing: 0.05em;
}

.nav-logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-center {
    font-size: 1.6rem;
    font-weight: 900;
    color: #ffffff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.3s ease;
    width: 100px;
    display: inline-block;
    height: 20px;
}

.nav-menu li a:hover {
    color: #ccc;
}

.nav-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-login {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #333;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-login:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #555;
}

.nav-signup {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(109, 40, 217, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.5);
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.nav-signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.nav-signup:hover::before {
    left: 100%;
}

.nav-signup:hover {
    background: linear-gradient(135deg, rgba(109, 40, 217, 0.95) 0%, rgba(91, 33, 182, 0.95) 100%);
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

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

header {
    text-align: center;
    margin-bottom: 60px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.95rem;
    color: #a0a0a0;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.single-toggle-btn {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #333;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 6px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: stretch;
}

.pricing-card {
    background-color: #111111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: #333;
}

.pricing-card.premium {
    border: 1px solid #444;
    background-color: #131313;
}

.pricing-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.price {
    text-align: center;
    margin-bottom: 35px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    margin-top: 8px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #888;
    align-self: flex-end;
    margin-bottom: 12px;
}

.feature-section {
    margin-bottom: 20px;
}

.feature-heading {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    padding-left: 4px;
}

.features {
    list-style: none;
    margin-bottom: 10px;
    flex-grow: 1;
}

.features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.95rem;
    color: #d0d0d0;
}

.features-secondary {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #222;
}

.feature-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #7c3aed;
}

.checkmark {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #666;
}

.info-icon {
    width: 16px;
    height: 16px;
    color: #666;
    margin-left: auto;
    cursor: pointer;
}

.cta-btn {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.cta-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(109, 40, 217, 0.9) 100%);
    color: #ffffff;
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Signup Page Styles */
.signup-container {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.signup-container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.signup-container .subtitle {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 50px;
}

.signup-form {
    background-color: #111111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 50px 40px;
    text-align: left;
}

.form-group {
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: #ffffff;
}

.form-group input {
    width: 100%;
    padding: 14px 18px;
    background-color: #0a0a0a;
    border: 1px solid #333;
    border-radius: 6px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #555;
    background-color: #0f0f0f;
}

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

.submit-btn {
    width: 100%;
    background-color: #ffffff;
    color: #000000;
    border: none;
    padding: 16px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.submit-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.nav-logo a {
    display: flex;
    align-items: center;
}

.bot-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bot-card {
    background-color: #111111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 40px 30px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    cursor: pointer;
    min-height: 600px;
}

.bot-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #7c3aed;
    box-shadow: 0 10px 40px rgba(124, 58, 237, 0.3);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, #111111 100%);
}

.bot-card.featured {
    border-color: #7c3aed;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, #111111 100%);
}

.bot-card.featured:hover {
    border-color: #9d5eff;
    box-shadow: 0 12px 50px rgba(124, 58, 237, 0.4);
}

.bot-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 100%);
    border-radius: 16px;
    padding: 16px;
}

.bot-icon svg {
    width: 48px;
    height: 48px;
}

.bot-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.bot-description {
    color: #bbb;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
    padding: 0 12px;
}

.bot-description .highlight {
    color: #7c3aed;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(157, 94, 255, 0.2) 100%);
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

.bot-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
    width: 100%;
    padding: 0 8px;
    flex-grow: 1;
}

.bot-features li {
    color: #bbb;
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-left: 24px;
    line-height: 1.6;
    position: relative;
    transition: color 0.2s ease, transform 0.2s ease;
}

.bot-features li:hover {
    color: #ddd;
    transform: translateX(4px);
}

.bot-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
    font-size: 1.1rem;
}

.bot-features .feature-icon-small {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.customization-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(157, 94, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    margin: auto 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.9) 0%, rgba(157, 94, 255, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.5);
    z-index: 10;
}
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bot-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7c3aed;
    margin: 0 0 20px 0;
}

.bot-card .cta-btn {
    margin-top: 0;
    width: 100%;
}

.bot-cards .pricing-card {
    max-width: 400px;
    width: 100%;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 100px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #888;
    margin-bottom: 45px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-primary {
    background-color: #7c3aed;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #6d28d9;
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid #333;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #000000;
    border-color: #ffffff;
}

.bot-section {
    margin-top: 80px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 60px 20px 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 968px) {
    .discount-badge {
        position: static;
        margin-left: 15px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .toggle-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .toggle-btn:first-child {
        border-radius: 6px;
        border-right: 1px solid #333;
    }
    
    .toggle-btn:nth-child(2) {
        border-radius: 6px;
    }
    
    .discount-badge {
        position: static;
        margin-left: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .signup-form {
        padding: 35px 25px;
    }
    
    .signup-container {
        margin: 30px auto;
    }
}

.footer {
    background-color: #0a0a0a;
    border-top: 1px solid #1a1a1a;
    padding: 20px 0;
    text-align: center;
    margin-top: 80px;
}

.footer p {
    color: #888;
    font-size: 0.85rem;
    margin: 0;
}

/* Back Button */
.back-btn {
    position: absolute;
    top: 140px;
    left: 20px;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.back-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.back-btn:hover {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(34, 34, 34, 0.95) 100%);
    border-color: #7c3aed;
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.back-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.back-btn:hover svg {
    transform: translateX(-4px);
}
