/* Pricing Page Styles */

/* Pricing Hero */
.pricing-hero {
    padding: 8rem 3rem 4rem;
    background: var(--primary-green);
    text-align: center;
}

.pricing-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.pricing-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Sections */
.pricing-section {
    padding: 4rem 3rem;
    background: var(--primary-green);
}

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

.pricing-section-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.pricing-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--accent-gold);
}

.pricing-icon svg {
    width: 100%;
    height: 100%;
}

.pricing-section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.pricing-section-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-cards.single {
    grid-template-columns: 1fr;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(250, 239, 224, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-color: rgba(250, 239, 224, 0.4);
}

.pricing-card.featured {
    border-color: var(--accent-gold);
    background: rgba(212, 165, 116, 0.1);
}

.pricing-card.featured:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 20px 50px rgba(212, 165, 116, 0.2);
}

.pricing-card.wide {
    padding: 3rem;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--text-dark);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(250, 239, 224, 0.2);
}

.pricing-card-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-cream);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.3rem;
}

.price-from {
    font-size: 0.9rem;
    opacity: 0.7;
}

.price-amount {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-cream);
    line-height: 1;
}

.price-suffix {
    font-size: 1rem;
    opacity: 0.7;
}

.pricing-card-body {
    flex: 1;
}

.pricing-card-desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: var(--button-cream);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    margin-top: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-cta:hover {
    background: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    opacity: 0.8;
}

/* Content Services Grid */
.content-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.content-service {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(250, 239, 224, 0.1);
}

.content-service h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.content-service p {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
    margin: 0;
}

/* Revision note */
.revision-note {
    font-size: 0.8rem;
    opacity: 0.55;
    margin-top: 0.75rem;
    font-style: italic;
}

/* Strategy & Discovery Add-on Callout */
.addon-callout {
    margin-top: 2.5rem;
    background: rgba(212, 165, 116, 0.07);
    border: 2px solid rgba(212, 165, 116, 0.35);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    transition: border-color 0.3s ease;
}

.addon-callout:hover {
    border-color: rgba(212, 165, 116, 0.6);
}

.addon-callout-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.addon-label {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.addon-callout-text {
    flex: 1;
}

.addon-callout-text h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-cream);
}

.addon-callout-text p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
    max-width: 560px;
    margin: 0;
}

.addon-callout-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.addon-price-display {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.addon-callout-price .pricing-card-cta {
    margin-top: 0;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 768px) {
    .addon-callout {
        padding: 1.5rem;
    }

    .addon-callout-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .addon-callout-price {
        width: 100%;
    }

    .addon-callout-price .pricing-card-cta {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 4rem 3rem;
    background: var(--secondary-green);
}

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

.faq-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(250, 239, 224, 0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(250, 239, 224, 0.3);
}

.faq-item.active {
    border-color: var(--accent-gold);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-cream);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.9;
}

/* Pricing CTA Section */
.pricing-cta-section {
    padding: 5rem 3rem;
    background: var(--tertiary-green);
    text-align: center;
}

.pricing-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.pricing-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.pricing-cta-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Active nav link */
.nav-links a.active {
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 968px) {
    .pricing-hero {
        padding: 7rem 2rem 3rem;
    }

    .pricing-section {
        padding: 3rem 2rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 2rem;
    }

    .content-services-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 3rem 2rem;
    }

    .pricing-cta-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 640px) {
    .pricing-hero h1 {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-card-header h3 {
        font-size: 1.3rem;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1.25rem;
    }
}
