/* Pricing Page Styles - Account for notification banner + navbar */
.pricing-hero {
    padding: 140px 0 50px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.12) 50%, rgba(240, 147, 251, 0.15) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

@media (min-width: 480px) {
    .pricing-hero-content {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .pricing-hero-content {
        padding: 0;
    }
}

.pricing-hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-color);
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.pricing-hero-title .highlight-text {
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline-block;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

/* Pricing Plans Grid */
.pricing-plans {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(102, 126, 234, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
    align-items: stretch;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.pricing-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

/* Uniform spacing throughout cards */
.pricing-card>* {
    margin-bottom: 0;
}

.pricing-card>*:not(:last-child) {
    margin-bottom: 32px;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.pricing-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-6px);
    border-color: var(--text-color);
}

/* Plan A - Theme Colors */
.pricing-card.plan-a {
    border: 2px solid var(--border-color);
}

.pricing-card.plan-a:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Plan B - Theme Colors */
.pricing-card.plan-b {
    border: 2px solid var(--border-color);
}

.pricing-card.plan-b:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card-header {
    margin-bottom: 32px;
    flex-shrink: 0;
}

.pricing-plan-name {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.pricing-price-wrapper {
    width: 100%;
}

.pricing-price-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-price-main {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    flex: 1;
    min-width: 140px;
}

.pricing-price-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 12px;
}

.pricing-price-divider i {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 600;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-price-secondary {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    flex: 1;
    min-width: 100px;
}

.pricing-amount-large {
    font-size: 52px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-period-small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}


.pricing-amount-small {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-period {
    font-size: 18px;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-features-box {
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

.pricing-features-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.plan-a-box,
.plan-b-box {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05) 0%, rgba(255, 107, 53, 0.05) 50%, rgba(102, 126, 234, 0.05) 100%);
    border: 1px solid var(--border-subtle);
}

.plan-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.plan-header .check-icon {
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.plan-header-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
}

.plan-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.5;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

.plan-features-list .check-icon {
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
    flex-shrink: 0;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

.pricing-cta {
    margin-top: auto;
    flex-shrink: 0;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-plan-a,
.btn-plan-b {
    background: #000000;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-plan-a::before,
.btn-plan-b::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-plan-a:hover::before,
.btn-plan-b:hover::before {
    left: 100%;
}

.btn-plan-a:hover,
.btn-plan-b:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Brand Comparison Section */
.brand-comparison-section {
    padding: 60px 0;
    background: #ffffff;
}

.comparison-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.comparison-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.04em;
}

.comparison-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.comparison-table-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

.comparison-legend-top {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    background: #ffffff;
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}

.comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
    width: 8px;
}

.comparison-table-wrapper::-webkit-scrollbar-track {
    background: var(--bg-light);
    border-radius: 4px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

.comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--text-light);
}

.brand-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #ffffff;
    min-width: 1000px;
    table-layout: fixed;
    display: table;
}

/* Fix for sticky header - this is the key fix */
.brand-comparison-table thead.comparison-table-header-sticky {
    position: sticky !important;
    top: 0 !important;
    z-index: 999 !important;
    background: #ffffff !important;
    display: table-header-group !important;
    margin: 0 !important;
    padding: 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.brand-comparison-table thead.comparison-table-header-sticky tr {
    display: table-row;
    width: 100%;
}

.brand-comparison-table thead.comparison-table-header-sticky th {
    background: var(--bg-light) !important;
    border-bottom: 2px solid var(--border-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    margin: 0 !important;
    padding: 24px 20px !important;
}

.brand-comparison-table th {
    padding: 24px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--border-color);
    white-space: normal;
    /* Allow wrapping for long names */
    word-wrap: break-word;
    background: #ffffff;
    vertical-align: middle;
}

.brand-comparison-table th.feature-col {
    width: 25%;
    min-width: 200px;
    text-align: left;
    padding-left: 24px;
    white-space: nowrap;
}

.brand-comparison-table th.platform-col {
    width: 10%;
    text-align: center;
    min-width: 120px;
    border-left: 1px solid var(--border-subtle);
}

.brand-comparison-table th.platform-col:first-of-type {
    border-left: none;
}

.brand-comparison-table th.platform-col:last-of-type {
    border-right: 1px solid var(--border-subtle);
}

.brand-comparison-table th.bizeasy-col {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08) 0%, rgba(255, 107, 53, 0.08) 50%, rgba(102, 126, 234, 0.08) 100%);
    position: relative;
}

.brand-comparison-table th.bizeasy-col::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    bottom: 0;
    background: linear-gradient(180deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
}

.brand-comparison-table th.bizeasy-col::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    bottom: 0;
    background: linear-gradient(180deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
}

.platform-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.platform-name {
    font-size: 15px;
    font-weight: 800;
    color: #000000;
    /* Max contrast */
    display: block;
    margin-top: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.highlight-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

.brand-comparison-table tbody {
    display: table-row-group;
}

.brand-comparison-table tbody tr {
    border-bottom: 1px solid var(--border-subtle);
    transition: var(--transition);
    display: table-row;
}

/* Ensure all rows have clear horizontal separation */
.brand-comparison-table tbody tr td {
    border-bottom: 1px solid var(--border-subtle);
}

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

.brand-comparison-table tbody tr:not(.section-row):hover {
    background: var(--bg-light);
}

.brand-comparison-table tbody tr:not(.section-row):hover .bizeasy-cell {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12) 0%, rgba(255, 107, 53, 0.12) 50%, rgba(102, 126, 234, 0.12) 100%);
}

.brand-comparison-table tbody tr:not(.section-row):hover td.feature-name {
    background: var(--bg-light);
}

.brand-comparison-table td {
    padding: 18px 20px;
    font-size: 15px;
    color: var(--text-color);
    vertical-align: middle;
    background: #ffffff;
    line-height: 1.6;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
    display: table-cell;
}

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

/* Ensure section header cells are left-aligned, not center-aligned */
.brand-comparison-table td.section-header-cell {
    text-align: left !important;
}

.brand-comparison-table td.feature-name {
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-color);
    background: var(--bg-light);
    font-size: 15px;
    min-width: 250px;
    padding-left: 24px;
    text-align: left;
}

.brand-comparison-table td.feature-name:last-child {
    font-weight: 400;
    color: var(--text-light);
    font-style: italic;
}

/* Add borders between platform columns and center align content */
.brand-comparison-table tbody tr td:not(.feature-name) {
    border-left: 1px solid var(--border-subtle);
    text-align: center;
}

.brand-comparison-table tbody tr td:not(.feature-name):first-of-type {
    border-left: none;
}

.brand-comparison-table tbody tr td:not(.feature-name):last-of-type {
    border-right: 1px solid var(--border-subtle);
}

/* Ensure bizeasy-cell is also centered */
.brand-comparison-table td.bizeasy-cell {
    text-align: center;
}

.brand-comparison-table td.bizeasy-cell {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.06) 0%, rgba(255, 107, 53, 0.06) 50%, rgba(102, 126, 234, 0.06) 100%);
    font-weight: 600;
    position: relative;
}

.brand-comparison-table td.bizeasy-cell::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    bottom: 0;
    background: linear-gradient(180deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
}

.brand-comparison-table td.bizeasy-cell::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    bottom: 0;
    background: linear-gradient(180deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
}

.check-full {
    color: #23a50f;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.check-partial {
    color: #f59e0b;
    font-weight: 600;
    font-size: 20px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.check-dash {
    color: #ef4444;
    font-weight: 700;
    font-size: 20px;
    display: inline-block;
    min-width: 24px;
    text-align: center;
}

.feature-detail {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 8px;
    font-style: italic;
    display: inline-block;
}

.section-row {
    background: var(--bg-subtle) !important;
}

.section-row td {
    background: var(--bg-subtle) !important;
    border-bottom: 2px solid var(--border-color) !important;
}

.section-header-cell {
    padding: 18px 24px !important;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-color) !important;
    border-bottom: 2px solid var(--border-color);
    border-top: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--bg-subtle) 0%, var(--bg-light) 100%) !important;
    position: sticky;
    /* Adjust this based on header height */
    z-index: 998;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    text-align: left !important;
    font-family: inherit;
}

.comparison-legend-top .legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-legend-top .legend-icon {
    font-size: 18px;
    font-weight: 600;
}

.comparison-legend-top .legend-text {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
}

.comparison-legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-icon {
    font-size: 18px;
    font-weight: 600;
}

.legend-text {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 400;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-hero-title {
        font-size: 48px;
    }

    .comparison-title {
        font-size: 40px;
    }

    .comparison-table-container {
        padding: 0 16px;
    }

    .brand-comparison-table {
        min-width: 1200px;
    }

    .comparison-table-wrapper {
        height: auto;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        padding: 140px 0 60px;
    }

    .pricing-hero-title {
        font-size: 40px;
    }

    .pricing-hero-subtitle {
        font-size: 18px;
    }

    .pricing-plans,
    .brand-comparison-section {
        padding: 48px 0;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-amount-large {
        font-size: 48px;
    }

    .pricing-amount-small {
        font-size: 28px;
    }

    .comparison-title {
        font-size: 32px;
    }

    .comparison-subtitle {
        font-size: 18px;
    }

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

    .comparison-legend-top {
        justify-content: center;
        gap: 16px;
    }

    .brand-comparison-table th,
    .brand-comparison-table td {
        padding: 12px 10px;
        font-size: 13px;
    }

    .brand-comparison-table td.feature-name {
        font-size: 13px;
        min-width: 180px;
    }

    .feature-detail {
        font-size: 11px;
    }

    .check-full,
    .check-partial,
    .check-dash {
        font-size: 18px;
    }

    .comparison-legend {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .comparison-table-wrapper {
        height: auto;
    }

    .section-header-cell {
        top: 56px;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 120px 0 50px;
    }

    .pricing-hero-title {
        font-size: 32px;
        line-height: 1.2;
    }

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

    .pricing-plans,
    .brand-comparison-section {
        padding: 40px 0;
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-plan-name {
        font-size: 20px;
    }

    .pricing-amount-large {
        font-size: 40px;
    }

    .pricing-amount-small {
        font-size: 24px;
    }

    .pricing-period {
        font-size: 16px;
    }

    .pricing-features-box {
        padding: 20px;
    }

    .plan-features-list li {
        font-size: 13px;
    }

    .comparison-title {
        font-size: 28px;
    }

    .comparison-subtitle {
        font-size: 16px;
    }

    .comparison-header {
        margin-bottom: 32px;
    }

    .brand-comparison-table th,
    .brand-comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }

    .platform-name {
        font-size: 14px;
    }

    .highlight-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .feature-detail {
        font-size: 11px;
    }

    .comparison-table-wrapper {
        height: auto;
    }

    .section-header-cell {
        top: 50px;
    }
}

/* Animation for gradient shift */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Gradient highlight class */
.gradient-highlight {
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

/* Feature Cards Section */
.feature-cards-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(102, 126, 234, 0.02) 50%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.feature-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.feature-cards-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 1;
}

.feature-cards-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.feature-cards-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease-out backwards;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
}

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

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-color);
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(7) {
    animation-delay: 0.7s;
}

.feature-card:nth-child(8) {
    animation-delay: 0.8s;
}

.feature-card:nth-child(9) {
    animation-delay: 0.9s;
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1) 0%, rgba(255, 107, 53, 0.1) 50%, rgba(102, 126, 234, 0.1) 100%);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.feature-card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(255, 107, 53, 0.15) 50%, rgba(102, 126, 234, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-card-icon::before {
    opacity: 1;
}

.feature-card-icon i {
    font-size: 28px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-card-icon i {
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.feature-card-heading {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 16px;
    color: var(--text-color);
    letter-spacing: -0.01em;
}

.feature-card-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.feature-card-bonus {
    position: relative;
}

.feature-card-bonus::after {
    content: 'BONUS';
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 14px;
    background: linear-gradient(90deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    box-shadow: 0 2px 8px rgba(168, 85, 247, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .feature-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .feature-cards-title {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .feature-cards-section {
        padding: 80px 0;
    }

    .feature-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-cards-title {
        font-size: 40px;
    }

    .feature-cards-subtitle {
        font-size: 18px;
    }

    .feature-card {
        padding: 24px;
    }

    .feature-card-title {
        font-size: 22px;
    }

    .feature-card-heading {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .feature-cards-section {
        padding: 60px 0;
    }

    .feature-cards-title {
        font-size: 32px;
    }

    .feature-cards-subtitle {
        font-size: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card-title {
        font-size: 20px;
    }

    .feature-card-heading {
        font-size: 16px;
    }

    .feature-card-description {
        font-size: 14px;
    }
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #a855f7 0%, #f093fb 25%, #ff6b35 50%, #f5576c 75%, #667eea 100%);
    background-size: 200% 200%;
    animation: gradient-shift 8s ease infinite;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-cta-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-cta-badge i {
    font-size: 16px;
}

.pricing-cta-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.pricing-cta-title .gradient-highlight {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.pricing-cta-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.pricing-cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-align: left;
    transition: var(--transition);
}

.pricing-cta-benefit-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pricing-cta-benefit-item i {
    font-size: 18px;
    color: #ffffff;
    flex-shrink: 0;
}

.pricing-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta-stat {
    padding: 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

.pricing-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.btn-cta-large {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: -0.01em;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-cta-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.pricing-cta-buttons .btn-primary {
    background: #ffffff;
    color: #000000;
}

.pricing-cta-buttons .btn-primary:hover {
    background: #f5f5f5;
}

.pricing-cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.pricing-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.pricing-cta-guarantee {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.pricing-cta-guarantee i {
    font-size: 18px;
}

.pricing-cta-guarantee strong {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cta-title {
        font-size: 48px;
    }

    .pricing-cta-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .pricing-cta-section {
        padding: 60px 0;
    }

    .pricing-cta-title {
        font-size: 36px;
    }

    .pricing-cta-subtitle {
        font-size: 18px;
    }

    .pricing-cta-benefits {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pricing-cta-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-large {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-cta-section {
        padding: 48px 0;
    }

    .pricing-cta-title {
        font-size: 28px;
    }

    .pricing-cta-subtitle {
        font-size: 16px;
    }

    .pricing-cta-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }
}