/* ===========================
   Pricing Page Specific Styles
   =========================== */

/* Pricing Hero */
.pricing-hero {
    padding: 60px 0 60px;
    background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 50%, #f4f8ff 100%);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.billing-label {
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-badge {
    background: linear-gradient(135deg, #00D0A0 0%, #00B890 100%);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
    margin-top: 0;
}

/* Switch Toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--gray-400);
    transition: 0.4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--gradient-primary);
}

input:checked + .slider:before {
    transform: translateX(30px);
}

/* Main Pricing Section */
.pricing-main {
    padding: 60px 0;
    background: var(--gray-50);
}

/* Enhanced Pricing Cards */
.pricing-main .pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-main .pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-main .pricing-card.featured {
    transform: scale(1.05);
    z-index: 1;
}

.pricing-main .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Pricing Features */
.pricing-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.pricing-features li.disabled i {
    color: var(--danger-color) !important;
}

.pricing-features li.highlight {
    font-weight: 600;
    background: rgba(255, 184, 0, 0.1);
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin: 0.5rem 0;
}

/* Special Offer with Timer */
.special-offer {
    margin-top: 3rem;
    background: linear-gradient(135deg, #fff4e6 0%, #fffbf5 100%);
    border: 2px solid var(--warning-color);
    border-radius: 1rem;
    padding: 2rem;
}

.offer-timer {
    margin-top: 1.5rem;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 184, 0, 0.2);
}

.timer-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--gray-700);
}

.timer-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.timer-unit {
    text-align: center;
}

.timer-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--warning-color);
    line-height: 1;
}

.timer-text {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

/* Feature Comparison Section */
.feature-comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table .table {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
    background: var(--gray-50);
}

.comparison-table th {
    padding: 1.5rem 1rem;
    font-weight: 600;
    border: none;
    vertical-align: middle;
}

.comparison-table td {
    padding: 1rem;
    border-color: var(--gray-200);
    vertical-align: middle;
}

.plan-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.plan-header strong {
    font-size: 1.125rem;
    color: var(--gray-900);
}

.plan-header span {
    font-size: 0.875rem;
    color: var(--primary-color);
    font-weight: 600;
}

.featured-column {
    background: rgba(94, 23, 235, 0.03);
    position: relative;
}

.featured-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.category-row {
    background: var(--gray-50);
}

.category-row td {
    padding: 1rem;
    font-size: 1rem;
    color: var(--gray-800);
}

.category-row i {
    margin-right: 0.5rem;
    font-size: 1.25rem;
}

/* ROI Calculator Section */
.roi-calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f3ff 0%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.roi-calculator-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 50%;
    height: 150%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.calculator-inputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calculator-input label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.calculator-input label i {
    color: var(--primary-color);
}

.form-range {
    --bs-form-range-track-bg: var(--gray-300);
    --bs-form-range-thumb-bg: var(--primary-color);
    --bs-form-range-thumb-active-bg: var(--primary-dark);
}

.roi-payback {
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 160, 0, 0.1) 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.roi-payback i {
    font-size: 2rem;
    color: var(--warning-color);
}

/* ROI Benefits */
.roi-benefits {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.roi-benefits h3 {
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.benefit-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.benefit-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-content h4 {
    margin-bottom: 0.5rem;
    color: var(--gray-900);
    font-size: 1.125rem;
}

.benefit-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.benefit-stat {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(94, 23, 235, 0.1);
    color: var(--primary-color);
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.accordion {
    margin-top: 2rem;
}

.accordion-item {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: white;
    color: var(--gray-900);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary-color);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235E17EB'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.accordion-body {
    padding: 1.5rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 991px) {
    .pricing-hero {
        padding: 100px 0 40px;
    }
    
    .pricing-main .pricing-card.featured {
        transform: none;
    }
    
    .timer-countdown {
        gap: 1rem;
    }
    
    .timer-value {
        font-size: 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .roi-benefits {
        margin-top: 3rem;
    }
}

@media (max-width: 767px) {
    .billing-toggle {
        font-size: 0.875rem;
    }
    
    .pricing-cards {
        margin-top: 2rem;
    }
    
    .pricing-price .price {
        font-size: 2.5rem;
    }
    
    .timer-countdown {
        flex-wrap: wrap;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}

/* Usage Limits Section - Horizontal Modern Table */
.usage-limits {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbff 0%, #ffffff 100%);
}

/* Comparison Header */
.comparison-header {
    background: white;
    border-radius: 1rem 1rem 0 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    margin-bottom: 0;
    position: sticky;
    top: 70px;
    z-index: 10;
    border-bottom: 2px solid var(--primary-color);
}

.comparison-header .comparison-feature-name {
    width: 35%;
    padding: 2rem;
}

.comparison-plans {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-200);
}

.plan-column {
    background: white;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.plan-column.featured {
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.05) 0%, rgba(133, 89, 240, 0.05) 100%);
}

.plan-column h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.plan-users {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Comparison Table Modern */
.comparison-table-modern {
    background: white;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Category Headers */
.comparison-category {
    background: linear-gradient(90deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-top: 1px solid var(--gray-200);
}

.category-header {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--gray-800);
}

.category-header i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.badge-premium {
    margin-left: auto;
    background: linear-gradient(135deg, #FFB800 0%, #FFA000 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Comparison Rows */
.comparison-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
    min-height: 60px;
}

.comparison-row:hover {
    background: rgba(94, 23, 235, 0.02);
}

.feature-name {
    width: 35%;
    padding: 1.25rem 2rem;
    font-weight: 500;
    color: var(--gray-700);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.feature-info {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 400;
}

.feature-values {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-100);
    align-items: stretch;
}

.value {
    background: white;
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
    color: var(--gray-900);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.surplus-value {
    background: rgba(255, 184, 0, 0.1);
    padding: 1rem;
    text-align: center;
    color: var(--warning-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value.starter {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.value.business {
    background: rgba(94, 23, 235, 0.03);
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 700;
}

.value.enterprise {
    color: var(--success-color);
    font-size: 1rem;
    font-weight: 700;
}

.value.independent {
    color: var(--warning-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.plan-column.independent {
    background: rgba(255, 184, 0, 0.05);
}

/* Surplus Rows */
.comparison-row.surplus {
    background: linear-gradient(90deg, rgba(255, 184, 0, 0.05) 0%, rgba(255, 160, 0, 0.03) 100%);
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1rem;
    min-height: 70px;
}

.comparison-row.surplus .feature-name {
    color: var(--warning-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.comparison-row.surplus .feature-name i {
    margin-right: 0.5rem;
}

.comparison-row.surplus .feature-values {
    align-items: center;
}

.surplus-text {
    grid-column: 1 / -1;
    background: rgba(255, 184, 0, 0.1);
    padding: 1rem;
    text-align: center;
    color: var(--warning-color);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Enterprise Offer */
.enterprise-offer {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.05) 0%, rgba(133, 89, 240, 0.05) 100%);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.enterprise-content {
    padding-right: 2rem;
}

.enterprise-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.enterprise-badge i {
    font-size: 1rem;
}

.enterprise-content h3 {
    margin-bottom: 0.75rem;
    color: var(--gray-900);
    font-size: 1.75rem;
}

.enterprise-content p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.enterprise-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.enterprise-features li i {
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.enterprise-pricing {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-custom {
    text-align: center;
    margin-bottom: 1.5rem;
}

.custom-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.custom-label {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.custom-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.custom-description {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Responsive Horizontal Table */
@media (max-width: 991px) {
    .comparison-header {
        flex-direction: column;
        position: relative;
    }
    
    .comparison-header .comparison-feature-name {
        width: 100%;
        padding: 1rem;
    }
    
    .comparison-plans {
        width: 100%;
    }
    
    .feature-name {
        width: 100%;
        padding: 1rem;
        background: var(--gray-50);
        font-weight: 600;
    }
    
    .feature-values {
        width: 100%;
    }
    
    .comparison-row {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .enterprise-offer {
        padding: 1.5rem;
    }
    
    .enterprise-content h3 {
        font-size: 1.5rem;
    }
    
    .plan-column {
        padding: 1rem;
    }
    
    .plan-column h3 {
        font-size: 1rem;
    }
    
    .plan-price {
        font-size: 1.125rem;
    }
    
    .plan-users {
        font-size: 0.75rem;
    }
    
    .value {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .category-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
}

/* Excellence & Founder Section */
.excellence-founder-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fafbff 0%, #f5f7ff 100%);
    position: relative;
    overflow: hidden;
}

.excellence-founder-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.excellence-founder-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

/* Excellence Card */
.excellence-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(94, 23, 235, 0.1);
}

.excellence-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.excellence-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.1) 0%, rgba(133, 89, 240, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.excellence-badge i {
    font-size: 1.125rem;
}

.excellence-content {
    text-align: center;
}

.excellence-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.excellence-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(94, 23, 235, 0.3);
    animation: floatAnimation 3s ease-in-out infinite;
}

.excellence-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(94, 23, 235, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulseParticles 2s ease-in-out infinite;
}

.excellence-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.excellence-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    max-width: 900px;
    margin: 0 auto 2.5rem;
}

.tech-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tech-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.08) 0%, rgba(133, 89, 240, 0.08) 100%);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(94, 23, 235, 0.15);
    transition: var(--transition);
}

.tech-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(94, 23, 235, 0.15);
}

.tech-highlight i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.tech-highlight span {
    font-weight: 600;
    color: var(--gray-800);
}

/* Founder Card */
.founder-card {
    background: white;
    border-radius: 2rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.founder-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    z-index: 0;
}

.founder-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, var(--primary-color) 0%, transparent 70%);
    animation: rotateGradient 20s linear infinite;
}

.founder-content {
    position: relative;
    z-index: 1;
}

.founder-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.founder-quote-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.founder-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
}

.founder-message {
    background: linear-gradient(135deg, rgba(94, 23, 235, 0.03) 0%, rgba(133, 89, 240, 0.03) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
}

.founder-message p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.founder-message p:last-child {
    margin-bottom: 0;
}

.founder-highlight {
    font-weight: 600;
    color: var(--gray-900);
    font-style: italic;
}

.founder-signature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.signature-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-300) 0%, transparent 100%);
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Brush Script MT', cursive;
}

.founder-title {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulseParticles {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 208, 160, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(0, 208, 160, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 208, 160, 0);
    }
}

/* Responsive Design for Excellence & Founder Section */
@media (max-width: 991px) {
    .excellence-card,
    .founder-card {
        padding: 2rem;
    }
    
    .excellence-content h2 {
        font-size: 2rem;
    }
    
    .excellence-description {
        font-size: 1rem;
    }
    
    .tech-highlights {
        gap: 1rem;
    }
    
    .founder-header h3 {
        font-size: 1.5rem;
    }
    
    .founder-message p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .excellence-founder-section {
        padding: 60px 0;
    }
    
    .excellence-card,
    .founder-card {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    .excellence-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .excellence-content h2 {
        font-size: 1.75rem;
    }
    
    .tech-highlights {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tech-highlight {
        justify-content: center;
    }
    
    .founder-quote-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .founder-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .founder-header h3 {
        font-size: 1.25rem;
    }
    
    .founder-message {
        padding: 1.5rem;
    }
    
    .founder-name {
        font-size: 1.25rem;
    }
}

/* Price transitions */
.price {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.price.monthly.hidden {
    display: none;
}

.price.annual.visible {
    display: inline !important;
}