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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 188, 212, 0.2);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00bcd4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 1rem 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0 3rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

#rotating-text {
    display: inline-block;
    min-width: 200px;
    text-align: center;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0.3;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-weight: 400;
}

.select-tool {
    font-size: 1rem;
    color: #00bcd4;
    font-weight: 600;
}

.tools {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.tool-card {
    background: rgba(20, 30, 50, 0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.tool-card:hover {
    border-color: #00e676;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

.tool-card h3 {
    font-size: 1.75rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.tool-description {
    font-size: 1rem;
    color: #00e676;
    font-weight: 600;
    margin-bottom: 1rem;
}

.tool-details {
    font-size: 0.95rem;
    color: #b0b0b0;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    flex: 1;
    background: rgba(0, 188, 212, 0.1);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: #00bcd4;
}

.badge small {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: #00e676;
    margin-top: 0.25rem;
}

.tool-button {
    width: 100%;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tool-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.telegram-section {
    text-align: center;
    margin: 3rem 0;
}

.telegram-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(20, 30, 50, 0.6);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 12px;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #00bcd4;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.telegram-link:hover {
    border-color: #00e676;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.3);
}

.telegram-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.api-explore {
    text-align: center;
    margin: 2rem 0 3rem;
}

.api-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00bcd4;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
}

.new-badge {
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
}

.trusted-by {
    text-align: center;
    margin: 4rem 0;
}

.trusted-by p {
    color: #b0b0b0;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    align-items: center;
}

.logo-placeholder {
    background: rgba(20, 30, 50, 0.6);
    border: 1px solid rgba(0, 188, 212, 0.3);
    border-radius: 8px;
    padding: 1rem 2rem;
    color: #00bcd4;
    font-weight: 600;
}

.pricing {
    margin: 5rem 0;
}

.pricing h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    text-align: center;
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: rgba(20, 30, 50, 0.6);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: #00e676;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

.plan-card.featured {
    border-color: #00e676;
    box-shadow: 0 0 30px rgba(0, 230, 118, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.plan-card h3 {
    font-size: 1.5rem;
    color: #00bcd4;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00e676;
    margin-bottom: 1.5rem;
}

.period {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #00bcd4;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-size: 0.9rem;
}

.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.buy-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.buy-button.current-plan {
    background: rgba(0, 188, 212, 0.2);
    color: #00bcd4;
    cursor: default;
}

.buy-button.current-plan:hover {
    transform: none;
    box-shadow: none;
}

.plan-card.current {
    border-color: rgba(0, 188, 212, 0.5);
}

.features-section {
    margin: 5rem 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.feature-card {
    background: rgba(20, 30, 50, 0.6);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00e676;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

.feature-card.full-width {
    grid-column: 1 / -1;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.feature-card ul {
    list-style: none;
}

.feature-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    border-left: 3px solid #00bcd4;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
}

.api-section {
    margin: 5rem 0;
    text-align: center;
}

.api-section h2 {
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.api-subtitle {
    color: #b0b0b0;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.api-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.api-feature {
    background: rgba(20, 30, 50, 0.6);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.api-feature:hover {
    border-color: #00e676;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.2);
}

.api-feature h3 {
    font-size: 1.25rem;
    color: #00bcd4;
    margin-bottom: 1rem;
}

.api-feature p {
    color: #b0b0b0;
}

.api-pricing {
    margin-top: 2rem;
}

.api-pricing p {
    color: #00e676;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.api-button {
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    color: #0a0e1a;
    border: none;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.api-button:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
}

.faq-section {
    margin: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 3rem;
}

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

.faq-item {
    background: rgba(20, 30, 50, 0.6);
    border: 2px solid rgba(0, 188, 212, 0.3);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #00e676;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #00bcd4;
    padding: 1.25rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: #00e676;
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: #b0b0b0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .container {
        padding: 10rem 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tools {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    border-top: 1px solid rgba(0, 188, 212, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.75rem;
    background: linear-gradient(135deg, #00bcd4 0%, #00e676 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #00bcd4;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
