/* Plans Page Styles */

:root {
    --sunset-primary: #E5802D;
    --sunset-dark: #2C3E50;
    --sunset-darker: #1a252f;
}

.plans-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--sunset-dark) 0%, var(--sunset-darker) 100%);
    padding: 40px 20px;
}

.plans-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Header Section */
.plans-header {
    text-align: center;
    margin-bottom: 50px;
}

.plans-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plans-header h1 {
    color: #ffffff;
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.plans-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Pricing Card */
.pricing-card {
    background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E5802D, #f39c12, #1ABC9C);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-header h2 {
    color: #ffffff;
    font-size: 1.8em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pricing-card-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1em;
}

/* Price Display */
.price-display {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: rgba(229, 128, 45, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(229, 128, 45, 0.3);
}

.price-main {
    font-size: 3.5em;
    font-weight: 700;
    color: #E5802D;
}

.price-main sup {
    font-size: 0.4em;
    vertical-align: super;
    color: rgba(255, 255, 255, 0.7);
}

.price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1em;
    margin-top: 5px;
}

.price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95em;
    margin-top: 10px;
    font-style: italic;
}

/* Features List */
.pricing-features {
    margin: 30px 0;
}

.pricing-features h3 {
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #1ABC9C, #16a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 14px;
    height: 14px;
    fill: white;
}

/* Info Cards Grid */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.info-card {
background: linear-gradient(145deg, var(--sunset-dark), var(--sunset-darker));
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-card-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

.info-card h3 {
    color: #ffffff;
    font-size: 1.3em;
    margin-bottom: 12px;
}

.info-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1em;
    line-height: 1.6;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15), rgba(22, 160, 133, 0.1));
    border: 1px solid rgba(26, 188, 156, 0.3);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.guarantee-section h3 {
    color: #1ABC9C;
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.guarantee-section .highlight {
    color: #1ABC9C;
    font-weight: 600;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 20px 0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #E5802D, #f39c12);
    color: white;
    padding: 18px 50px;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(229, 128, 45, 0.3);
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(229, 128, 45, 0.4);
    background: linear-gradient(135deg, #f39c12, #E5802D);
    color: white;
    text-decoration: none;
}

.cta-subtext {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95em;
    margin-top: 15px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .plans-header h1 {
        font-size: 2em;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .price-main {
        font-size: 2.5em;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}
