/* Price Comparison */
.price-comparison {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.comparison-features {
    display: grid;
    gap: 1.5rem;
}

.comparison-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comparison-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 12px;
}

.feature-content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    animation: cardFadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
    animation-delay: 0.1s;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-header {
    margin-bottom: 2rem;
    background: white !important;
    border-radius: 12px 12px 0 0;
    padding: 1.5rem 0 1rem 0;
    box-shadow: none;
    position: relative;
}

.pricing-header h3,
.pricing-header .amount,
.pricing-header .period {
    color: var(--text-color);
}

.featured-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 2;
    animation: badgePulse 2s infinite;
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.pricing-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    border: none;
    transition: transform 0.2s cubic-bezier(.23,1.01,.32,1), box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(79,70,229,0.08);
}

.pricing-button:hover {
    background: var(--secondary-color);
    color: white;
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(129,140,248,0.18);
}

.pricing-button:active {
    transform: scale(0.97);
    box-shadow: 0 1px 4px rgba(79,70,229,0.12);
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.comparison-table h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
}

.table td {
    color: var(--text-color);
    opacity: 0.8;
    vertical-align: middle;
    padding: 1rem;
}

.table td.highlight {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

.table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .comparison-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-feature i {
        margin: 0 auto;
    }
}

:root {
    --primary-color: #4F46E5;
    --secondary-color: #818CF8;
    --background-color: #FFFFFF;
    --text-color: #1F2937;
    --card-bg: #F3F4F6;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.vpn-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-tag .text-muted {
    font-size: 1rem;
}

.badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.pricing-table {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.pricing-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 2fr 1fr;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease;
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row:hover {
    background-color: var(--card-bg);
}

.pricing-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-col h4 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-month {
    color: var(--text-color);
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.pricing-features i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .pricing-header {
        display: none;
    }
    
    .pricing-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 1rem;
    }
    
    .pricing-col {
        align-items: center;
    }
    
    .pricing-features {
        margin: 1rem 0;
    }
}

.bot-name {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 500;
}

.bot-name i {
    font-size: 1.4rem;
}

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

.feature-item {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
}

.apple-pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-option {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.pricing-option.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
    transform: scale(1.05);
}

.pricing-option.best-value {
    border: 2px solid var(--secondary-color);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

.pricing-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-option.featured:hover,
.pricing-option.best-value:hover {
    transform: translateY(-5px) scale(1.05);
}

.pricing-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
}

.pricing-option.best-value .featured-badge {
    background: var(--secondary-color);
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
}

.price .period {
    font-size: 0.9rem;
    color: var(--text-color);
    opacity: 0.7;
}

.pricing-features {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    opacity: 0.8;
}

.feature i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.pricing-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 0.95rem;
    margin-top: auto;
}

.pricing-button:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.pricing-option.best-value .pricing-button {
    background: var(--secondary-color);
}

.pricing-option.best-value .pricing-button:hover {
    background: var(--primary-color);
}

@media (max-width: 1200px) {
    .apple-pricing {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .apple-pricing {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-option.featured,
    .pricing-option.best-value {
        transform: none;
    }
    
    .pricing-option.featured:hover,
    .pricing-option.best-value:hover {
        transform: translateY(-5px);
    }
}

/* Technologies Section */
.tech-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 2rem;
    color: white;
}

.tech-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* How It Works Section */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.step-card p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Features Section */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.feature-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

@media (max-width: 768px) {
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
}

/* Technology Details Section */
.tech-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.tech-detail-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.tech-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.tech-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-detail-icon i {
    font-size: 1.5rem;
    color: white;
}

.tech-detail-content {
    flex-grow: 1;
}

.tech-detail-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.tech-detail-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.tech-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-detail-content ul li {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.tech-detail-content ul li:before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

@media (max-width: 992px) {
    .tech-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .tech-detail-card {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-detail-icon {
        margin: 0 auto;
    }
    
    .tech-detail-content ul li {
        text-align: left;
    }
}

.pricing-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-intro h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.pricing-intro .lead {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* FAQ Section */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-color);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-color);
    opacity: 0.8;
}

.faq-answer ol,
.faq-answer ul {
    margin: 0;
    padding-left: 1.25rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    opacity: 0.8;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--bg-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.platform-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.platform-item span {
    font-size: 0.9rem;
    color: var(--text-color);
    text-align: center;
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Support Section */
.support-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    border: 1px solid var(--border-color);
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.support-icon i {
    font-size: 2rem;
    color: white;
}

.support-content {
    flex-grow: 1;
}

.support-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.support-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.support-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.support-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
}

.support-feature i {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .support-card {
        flex-direction: column;
        text-align: center;
    }
    
    .support-icon {
        margin: 0 auto;
    }
    
    .support-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Pricing Section */
.pricing-container {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-comparison {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.comparison-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.comparison-header {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-header h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.comparison-features {
    display: grid;
    gap: 1.5rem;
}

.comparison-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.comparison-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--bg-color);
    padding: 1rem;
    border-radius: 12px;
}

.feature-content h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-color);
    opacity: 0.8;
    margin: 0;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.comparison-table h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.table {
    margin-bottom: 0;
}

.table th {
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 2px solid var(--border-color);
    padding: 1rem;
}

.table td {
    color: var(--text-color);
    opacity: 0.8;
    vertical-align: middle;
    padding: 1rem;
}

.table td.highlight {
    color: var(--primary-color);
    font-weight: 600;
    opacity: 1;
}

.table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .comparison-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-feature i {
        margin: 0 auto;
    }
}

.price-comparison .feature-icon {
    background: none !important;
    padding: 0 !important;
    border-radius: 0 !important;
    border: none !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .navbar-nav {
        background: white;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
        margin-top: 0.5rem;
        padding: 1rem 0.5rem;
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1.1rem;
        text-align: left;
    }
    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .features-grid,
    .pricing-cards,
    .tech-details {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .feature-item,
    .pricing-card,
    .tech-detail-card,
    .comparison-card {
        padding: 1.25rem !important;
    }
    .comparison-table,
    .pricing-container {
        padding: 1rem !important;
    }
    .faq-container {
        gap: 0.5rem;
    }
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    .faq-answer {
        padding: 0 1rem;
    }
    .btn,
    .pricing-button {
        font-size: 1rem;
        padding: 0.75rem 1rem;
    }
    .support-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem !important;
    }
    .support-icon {
        margin: 0 auto 1rem auto;
    }
    .support-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    .comparison-table .table th,
    .comparison-table .table td {
        padding: 0.5rem;
        font-size: 0.95rem;
    }
    .pricing-header {
        padding: 1rem 0 0.5rem 0 !important;
    }
    h1, h2, h3, h4 {
        font-size: 1.1em !important;
    }
}

@keyframes cardFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,0.5); }
  50% { box-shadow: 0 0 12px 6px rgba(129,140,248,0.25); }
}

.pricing-card {
  animation: cardFadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
  animation-delay: 0.1s;
}
.pricing-card.featured { animation-delay: 0.2s; }
.pricing-card.best-value { animation-delay: 0.3s; }

.featured-badge {
  animation: badgePulse 2s infinite;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-weight: bold;
  border-radius: 1em;
  padding: 0.4em 1em;
  font-size: 1em;
  box-shadow: 0 2px 8px rgba(79,70,229,0.12);
}

.pricing-button {
  transition: transform 0.2s cubic-bezier(.23,1.01,.32,1), box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(79,70,229,0.08);
}
.pricing-button:active {
  transform: scale(0.97);
  box-shadow: 0 1px 4px rgba(79,70,229,0.12);
}
.pricing-button:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(129,140,248,0.18);
}

@media (max-width: 768px) {
  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem !important;
    margin-bottom: 2rem;
  }
  .pricing-card {
    padding: 1.1rem 0.7rem !important;
    margin-bottom: 0.5rem;
    border-radius: 1.2em;
    box-shadow: 0 2px 12px rgba(79,70,229,0.08);
  }
  .pricing-header {
    padding: 0.7rem 0 0.3rem 0 !important;
    text-align: center;
  }
  .pricing-header h3 {
    font-size: 1.1em !important;
  }
  .featured-badge {
    font-size: 0.95em;
    padding: 0.3em 0.8em;
    margin-bottom: 0.5em;
  }
  .pricing-features {
    gap: 0.7em;
  }
  .feature {
    font-size: 1em;
    gap: 0.5em;
  }
  .feature-icon {
    width: 2.2em;
    height: 2.2em;
    font-size: 1.2em;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 0.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(79,70,229,0.10);
  }
  .pricing-button {
    width: 100%;
    font-size: 1.1em;
    padding: 1em 0;
    margin-top: 1em;
    border-radius: 0.8em;
  }
}

/* --- Новый современный блок тарифов --- */
.pricing-cards-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .pricing-cards-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .pricing-cards-modern {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.pricing-card-modern {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 4px 32px rgba(79,70,229,0.08), 0 1.5px 6px rgba(129,140,248,0.06);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: transform 0.25s cubic-bezier(.23,1.01,.32,1), box-shadow 0.25s;
  animation: cardFadeInUp 0.7s cubic-bezier(.23,1.01,.32,1) both;
}
.pricing-card-modern:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(79,70,229,0.16), 0 2px 8px rgba(129,140,248,0.10);
}

.badge-modern {
  position: absolute;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-weight: 600;
  border-radius: 1.2em;
  padding: 0.45em 1.2em;
  font-size: 1.05em;
  box-shadow: 0 2px 8px rgba(79,70,229,0.12);
  z-index: 2;
  letter-spacing: 0.01em;
  margin-bottom: 1.2rem;
  animation: badgePulse 2.2s infinite;
}
.badge-modern.pulse {
  animation: badgePulse 1.5s infinite;
}

.price-block-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
}
.amount-modern {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--primary-color);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.period-modern {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-top: 0.1em;
}
.plan-title-modern {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 1.1rem;
  margin-top: 0.2rem;
  text-align: center;
}
.features-list-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.features-list-modern li {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.08em;
  color: var(--text-color);
  margin-bottom: 0.7em;
  justify-content: center;
}
.features-list-modern i {
  color: var(--primary-color);
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 0.6em;
  font-size: 1.2em;
  padding: 0.35em;
  color: #fff;
  box-shadow: 0 1px 4px rgba(79,70,229,0.10);
}
.pricing-button-modern {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-size: 1.15em;
  font-weight: 600;
  border: none;
  border-radius: 0.9em;
  padding: 1em 0;
  margin-top: 0.7em;
  box-shadow: 0 2px 8px rgba(79,70,229,0.08);
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.pricing-button-modern:hover {
  background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(129,140,248,0.18);
}
.pricing-card-modern.popular {
  border: 2.5px solid var(--primary-color);
  box-shadow: 0 8px 32px rgba(79,70,229,0.18), 0 2px 8px rgba(129,140,248,0.12);
}
.pricing-card-modern.best-value {
  border: 2.5px solid var(--secondary-color);
  box-shadow: 0 8px 32px rgba(129,140,248,0.18), 0 2px 8px rgba(79,70,229,0.12);
}
@media (max-width: 768px) {
  .pricing-card-modern {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    border-radius: 1.1rem;
    margin-bottom: 0.5rem;
    min-width: 0;
  }
  .badge-modern {
    font-size: 0.98em;
    padding: 0.3em 0.8em;
    margin-bottom: 0.7rem;
  }
  .price-block-modern {
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .amount-modern {
    font-size: 2.1rem;
  }
  .plan-title-modern {
    font-size: 1.1rem;
    margin-bottom: 0.7rem;
  }
  .features-list-modern li {
    font-size: 1em;
    margin-bottom: 0.5em;
  }
  .pricing-button-modern {
    font-size: 1em;
    padding: 0.8em 0;
    border-radius: 0.7em;
  }
}
@keyframes cardFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(79,70,229,0.5); }
  50% { box-shadow: 0 0 12px 6px rgba(129,140,248,0.25); }
}

/* --- Минималистичный блок тарифов с фирменными цветами --- */
.pricing-cards-minimal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1200px) {
  .pricing-cards-minimal {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .pricing-cards-minimal {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.pricing-card-minimal {
  background: #fff;
  border-radius: 1.1rem;
  border: 2px solid var(--primary-color);
  padding: 2.2rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.plan-title-minimal {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}
.amount-minimal {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.2rem;
  line-height: 1.1;
}
.period-minimal {
  font-size: 1rem;
  color: var(--secondary-color);
  margin-bottom: 1.2rem;
}
.features-list-minimal {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  width: 100%;
}
.features-list-minimal li {
  font-size: 1em;
  color: var(--text-color);
  margin-bottom: 0.6em;
  text-align: center;
}
.pricing-button-minimal {
  width: 100%;
  background: var(--primary-color);
  color: #fff;
  font-size: 1.08em;
  font-weight: 500;
  border: none;
  border-radius: 0.6em;
  padding: 0.9em 0;
  margin-top: 0.7em;
  transition: background 0.18s;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.pricing-button-minimal:hover {
  background: var(--secondary-color);
}
@media (max-width: 768px) {
  .pricing-card-minimal {
    padding: 1.2rem 0.7rem 1.2rem 0.7rem;
    border-radius: 0.7rem;
    margin-bottom: 0.5rem;
  }
  .plan-title-minimal {
    font-size: 1rem;
    margin-bottom: 0.7rem;
  }
  .amount-minimal {
    font-size: 1.5rem;
  }
  .features-list-minimal li {
    font-size: 0.97em;
    margin-bottom: 0.4em;
  }
  .pricing-button-minimal {
    font-size: 0.98em;
    padding: 0.7em 0;
    border-radius: 0.5em;
  }
}
