* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #faf8f5;
    color: #333;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* Header, nav, logo, hamburger and mobile menu are inherited from
 * shared.css (loaded before this file). They were previously duplicated
 * here with stale values (logo 1.5rem, no stacked-wordmark/.mm-mark rules),
 * which made the pricing header look different from every other page. */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, #142a20 0%, #234737 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.pricing-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    margin-top: -6rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border: 3px solid #7a6088;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #7a6088 0%, #9a80a8 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 12px;
}

.pricing-header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f5f3f0;
}

.pricing-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
}

.pricing-card:nth-child(1) .pricing-icon {
    background: linear-gradient(135deg, #daeeda 0%, #b5d8b5 100%);
    color: #5a8a5a;
}

.pricing-card:nth-child(2) .pricing-icon {
    background: linear-gradient(135deg, #f5f0f8 0%, #ede5f0 100%);
    color: #7a6088;
}

.pricing-card:nth-child(3) .pricing-icon {
    background: linear-gradient(135deg, #faf5eb 0%, #e8c36a 100%);
    color: #c49a45;
}

.pricing-name {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.pricing-desc {
    color: #888888;
    font-size: 0.95rem;
}

.pricing-amount {
    padding: 1.5rem 2rem;
    text-align: center;
    background: #faf8f5;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price-period {
    font-size: 1rem;
    color: #888888;
    font-weight: 400;
}

.pricing-features {
    padding: 1.5rem 2rem;
    list-style: none;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f3f0;
}

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

.pricing-features li i {
    margin-top: 0.25rem;
}

.pricing-features li i.fa-check {
    color: #5a8a5a;
}

.pricing-features li i.fa-times {
    color: #d5d0c8;
}

.pricing-features li.disabled {
    color: #999999;
}

.pricing-cta {
    padding: 1.5rem 2rem 2rem;
}

.btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #234737 0%, #2e5647 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(35, 71, 55, 0.3);
}

.btn-purple {
    background: linear-gradient(135deg, #7a6088 0%, #9a80a8 100%);
    color: white;
}

.btn-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-outline {
    background: white;
    color: #2a2a2a;
    border: 2px solid #2a2a2a;
}

.btn-outline:hover {
    background: #faf8f5;
}

/* Add-ons Section */
.addons-section {
    margin-bottom: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #888888;
    font-size: 1.1rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.addon-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s;
}

.addon-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.addon-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.addon-icon.purple {
    background: linear-gradient(135deg, #f5f0f8 0%, #ede5f0 100%);
    color: #7a6088;
}

.addon-icon.blue {
    background: linear-gradient(135deg, #f5f0e8 0%, #f5ecd8 100%);
    color: #2a2a2a;
}

.addon-icon.amber {
    background: linear-gradient(135deg, #faf5eb 0%, #e8c36a 100%);
    color: #c49a45;
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.addon-desc {
    font-size: 0.85rem;
    color: #888888;
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

/* Comparison Table */
.comparison-section {
    margin-bottom: 4rem;
}

.comparison-table {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid #f5f3f0;
}

.comparison-table th {
    background: #faf8f5;
    font-weight: 600;
    color: #1a1a1a;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .check {
    color: #5a8a5a;
    font-size: 1.25rem;
}

.comparison-table .cross {
    color: #d5d0c8;
    font-size: 1.25rem;
}

.comparison-table .highlight {
    background: #faf8f5;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.faq-question {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-question i {
    color: #7a6088;
    margin-top: 0.25rem;
}

.faq-answer {
    color: #888888;
    font-size: 0.95rem;
    padding-left: 1.75rem;
}

/* Guarantee Banner */
.guarantee-banner {
    background: linear-gradient(135deg, #f2f8f2 0%, #daeeda 100%);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #5a8a5a;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.guarantee-content {
    text-align: left;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    color: #3d6a3d;
    margin-bottom: 0.5rem;
}

.guarantee-content p {
    color: #4d7a4d;
    max-width: 500px;
}

.footer {
    background-color: #142a20;
    color: #d5d0c8;
    padding: 3rem 2rem 1.5rem;
    margin-top: auto;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .pricing-grid {
        gap: 1.25rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .addons-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Header / nav / hamburger mobile behaviour comes from shared.css. */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
        margin-top: -2rem;
    }

    .pricing-card.featured {
        order: -1;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .guarantee-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-content {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 2rem 1rem;
    }
}
