/* StaySmartly Pricing Plugin Styles */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@400;500;600;700&display=swap');

.ss-pricing-container {
    font-family: 'Inter', sans-serif;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px;
    color: #0D2B4E;
}

/* Header section */
.ss-pricing-header {
    text-align: center;
    padding: 40px 20px;
}

.ss-pricing-header .badge {
    display: inline-block;
    background: #C9A84C;
    color: #0D2B4E;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
}

.ss-pricing-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #0D2B4E;
}

.ss-pricing-header p {
    font-size: 1.1rem;
    color: #6B7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Setup cost */
.ss-setup-cost {
    text-align: center;
    background: #FEF3C7;
    border: 1px solid #C9A84C;
    border-radius: 12px;
    padding: 20px;
    margin: 30px auto;
    max-width: 600px;
}

.ss-setup-cost h3 {
    font-size: 1.2rem;
    color: #0D2B4E;
    margin-bottom: 8px;
}

.ss-setup-cost p {
    font-size: 0.95rem;
    color: #4B5563;
}

/* Free months banner */
.ss-free-months {
    text-align: center;
    background: #ECFDF5;
    border: 1px solid #10B981;
    border-radius: 12px;
    padding: 14px 24px;
    margin: 20px auto;
    max-width: 600px;
    color: #065F46;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Range selector */
.ss-range-selector {
    text-align: center;
    margin: 30px auto;
    max-width: 500px;
}

.ss-range-selector label {
    font-weight: 600;
    font-size: 1rem;
    margin-right: 12px;
    color: #0D2B4E;
}

.ss-range-selector select {
    padding: 10px 16px;
    border: 2px solid #C9A84C;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #0D2B4E;
    background: white;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.ss-range-selector select:focus {
    border-color: #00B4D8;
}

/* Cards grid */
.ss-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 40px auto;
}

@media (min-width: 768px) {
    .ss-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ss-cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Individual card */
.ss-card {
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ss-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.ss-card.popular {
    border: 2px solid #C9A84C;
}

.ss-card .popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #C9A84C;
    color: #0D2B4E;
    padding: 4px 16px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.ss-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: #F3F4F6;
}

.ss-card .icon-wrapper svg {
    width: 28px;
    height: 28px;
    color: #0D2B4E;
}

.ss-card .plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0D2B4E;
}

.ss-card .plan-subtitle {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 16px;
}

.ss-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: #0D2B4E;
    margin-bottom: 4px;
}

.ss-card .price-period {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 20px;
}

.ss-card .check-icon {
    color: #10B981;
    margin-right: 8px;
}

.ss-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.ss-card .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: #374151;
}

.ss-card .features-list li.pms-feature {
    font-weight: 600;
    color: #0D2B4E;
}

.ss-card .features-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* AI Max card */
.ss-card.aimax {
    background: linear-gradient(180deg, #00B4D8 0%, #0077B6 40%, #0D2B4E 100%);
    border: 2px solid #00B4D8;
}

.ss-card.aimax .plan-name,
.ss-card.aimax .price {
    color: white;
}

.ss-card.aimax .plan-subtitle,
.ss-card.aimax .price-period {
    color: rgba(255,255,255,0.8);
}

.ss-card.aimax .icon-wrapper {
    background: rgba(201, 168, 76, 0.3);
}

.ss-card.aimax .icon-wrapper svg {
    color: #C9A84C;
}

.ss-card.aimax .features-list li {
    color: white;
}

.ss-card.aimax .features-list li.pms-feature {
    font-weight: 600;
    color: #67E8F9;
}

.ss-card.aimax .features-list li svg {
    color: #C9A84C;
}

/* Buttons */
.ss-card .btn-plan {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid #0D2B4E;
    color: #0D2B4E;
    background: white;
    width: 100%;
    cursor: pointer;
}

.ss-card .btn-plan:hover {
    background: #0D2B4E;
    color: white;
}

.ss-card .btn-plan.selected {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #0D2B4E;
}

.ss-card.aimax .btn-plan {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #0D2B4E;
}

.ss-card.aimax .btn-plan:hover {
    background: #B8933E;
    border-color: #B8933E;
}

/* Included features */
.ss-included {
    margin: 50px auto;
    max-width: 800px;
}

.ss-included h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #0D2B4E;
}

.ss-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (min-width: 768px) {
    .ss-included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ss-included-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #F9FAFB;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
}

.ss-included-item svg {
    width: 24px;
    height: 24px;
    color: #00B4D8;
    flex-shrink: 0;
}

.ss-included-item h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #0D2B4E;
}

.ss-included-item p {
    font-size: 0.8rem;
    color: #6B7280;
    margin: 0;
}

/* Support table */
.ss-support-table {
    margin: 50px auto;
    max-width: 1000px;
    overflow-x: auto;
}

.ss-support-table h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #0D2B4E;
}

.ss-support-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.ss-support-table th {
    background: #0D2B4E;
    color: white;
    padding: 14px 12px;
    text-align: center;
    font-weight: 600;
}

.ss-support-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
}

.ss-support-table tr:nth-child(even) {
    background: #F9FAFB;
}

.ss-support-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.ss-check {
    color: #10B981;
    font-weight: 700;
}

/* Bottom CTA */
.ss-bottom-cta {
    text-align: center;
    background: linear-gradient(135deg, #0D2B4E 0%, #1A3A5C 100%);
    border-radius: 16px;
    padding: 40px 20px;
    margin: 40px auto;
    max-width: 800px;
    color: white;
}

.ss-bottom-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ss-bottom-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.ss-bottom-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #C9A84C;
    color: #0D2B4E;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}

.ss-bottom-cta a:hover {
    background: #B8933E;
}
