/* ================================================
   SeyHire - Public Pricing Page Styles
   Updated with Tier-based Employer Packages
   ================================================ */

/* =============== CSS Variables =============== */
:root {
    --tier-basic: #3b82f6;
    --tier-premium: #8b5cf6;
    --tier-corporate: #f59e0b;
}

/* =============== Pricing Hero Section =============== */
.pricing-hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2952a3 50%, var(--accent-color) 100%);
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

[data-theme="dark"] .pricing-hero {
    background: linear-gradient(135deg, #0d1f4a 0%, var(--primary-color) 50%, #cc6200 100%);
}

.pricing-hero .container {
    position: relative;
    z-index: 1;
}

.pricing-hero .hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.pricing-hero .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* =============== User Type Toggle =============== */
.user-type-toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.user-type-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    padding: 8px;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.toggle-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.toggle-option i {
    font-size: 1.25rem;
}

.toggle-option:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.toggle-option.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.toggle-option.active i {
    color: var(--accent-color);
}

.toggle-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    max-width: 400px;
}

/* =============== Pricing Sections =============== */
.pricing-section {
    padding: var(--section-padding);
    position: relative;
}

.pricing-section.employer-section {
    background: var(--bg-primary);
}

.pricing-section.jobseeker-section {
    background: var(--bg-secondary);
}

/* Section Header */
.pricing-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-badge.employer-badge {
    background: linear-gradient(135deg, rgba(26, 60, 140, 0.1) 0%, rgba(26, 60, 140, 0.05) 100%);
    color: var(--primary-color);
    border: 1px solid rgba(26, 60, 140, 0.2);
}

.section-badge.jobseeker-badge {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    color: var(--accent-color);
    border: 1px solid rgba(255, 122, 0, 0.2);
}

[data-theme="dark"] .section-badge.employer-badge {
    background: linear-gradient(135deg, rgba(26, 60, 140, 0.3) 0%, rgba(26, 60, 140, 0.15) 100%);
    color: #70a1ff;
    border-color: rgba(112, 161, 255, 0.3);
}

[data-theme="dark"] .section-badge.jobseeker-badge {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.3) 0%, rgba(255, 122, 0, 0.15) 100%);
    color: #ff9a3d;
    border-color: rgba(255, 154, 61, 0.3);
}

.pricing-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.pricing-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0;
}

/* =============== Employer Tier Cards =============== */
.tiers-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.tier-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .tier-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

/* Tier Color Classes */
.tier-card.basic {
    --tier-color: var(--tier-basic);
}

.tier-card.premium {
    --tier-color: var(--tier-premium);
}

.tier-card.corporate {
    --tier-color: var(--tier-corporate);
}

/* Tier Card Top Border */
.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--tier-color, var(--primary-color));
}

/* Tier Hover State */
.tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px var(--shadow-medium);
    border-color: var(--tier-color, var(--primary-color));
}

/* Active Tier */
.tier-card.active {
    border-color: var(--tier-color, var(--primary-color));
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

/* Popular Tier */
.tier-card.popular {
    border-color: var(--tier-color);
    transform: scale(1.03);
    z-index: 2;
}

.tier-card.popular::before {
    height: 5px;
}

.tier-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

/* Tier Badge */
.tier-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--tier-color, var(--primary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Tier Header */
.tier-header {
    padding: 35px 30px 25px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.tier-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--tier-color), color-mix(in srgb, var(--tier-color) 70%, white));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.tier-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.5;
}

.tier-positions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-accent);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--tier-color, var(--primary-color));
}

[data-theme="dark"] .tier-positions {
    background: rgba(255, 255, 255, 0.08);
}

.tier-positions i {
    font-size: 1rem;
}

/* Tier Body */
.tier-body {
    padding: 25px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tier-starting-price {
    text-align: center;
    padding: 20px;
    background: var(--bg-accent);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

[data-theme="dark"] .tier-starting-price {
    background: rgba(255, 255, 255, 0.05);
}

.tier-starting-price .label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.tier-starting-price .price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.tier-starting-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.tier-starting-price .price {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--tier-color, var(--text-primary));
    line-height: 1;
    letter-spacing: -1px;
}

/* Duration Preview */
.tier-durations-preview {
    text-align: center;
    margin-bottom: 20px;
}

.duration-count {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.duration-count i {
    color: var(--tier-color);
}

/* Tier Highlights */
.tier-highlights {
    flex: 1;
}

.tier-highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.tier-highlight:last-child {
    border-bottom: none;
}

.tier-highlight i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Tier Footer */
.tier-footer {
    padding: 20px 30px 30px;
}

.tier-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid var(--tier-color, var(--primary-color));
    color: var(--tier-color, var(--primary-color));
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.tier-select-btn:hover {
    background: var(--tier-color, var(--primary-color));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.tier-card.active .tier-select-btn {
    background: var(--tier-color, var(--primary-color));
    color: white;
}

.tier-card.popular .tier-select-btn {
    background: var(--tier-color, var(--primary-color));
    color: white;
}

.tier-card.popular .tier-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* =============== Duration Panels =============== */
.duration-panel {
    display: none;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 20px;
    overflow: hidden;
    animation: slideDown 0.3s ease;
}

[data-theme="dark"] .duration-panel {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.duration-panel.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.duration-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: var(--bg-accent);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .duration-panel-header {
    background: rgba(255, 255, 255, 0.05);
}

.duration-panel-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tier-icon-sm {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-icon-sm.basic {
    background: linear-gradient(135deg, var(--tier-basic), color-mix(in srgb, var(--tier-basic) 70%, white));
}

.tier-icon-sm.premium {
    background: linear-gradient(135deg, var(--tier-premium), color-mix(in srgb, var(--tier-premium) 70%, white));
}

.tier-icon-sm.corporate {
    background: linear-gradient(135deg, var(--tier-corporate), color-mix(in srgb, var(--tier-corporate) 70%, white));
}

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

.duration-panel-title h4 {
    margin: 0 0 4px 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.duration-panel-title span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.duration-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--bg-primary);
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="dark"] .duration-close-btn {
    background: var(--bg-tertiary);
}

.duration-close-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

.duration-close-btn i {
    font-size: 1.25rem;
}

/* Duration Options Grid */
.duration-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 30px;
}

.duration-option {
    position: relative;
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .duration-option {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
}

.duration-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.duration-option.recommended {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(26, 60, 140, 0.03) 0%, rgba(26, 60, 140, 0.08) 100%);
}

[data-theme="dark"] .duration-option.recommended {
    background: linear-gradient(135deg, rgba(112, 161, 255, 0.05) 0%, rgba(112, 161, 255, 0.1) 100%);
    border-color: #70a1ff;
}

.duration-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 12px;
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    white-space: nowrap;
}

[data-theme="dark"] .duration-badge {
    background: #70a1ff;
}

.duration-days {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.duration-days i {
    color: var(--primary-color);
}

[data-theme="dark"] .duration-days i {
    color: #70a1ff;
}

.duration-price {
    margin-bottom: 6px;
}

.duration-price .currency {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.duration-per-job {
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.duration-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.duration-select-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.duration-select-btn:hover {
    background: #153066;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 60, 140, 0.3);
    color: white;
    text-decoration: none;
}

[data-theme="dark"] .duration-select-btn {
    background: #70a1ff;
}

[data-theme="dark"] .duration-select-btn:hover {
    background: #5a91f5;
}

/* =============== Section CTA =============== */
.section-cta {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.section-cta .btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.cta-note {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =============== Job Seeker Section =============== */
.local-free-notice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px auto 0;
    max-width: 700px;
    padding: 20px 28px;
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: var(--radius-lg);
}

[data-theme="dark"] .local-free-notice {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border-color: rgba(16, 185, 129, 0.5);
}

.local-free-notice .notice-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.local-free-notice i {
    font-size: 2rem;
    color: #10b981;
    flex-shrink: 0;
}

.local-free-notice strong {
    display: block;
    color: #065f46;
    font-size: 1rem;
    margin-bottom: 2px;
}

[data-theme="dark"] .local-free-notice strong {
    color: #34d399;
}

.local-free-notice span {
    color: #047857;
    font-size: 0.9375rem;
}

[data-theme="dark"] .local-free-notice span {
    color: #6ee7b7;
}

.btn-notice {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #10b981;
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn-notice:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    color: white;
    text-decoration: none;
}

/* Foreign Notice */
.foreign-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.03) 100%);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.foreign-notice i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.foreign-notice strong {
    color: var(--accent-color);
}

/* Job Seeker Packages Grid */
.jobseeker-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

/* =============== Package Cards (Job Seeker) =============== */
.package-card {
    background: var(--bg-primary);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .package-card {
    background: var(--bg-secondary);
    border-color: var(--border-color);
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transition: all var(--transition-normal);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--accent-color);
}

.package-card.popular {
    border-color: var(--accent-color);
    transform: scale(1.02);
    z-index: 1;
}

.package-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--accent-color);
    color: white;
    z-index: 2;
}

.package-badge.success {
    background: #10b981;
}

.package-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 10px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.package-description {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

.package-price {
    text-align: center;
    padding: 24px 0;
    margin-bottom: 24px;
    background: var(--bg-accent);
    border-radius: var(--radius-md);
}

[data-theme="dark"] .package-price {
    background: rgba(255, 255, 255, 0.05);
}

.package-price .price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.package-price .price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.package-price .price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.package-price .price-duration {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 8px;
}

.package-features {
    flex: 1;
    margin-bottom: 24px;
}

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

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 1.125rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-features li i.ri-check-line {
    color: #10b981;
}

.package-features li i.ri-checkbox-circle-fill {
    color: var(--accent-color);
}

.package-features li.feature-highlight {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.03) 100%);
    margin: 0 -16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border-bottom: none;
    margin-bottom: 8px;
}

.package-features li.feature-highlight strong {
    color: var(--accent-color);
}

.package-action {
    margin-top: auto;
}

.btn-package {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-package.btn-primary {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.btn-package.btn-primary:hover {
    background: #e66a00;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
    color: white;
    text-decoration: none;
}

.btn-package.btn-outline {
    background: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-package.btn-outline:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-package.btn-success {
    background: #10b981;
    color: white;
    border-color: #10b981;
}

.btn-package.btn-success:hover {
    background: #059669;
    color: white;
    text-decoration: none;
}

/* Foreign Applicant Note */
.foreign-applicant-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 700px;
    margin: 40px auto 0;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.03) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--accent-color);
}

.foreign-applicant-note i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.foreign-applicant-note p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.foreign-applicant-note strong {
    color: var(--text-primary);
}

/* =============== Payment Methods Section =============== */
.payment-methods-public {
    padding: 60px 0;
    background: var(--bg-primary);
}

.payment-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

[data-theme="dark"] .payment-card {
    background: var(--bg-tertiary);
}

.payment-card h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.payment-card h4 i {
    color: var(--primary-color);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 15px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

[data-theme="dark"] .payment-method {
    background: var(--bg-secondary);
}

.payment-method:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 2rem;
    color: var(--primary-color);
}

.payment-method span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* =============== FAQ Section =============== */
.faq-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

[data-theme="dark"] .faq-section {
    background: var(--bg-primary);
}

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

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

[data-theme="dark"] .faq-item {
    background: var(--bg-secondary);
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item.open {
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: all var(--transition-normal);
}

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--text-light);
    transition: transform var(--transition-normal), color var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.open .faq-question {
    background: var(--bg-accent);
}

[data-theme="dark"] .faq-item.open .faq-question {
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.open .faq-question span {
    color: var(--primary-color);
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =============== CTA Section =============== */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2952a3 50%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.cta-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* =============== Responsive Design =============== */
@media (max-width: 1200px) {
    .tiers-grid {
        gap: 24px;
    }
    
    .tier-card.popular {
        transform: scale(1.02);
    }
}

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

    .pricing-hero .hero-title {
        font-size: 2.5rem;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tier-card.popular {
        transform: none;
    }
    
    .tier-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .duration-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .pricing-hero .hero-title {
        font-size: 2rem;
    }

    .pricing-hero .hero-subtitle {
        font-size: 1rem;
    }

    .user-type-toggle {
        flex-direction: column;
        border-radius: var(--radius-lg);
        padding: 6px;
    }

    .toggle-option {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 30px;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .duration-panel-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .duration-panel-title {
        flex-direction: column;
    }

    .jobseeker-packages-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .local-free-notice {
        flex-direction: column;
        text-align: center;
    }
    
    .local-free-notice .notice-content {
        flex-direction: column;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .payment-method {
        padding: 15px 10px;
    }
    
    .payment-method i {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .tier-header {
        padding: 30px 20px 20px;
    }
    
    .tier-body {
        padding: 20px;
    }
    
    .tier-footer {
        padding: 15px 20px 25px;
    }
    
    .tier-icon {
        width: 60px;
        height: 60px;
    }
    
    .tier-icon i {
        font-size: 1.75rem;
    }
    
    .tier-starting-price .price {
        font-size: 2.25rem;
    }

    .package-card {
        padding: 30px 20px;
    }
    
    .pricing-section .section-title {
        font-size: 1.75rem;
    }
    
    .faq-section .section-title {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }
}

/* =============== Animations =============== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.tier-card,
.package-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.tier-card:nth-child(1),
.package-card:nth-child(1) { animation-delay: 0.1s; }
.tier-card:nth-child(2),
.package-card:nth-child(2) { animation-delay: 0.2s; }
.tier-card:nth-child(3),
.package-card:nth-child(3) { animation-delay: 0.3s; }

.tier-card.popular .tier-badge,
.package-card.popular .package-badge {
    animation: pulse 2s infinite;
}

.faq-item {
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.15s; }
.faq-item:nth-child(3) { animation-delay: 0.2s; }
.faq-item:nth-child(4) { animation-delay: 0.25s; }
.faq-item:nth-child(5) { animation-delay: 0.3s; }
.faq-item:nth-child(6) { animation-delay: 0.35s; }

/* =============== Print Styles =============== */
@media print {
    .pricing-hero,
    .cta-section,
    .package-action,
    .tier-footer,
    .duration-panel,
    .payment-methods-public {
        display: none !important;
    }

    .pricing-section {
        padding: 30px 0;
    }

    .tier-card,
    .package-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
        opacity: 1;
        animation: none;
    }
}