/* Optimized Section Spacing */
.feature-section {
    padding: 80px 0;
}

.feature-content {
    padding-right: 30px;
}

.feature-content h3 {
    margin-bottom: 20px;
    font-weight: 800;
    color: #060845;
}

.feature-list li {
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.feature-list li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #5333ED;
}

/* OS Grid Visualization */
.os-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 450px;
    margin: 0 auto;
}

.os-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.os-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(83, 51, 237, 0.15);
    border-color: #5333ED;
}

.os-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.os-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.os-card.ubuntu .os-icon {
    color: #E95420;
}

.os-card.debian .os-icon {
    color: #A81D33;
}

.os-card.centos .os-icon {
    color: #262577;
}

.os-card.windows .os-icon {
    color: #0078D6;
}

.os-card.rocky .os-icon {
    color: #10B981;
}

.os-card.custom .os-icon {
    color: #6c757d;
}

/* Pricing Visualizer */
.pricing-visual-wrapper {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.bill-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
}

.bill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px dashed #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.bill-title {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.bill-status {
    background: #d1fae5;
    color: #065f46;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.bill-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 15px;
    color: #666;
}

.bill-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
    font-weight: 800;
    font-size: 20px;
    color: #060845;
}

.floating-coin {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #ff7b00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.3);
    z-index: 3;
    top: -20px;
    right: -20px;
    animation: bounceCoin 3s infinite ease-in-out;
}

@keyframes bounceCoin {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


/* ==============================================
   RE-DESIGNED MODERN TABLE (Fixed Edges & Header)
   ============================================== */

.comparison-section {
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}

.table-responsive {
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Consistent Shadow */
    background: #fff;
    padding: 5px;
    /* Creates a small frame */
    border: 1px solid #eee;
}

.modern-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    /* Clean internal edges */
}

/* Header Cells */
.modern-comparison-table thead th {
    background: #fff;
    padding: 25px 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    color: #888;
    border-bottom: 2px solid #f4f4f4;
    text-align: center;
    vertical-align: middle;
}

.modern-comparison-table thead th:first-child {
    text-align: left;
    padding-left: 30px;
    color: #444;
    width: 25%;
}

/* Ucartz Highlight Column Header */
.modern-comparison-table thead th.ucartz-header {
    background: #5333ed;
    color: #fff;
    font-size: 18px;
    padding-top: 35px;
    /* Extra space for the badge inside */
    padding-bottom: 25px;
    position: relative;
    border: none;
    border-radius: 12px 12px 0 0;
    /* Rounded top for the 'card' look */
}

/* The "Best Value" Badge - INSIDE the cell to prevent cutting */
.modern-comparison-table thead th.ucartz-header .badge-best-value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7b00;
    color: #000;
    font-size: 10px;
    padding: 4px 10px;
    border-radius: 0 0 6px 6px;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Body Rows */
.modern-comparison-table tbody tr {
    transition: background-color 0.2s ease;
}

.modern-comparison-table tbody tr:hover {
    background-color: #f8f9fc;
    /* Subtle hover effect */
}

.modern-comparison-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #f4f4f4;
    color: #666;
    font-size: 15px;
    background: #fff;
}

.modern-comparison-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 700;
    color: #333;
}

/* Ucartz Column Cells */
.modern-comparison-table td.ucartz-col {
    background: #fdfdff;
    /* Very slight purple tint */
    border-left: 1px solid #f0f0f5;
    border-right: 1px solid #f0f0f5;
    color: #5333ed;
    font-weight: 700;
    position: relative;
    border-bottom-color: #eaeaef;
}

/* Highlight Animation / Glow for Ucartz Column */
.modern-comparison-table td.ucartz-col::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(83, 51, 237, 0.0);
    transition: background 0.3s;
    pointer-events: none;
}

.modern-comparison-table tr:hover td.ucartz-col {
    background: #f4f2ff;
    /* Stronger tint on row hover */
}

/* Bottom of Ucartz Column */
.modern-comparison-table tr:last-child td.ucartz-col {
    border-radius: 0 0 12px 12px;
    border-bottom: 2px solid #5333ed;
    /* Bottom accent */
}


/* Icons */
.comp-check {
    color: #00ca08;
    font-size: 18px;
    background: rgba(0, 202, 8, 0.1);
    padding: 5px;
    border-radius: 50%;
}

.comp-times {
    color: #dc3545;
    opacity: 0.5;
    font-size: 18px;
}

.comp-text {
    background: #5333ed;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .feature-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 40px;
    }

    .os-grid-wrapper,
    .pricing-visual-wrapper {
        margin-top: 20px;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    .comparison-section {
        padding: 40px 0;
    }

    .table-responsive {
        border: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
    }

    .modern-comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        /* Shadow on table itself for scrolling support */
    }

    .modern-comparison-table td:first-child,
    .modern-comparison-table thead th:first-child {
        position: sticky;
        left: 0;
        background: #fff;
        z-index: 5;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.05);
    }

    .modern-comparison-table thead th.ucartz-header {
        border-radius: 0;
        /* Reset radius on mobile to fit flow */
    }
}

.comparison-section+.mobHide {
    display: none !important;
}
/* Real-World Projects Section (Modern Use Cases) */
.use-cases-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.use-case-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    z-index: 1;
}

.use-case-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(83, 51, 237, 0.03) 0%, rgba(83, 51, 237, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.use-case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: transparent;
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
    position: relative;
}

/* Small rotating background element behind icon */
.use-case-icon-wrapper::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    transform: rotate(10deg);
    transition: transform 0.4s ease;
}

.use-case-card:hover .use-case-icon-wrapper {
    transform: scale(1.05);
}
.use-case-card:hover .use-case-icon-wrapper::after {
    transform: rotate(20deg);
}

/* Color Variants */
.use-case-card.store .use-case-icon-wrapper { background: rgba(83, 51, 237, 0.1); color: #5333ed; }
.use-case-card.agency .use-case-icon-wrapper { background: rgba(255, 123, 0, 0.1); color: #ff7b00; }
.use-case-card.dev .use-case-icon-wrapper { background: rgba(32, 201, 151, 0.1); color: #20c997; }
.use-case-card.app .use-case-icon-wrapper { background: rgba(233, 84, 32, 0.1); color: #E95420; }

.use-case-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.use-case-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
}

/* Support & Migration Section Styles */
.support-feature-section {
    padding: 80px 0;
    background: #f9fbfd;
}

.support-feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.support-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.support-icon {
    width: 60px;
    height: 60px;
    background: rgba(83, 51, 237, 0.1);
    color: #5333ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.support-feature-card.expert .support-icon {
    background: rgba(32, 201, 151, 0.1);
    color: #20c997;
}

.support-title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #060845;
}

.support-desc {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
}

.support-list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.support-list-item i {
    color: #20c997;
    margin-top: 4px;
    margin-right: 12px;
    font-size: 16px;
}

.migration-visual-wrapper {
    position: relative;
    padding: 20px;
}

.migration-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    border: 1px solid #eee;
}

.migration-header {
    background: #5333ed;
    padding: 15px 20px;
    color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.migration-body {
    padding: 25px;
}

.transfer-progress {
    margin-top: 20px;
}

.transfer-bar-bg {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.transfer-bar-fill {
    height: 100%;
    width: 0;
    background: #20c997;
    animation: transferAnim 3s ease-in-out infinite;
    border-radius: 4px;
}

.transfer-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 12px;
    color: #888;
    font-weight: 600;
}

@keyframes transferAnim {
    0% { width: 0; }
    50% { width: 70%; }
    100% { width: 100%; }
}

.floating-check {
    position: absolute;
    right: -15px;
    top: -15px;
    background: #20c997;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(32, 201, 151, 0.4);
    z-index: 3;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* Expert Support Card Visual Styles */
.expert-support-visual {
    position: relative;
    max-width: 380px;
    margin: 0 auto;
    perspective: 1000px;
}

.expert-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eef0f5;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Stronger shadow */
    padding: 25px;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

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

.expert-profile {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.expert-avatar {
    width: 50px;
    height: 50px;
    background: #5333ed;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

.expert-info .name {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    display: block;
}

.expert-info .role {
    font-size: 12px;
    color: #888;
    background: #f0f0f5;
    padding: 2px 8px;
    border-radius: 10px;
}

.session-details {
    background: #f9f9fc;
    border-radius: 12px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.session-time {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    display: flex;
    align-items: center;
}
.session-time i { margin-right: 8px; color: #5333ed; }

.session-price {
    font-size: 18px;
    font-weight: 800;
    color: #060845;
}

.book-btn {
    width: 100%;
    background: #20c997;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.book-btn:hover {
    background: #1baa80;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 201, 151, 0.3);
}

/* Floating Elements for Expert Card */
.float-tag {
    position: absolute;
    background: #ff7b00;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    top: -10px;
    right: 20px;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
    animation: bounceTag 2s infinite ease-in-out;
}

@keyframes bounceTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* Connect the two visuals (Migration & Expert) with alignment */
.visual-stack {
    display: flex;
    flex-direction: column;
    gap: 15rem; /* Large gap to align with left content blocks */
    align-items: center;
    justify-content: center;
    height: 100%;
    padding-top: 2rem;
}

/* Why Choose Section (Feature Grid) */
.why-choose-section {
    padding: 80px 0;
    position: relative;
    background: #fff;
}

.feature-grid-card {
    background: #fff;
    border: 1px solid #f0f0f5;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(83, 51, 237, 0.2);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

/* Icon Color Variants */
.feature-grid-card.blue .feature-icon-box { background: rgba(83, 51, 237, 0.1); color: #5333ed; }
.feature-grid-card.orange .feature-icon-box { background: rgba(255, 123, 0, 0.1); color: #ff7b00; }
.feature-grid-card.teal .feature-icon-box { background: rgba(32, 201, 151, 0.1); color: #20c997; }
.feature-grid-card.red .feature-icon-box { background: rgba(233, 84, 32, 0.1); color: #E95420; }

.feature-grid-card:hover .feature-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.feature-card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #060845;
}

.feature-card-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Modern Pricing Section */
.pricing-section-new {
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(180deg, #fcfcfc 0%, #fff 100%);
}

.plan-card-new {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.plan-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(83, 51, 237, 0.12);
    border-color: #5333ed;
}

/* Popular Badge */
.plan-card-new.popular {
    border: 2px solid #5333ed;
    box-shadow: 0 15px 40px rgba(83, 51, 237, 0.1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff7b00;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(255, 123, 0, 0.3);
}

.plan-header {
    text-align: center;
    border-bottom: 1px solid #f4f4f4;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.plan-name-new {
    font-size: 22px;
    font-weight: 800;
    color: #060845;
    margin-bottom: 10px;
}

.plan-price-new {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #5333ed;
    margin-bottom: 5px;
}

.currency-symbol {
    font-size: 20px;
    font-weight: 700;
    margin-right: 2px;
}

.price-value-new {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.price-period {
    color: #888;
    font-size: 14px;
    font-weight: 600;
    margin-left: 4px;
}

/* Feature List */
.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features-list li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
}

.plan-features-list li i {
    color: #20c997;
    margin-right: 12px;
    font-size: 16px;
    flex-shrink: 0;
}

.plan-features-list li.disabled {
    color: #aaa;
}

.plan-features-list li.disabled i {
    color: #ddd;
}

.plan-btn-new {
    display: block;
    width: 100%;
    padding: 14px;
    text-align: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline-primary-new {
    background: #fff;
    border: 2px solid #5333ed;
    color: #5333ed;
}

.btn-outline-primary-new:hover {
    background: #5333ed;
    color: #fff;
    box-shadow: 0 5px 15px rgba(83, 51, 237, 0.25);
}

/* Primary Highlight Button */
.plan-card-new.popular .btn-outline-primary-new {
    background: #5333ed;
    color: #fff;
}
.plan-card-new.popular .btn-outline-primary-new:hover {
    background: #4021d6;
    box-shadow: 0 8px 20px rgba(83, 51, 237, 0.4);
}

/* Tech Specs Grid inside Card */
.tech-specs {
    dislay: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    display: none; /* Can toggle if needed, or keep inline */
}

/* Pricing Toggle Switch Styles */
.pricing-switch-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.switch-label {
    font-size: 16px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: color 0.3s;
}

.switch-label.active {
    color: #5333ed;
}

.switch-toggle {
    position: relative;
    width: 56px;
    height: 30px;
    background: #e9ecef;
    border-radius: 30px;
    margin: 0 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.switch-toggle.active {
    background: #5333ed;
}

.switch-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.switch-toggle.active .switch-circle {
    transform: translateX(26px);
}

.save-badge {
    background: #eafbf3;
    color: #20c997;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 10px;
    border: 1px solid #bdf2d9;
    animation: pulse 2s infinite;
}

/* Fix for Grid Layout Crash on Bootstrap 3 */
#pricing-row-fix {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

#pricing-row-fix > .col-lg-3 {
    display: flex;
    margin-bottom: 30px;
}

#pricing-row-fix .plan-card-new {
    width: 100%;
}

/* Discount Strike-through */
.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: 500;
}

/* Modern Testimonials Details */
.testimonials-section {
    padding: 100px 0;
    background: #f9fbfd;
    position: relative;
    overflow: hidden;
}

.testimonial-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #eff2f7;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(83, 51, 237, 0.08);
    border-color: rgba(83, 51, 237, 0.1);
}

.testimonial-quote-icon {
    font-size: 40px;
    color: #e3e6f0;
    position: absolute;
    top: 25px;
    right: 30px;
    z-index: 0;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-user {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f5;
    padding-top: 20px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 2px solid #5333ed;
}

.user-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.user-info .stars {
    color: #ffb100;
    font-size: 13px;
    margin-top: 4px;
}

.testimonial-title {
    font-size: 18px;
    font-weight: 700;
    color: #5333ed;
    margin-bottom: 10px;
    display: block;
}

/* Modern FAQ Section Styles */
.faq-section-modern {
    padding: 80px 0;
    background: #fff;
}

.faq-header {
    margin-bottom: 50px;
    text-align: center;
}

.faq-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.accordion-modern .accordion-item {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-modern .accordion-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-color: rgba(83, 51, 237, 0.2);
}

.accordion-modern .accordion-header {
    margin: 0;
}

.accordion-modern .accordion-button {
    background: #fff;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: color 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed) {
    color: #5333ed;
    background: #f9fbfd;
}

.accordion-modern .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

.accordion-modern .accordion-button::after {
    content: '\f067'; /* FontAwesome Plus */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 14px;
    color: #ccc;
    transition: transform 0.3s ease;
}

.accordion-modern .accordion-button:not(.collapsed)::after {
    content: '\f068'; /* FontAwesome Minus */
    color: #5333ed;
    transform: rotate(180deg);
}

.accordion-modern .accordion-body {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.6;
    background: #f9fbfd;
    border-top: 1px dashed #eee;
}

/* Hide default Bootstrap arrow if using native bootstrap classes */
.accordion-button::after {
    background-image: none !important; 
}

/* Applications Grid Section */
.apps-section-modern {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    height: 100%;
}

.app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(83, 51, 237, 0.1);
    border-color: #5333ed;
    color: #5333ed;
}

.app-icon {
    font-size: 32px;
    margin-bottom: 15px;
    color: #5333ed;
    transition: transform 0.3s ease;
}

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

.app-name {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

.app-arrow {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #5333ed;
}

.app-card:hover .app-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Modern Trust Strip */
.trust-strip-modern {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #f0f0f0;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.trust-item:hover {
    transform: translateY(-2px);
}

.trust-logo-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #333;
    font-size: 16px;
    margin-bottom: 8px;
}

.trust-logo-img {
    height: 24px;
    width: auto;
}

.trust-stars {
    color: #5333ed; /* Matching the purple theme */
    font-size: 14px;
    letter-spacing: 2px;
}

.trust-stars .fa-star-half-alt {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .trust-grid {
        justify-content: center;
        gap: 40px;
    }
    
    .trust-item {
        width: 45%; 
    }
}

/* Override border for trust strip */
.trust-strip-modern {
    border-bottom: none;
    border: none;
}

/* Need More Section - Redesign */
.need-more-section {
    background: #f9fbfd;
    position: relative;
    padding: 100px 0;
}

.need-more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 50px auto 0;
}

.need-more-card {
    background: #fff;
    border: 1px solid #eef0f5;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.need-more-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(83, 51, 237, 0.12);
    border-color: #5333ed;
}

.need-more-icon {
    width: 60px;
    height: 60px;
    background: rgba(83, 51, 237, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #5333ed;
    font-size: 24px;
    transition: all 0.3s ease;
}

.need-more-card:hover .need-more-icon {
    background: #5333ed;
    color: #fff;
}

.need-more-title {
    font-size: 18px;
    font-weight: 800;
    color: #060845;
    margin-bottom: 10px;
    display: block;
}

.need-more-arrow {
    color: #5333ed;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0.8;
}

.need-more-card:hover .need-more-arrow {
    opacity: 1;
    gap: 12px;
}

/* Refined Pricing Card Styles */
.plan-price-new {
    min-height: 100px; /* Fixed height to prevent layout shift */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.main-price-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    line-height: 1;
    color: #060845;
}

.currency-sym {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
}

.price-val {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #5333ed;
}

.price-term {
    font-size: 16px;
    color: #999;
    align-self: flex-end;
    margin-bottom: 8px;
    font-weight: 600;
}

/* Discount & Original Price Styles */
.meta-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
}

.old-price {
    text-decoration: line-through;
    color: #aaa;
}

.discount-tag {
    background: #ffe0e3;
    color: #dc3545;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Plan Card Cleanups */
.plan-card-new {
    padding: 40px 30px;
    border: 1px solid #eee;
    margin-bottom: 30px;
}

.plan-name-new {
    font-size: 20px;
    color: #060845; 
    margin-bottom: 10px;
}
