* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --success-gradient: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    --card-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    --hover-shadow: 0 30px 80px rgba(102, 126, 234, 0.3);
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.sphere-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #ff6b6b, #ffd93d);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.sphere-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #6bcf7f, #4ecdc4);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}

.sphere-3 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #a8edea, #fed6e3);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-icon {
    position: absolute;
    font-size: 30px;
    opacity: 0.1;
    animation: floatIcons 15s infinite ease-in-out;
}

.float-icon:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 20%; right: 15%; animation-delay: 3s; }
.float-icon:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 6s; }
.float-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 9s; }
.float-icon:nth-child(5) { top: 50%; left: 50%; animation-delay: 12s; }

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-30px) rotate(120deg);
    }
    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

@keyframes floatIcons {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
    }
    75% {
        transform: translate(30px, 30px) scale(1.05);
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 50px;
    animation: slideDown 0.6s ease;
}

.logo {
    font-size: 32px;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fff 0%, #f0f0f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a.active,
nav a:hover {
    color: white;
}

nav a.active::after,
nav a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: white;
}

.btn-get-started {
    padding: 12px 30px;
    background: white;
    color: #667eea;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-get-started:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Hero Section */
.pricing-hero {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeIn 1s ease;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.toggle-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.save-badge {
    background: var(--success-gradient);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.toggle-switch {
    position: relative;
    width: 66px;
    height: 34px;
    display: inline-block;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 34px;
    transition: 0.4s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background: white;
    border-radius: 50%;
    transition: 0.4s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--success-gradient);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(32px);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    animation: scaleIn 0.6s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    background: white;
    transform: scale(1.05);
    box-shadow: 0 30px 100px rgba(102, 126, 234, 0.3);
    border: 3px solid transparent;
    background-image: linear-gradient(white, white), var(--primary-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-gradient);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(240, 147, 251, 0.4);
    animation: float 3s ease-in-out infinite;
}

.card-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.pricing-card:hover .card-glow {
    opacity: 1;
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 10px;
}

.plan-description {
    color: #718096;
    font-size: 16px;
    margin-bottom: 25px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    color: #718096;
    margin-right: 5px;
}

.price {
    font-size: 56px;
    font-weight: 800;
    color: #2d3748;
}

.period {
    font-size: 18px;
    color: #718096;
    margin-left: 8px;
}

.price-note {
    font-size: 14px;
    color: #a0aec0;
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #4a5568;
    border-bottom: 1px solid #f7fafc;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li.disabled {
    color: #cbd5e0;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 700;
}

.x-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #f0f0f0;
    color: #cbd5e0;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
}

.plan-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #edf2f7;
    transform: translateY(-2px);
    border-color: #cbd5e0;
}

.plan-footer {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #a0aec0;
}

/* Custom Plan Section */
.custom-plan-section {
    background: white;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--card-shadow);
    overflow: hidden;
    position: relative;
}

.custom-plan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    pointer-events: none;
}

.custom-plan-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.custom-icon {
    font-size: 64px;
    margin-right: 40px;
}

.custom-text h2 {
    font-size: 32px;
    color: #2d3748;
    margin-bottom: 10px;
}

.custom-text p {
    font-size: 18px;
    color: #718096;
}

.btn-contact-sales {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: var(--primary-gradient);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-contact-sales:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.btn-contact-sales .arrow {
    transition: transform 0.3s ease;
}

.btn-contact-sales:hover .arrow {
    transform: translateX(5px);
}

/* Comparison Table */
.comparison-section {
    background: white;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--card-shadow);
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #2d3748;
    text-align: center;
    margin-bottom: 50px;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table th {
    background: #f7fafc;
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #2d3748;
    font-size: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.comparison-table th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table th:last-child {
    border-radius: 0 12px 0 0;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #4a5568;
}

.feature-name {
    font-weight: 600;
    color: #2d3748;
}

.featured-col {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, rgba(102, 126, 234, 0.02) 100%);
    position: relative;
}

.icon-yes {
    color: #48bb78;
    font-weight: 700;
}

.icon-no {
    color: #f56565;
}

/* Trust Section */
.trust-section {
    margin-bottom: 80px;
}

.trust-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.trust-item h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    background: white;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 80px;
    box-shadow: var(--card-shadow);
}

.faq-grid {
    display: grid;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.faq-question {
    width: 100%;
    padding: 25px;
    background: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    color: #718096;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: white;
    border-radius: 24px;
    padding: 80px 60px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0.05;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 42px;
    color: #2d3748;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content > p {
    font-size: 20px;
    color: #718096;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.btn-start-free,
.btn-schedule-demo {
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-start-free {
    background: var(--primary-gradient);
    color: white;
}

.btn-start-free:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

.btn-schedule-demo {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-schedule-demo:hover {
    background: #f7fafc;
    transform: translateY(-3px);
}

.cta-note {
    font-size: 14px;
    color: #a0aec0;
}

/* Footer */
footer {
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px 20px 0 0;
}

.footer-content {
    text-align: center;
    color: white;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 80px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    nav {
        display: none;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .custom-plan-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .custom-icon {
        margin-right: 0;
    }
    
    .comparison-section,
    .faq-section,
    .cta-section {
        padding: 40px 20px;
    }
    
    .comparison-table {
        overflow-x: scroll;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .plan-name {
        font-size: 24px;
    }
    
    .price {
        font-size: 42px;
    }
    
    .billing-toggle {
        flex-direction: column;
    }
}