/**
 * OKR PRO - Pricing Page Styles
 * File: css/pricing-style.css
 */

/* Hero Section */
.okrpro-pricing-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.okrpro-pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.okrpro-pricing-hero h1 .highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-pricing-hero p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Billing Toggle */
.okrpro-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.okrpro-toggle-label {
    color: #CBD5E1;
    font-weight: 500;
    font-size: 1rem;
}

.okrpro-toggle-label.active {
    color: white;
    font-weight: 700;
}

.okrpro-toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.okrpro-toggle-switch.active {
    background: #10B981;
}

.okrpro-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.okrpro-toggle-switch.active .okrpro-toggle-slider {
    transform: translateX(28px);
}

.okrpro-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Section */
.okrpro-pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

.okrpro-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.okrpro-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Pricing Cards */
.okrpro-pricing-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    padding: 3rem 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.okrpro-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.okrpro-pricing-card.okrpro-featured {
    border-color: #2563EB;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.okrpro-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.okrpro-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.okrpro-plan-description {
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.okrpro-plan-price {
    margin-bottom: 2rem;
}

.okrpro-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
}

.okrpro-price-period {
    color: #6B7280;
    font-size: 1rem;
}

.okrpro-price-annual {
    display: none;
}

body.billing-annual .okrpro-price-monthly {
    display: none;
}

body.billing-annual .okrpro-price-annual {
    display: block;
}

.okrpro-plan-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #E5E7EB;
    background: white;
    color: #374151;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.okrpro-plan-cta:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.okrpro-pricing-card.okrpro-featured .okrpro-plan-cta {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
}

.okrpro-pricing-card.okrpro-featured .okrpro-plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.okrpro-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.okrpro-plan-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
}

.okrpro-check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
}

/* FAQ Section */
.okrpro-pricing-faq-section {
    padding: 6rem 2rem;
    background: white;
}

.okrpro-pricing-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.okrpro-pricing-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #111827;
}

.okrpro-pricing-faq-item {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
}

.okrpro-pricing-faq-item:hover {
    border-color: #2563EB;
}

.okrpro-pricing-faq-question {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.okrpro-pricing-faq-answer {
    color: #6B7280;
    line-height: 1.8;
}

/* CTA Section */
.okrpro-pricing-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
    text-align: center;
}

.okrpro-pricing-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.okrpro-pricing-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.okrpro-pricing-cta-content p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
}

.okrpro-pricing-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.okrpro-btn-white {
    background: white !important;
    color: #2563EB !important;
}

.okrpro-btn-white:hover {
    background: #F9FAFB !important;
}

.okrpro-btn-outline-white {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    background: transparent !important;
}

.okrpro-btn-outline-white:hover {
    border-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .okrpro-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .okrpro-pricing-hero h1 {
        font-size: 2.5rem;
    }

    .okrpro-pricing-cta-buttons {
        flex-direction: column;
    }

    .okrpro-pricing-card {
        padding: 2rem 1.5rem;
    }
}/**
 * OKR PRO - Pricing Page Styles
 * File: css/pricing-style.css
 */

/* Hero Section */
.okrpro-pricing-hero {
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.okrpro-pricing-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.okrpro-pricing-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.okrpro-pricing-hero h1 .highlight {
    background: linear-gradient(135deg, #60A5FA 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.okrpro-pricing-hero p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2rem;
}

/* Billing Toggle */
.okrpro-billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.okrpro-toggle-label {
    color: #CBD5E1;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.okrpro-toggle-label.active {
    color: white;
    font-weight: 700;
}

.okrpro-toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.okrpro-toggle-switch.active {
    background: #10B981;
}

.okrpro-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.okrpro-toggle-switch.active .okrpro-toggle-slider {
    transform: translateX(28px);
}

.okrpro-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Pricing Section */
.okrpro-pricing-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #F9FAFB 0%, white 100%);
}

.okrpro-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
}

.okrpro-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Pricing Cards */
.okrpro-pricing-card {
    background: white;
    border-radius: 16px;
    border: 2px solid #E5E7EB;
    padding: 3rem 2.5rem;
    transition: all 0.3s;
    position: relative;
}

.okrpro-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.okrpro-pricing-card.okrpro-featured {
    border-color: #2563EB;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.okrpro-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.okrpro-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.okrpro-plan-description {
    color: #6B7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.okrpro-plan-price {
    margin-bottom: 2rem;
}

.okrpro-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #111827;
}

.okrpro-price-period {
    color: #6B7280;
    font-size: 1rem;
}

.okrpro-price-annual {
    display: none;
}

body.billing-annual .okrpro-price-monthly {
    display: none;
}

body.billing-annual .okrpro-price-annual {
    display: block;
}

.okrpro-plan-cta {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #E5E7EB;
    background: white;
    color: #374151;
    font-family: 'Inter', sans-serif;
    margin-bottom: 2rem;
}

.okrpro-plan-cta:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.okrpro-pricing-card.okrpro-featured .okrpro-plan-cta {
    background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
    color: white;
    border: none;
}

.okrpro-pricing-card.okrpro-featured .okrpro-plan-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.okrpro-plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.okrpro-plan-features li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #374151;
}

.okrpro-check-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #D1FAE5 0%, #A7F3D0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #059669;
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.75rem;
}

/* FAQ Section */
.okrpro-pricing-faq-section {
    padding: 6rem 2rem;
    background: white;
}

.okrpro-pricing-faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.okrpro-pricing-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 3rem;
    color: #111827;
}

.okrpro-pricing-faq-item {
    background: #F9FAFB;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
}

.okrpro-pricing-faq-item:hover {
    border-color: #2563EB;
}

.okrpro-pricing-faq-question {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.okrpro-pricing-faq-answer {
    color: #6B7280;
    line-height: 1.8;
}

/* CTA Section */
.okrpro-pricing-cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0F172A 0%, #1E40AF 100%);
    text-align: center;
}

.okrpro-pricing-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.okrpro-pricing-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.okrpro-pricing-cta-content p {
    font-size: 1.25rem;
    color: #CBD5E1;
    margin-bottom: 2.5rem;
}

.okrpro-pricing-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.okrpro-btn-white {
    background: white !important;
    color: #2563EB !important;
}

.okrpro-btn-white:hover {
    background: #F9FAFB !important;
}

.okrpro-btn-outline-white {
    border-color: rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    background: transparent !important;
}

.okrpro-btn-outline-white:hover {
    border-color: white !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Responsive */
@media (max-width: 1024px) {
    .okrpro-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .okrpro-pricing-hero h1 {
        font-size: 2.5rem;
    }

    .okrpro-pricing-cta-buttons {
        flex-direction: column;
    }

    .okrpro-pricing-card {
        padding: 2rem 1.5rem;
    }

    .okrpro-pricing-cta-content h2 {
        font-size: 2rem;
    }
}