/* ==========================================================================
   Pricing Pages - Alpha2Zulu Marketing
   ========================================================================== */

/* Universal Section Box Style
   ========================================================================== */

.section-box {
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid #6C5CE7;
    border-radius: 16px;
    padding: 24px 5px;
    color: white;
}

.section-box h2 {
    color: white;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.section-box h3,
.section-box h4,
.section-box p,
.section-box li {
    color: white;
}

/* Founding Partner Hero Section
   ========================================================================== */

/* Override hero box for founding partners page with gold border */
.hero__box {
    border: 2px solid #B8860B;
}

/* Override all buttons on founding partners page to be gold */
.hero .btn--primary,
.urgency-cta .btn--primary,
.contact-cta .btn--primary {
    background: linear-gradient(135deg, #DAA520, #B8860B) !important;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.4);
}

.hero .btn--primary:hover,
.urgency-cta .btn--primary:hover,
.contact-cta .btn--primary:hover {
    background: linear-gradient(135deg, #FFD700, #DAA520) !important;
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.5);
}

.founding-hero {
    background: linear-gradient(135deg, #4B3C57 0%, #6C5CE7 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.founding-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.3;
}

.founding-hero-content {
    position: relative;
    z-index: 2;
}

.exclusive-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 24px;
    border-radius: 30px;
    margin-bottom: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.founding-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 20px;
    line-height: 1.2;
}

.founding-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0 0 40px;
    opacity: 0.95;
}

/* Spots Counter
   ========================================================================== */

.spots-counter-hero {
    margin: 32px 0 24px;
}

.spots-counter {
    margin: 40px 0;
}

.spots-visual {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.spot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.spot.filled {
    background: #6C5CE7;
    border-color: #B8860B;
    border-width: 3px;
    box-shadow:
        0 0 20px rgba(184, 134, 11, 0.6),
        inset 0 0 20px rgba(218, 165, 32, 0.4);
}

.spot.empty {
    background: rgba(255, 255, 255, 0.1);
    border-color: #B8860B;
    border-width: 3px;
    box-shadow:
        0 0 10px rgba(184, 134, 11, 0.3),
        inset 0 0 15px rgba(184, 134, 11, 0.2);
}

.spots-text {
    font-size: 1.5rem;
    margin: 0 0 8px;
    color: white;
}

.spots-deadline {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
    color: white;
}

/* CTA Buttons
   ========================================================================== */

.cta-button {
    display: inline-block;
    padding: 16px 48px;
    background: white;
    color: #4B3C57;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: #f8f8f8;
}

/* Founding What Section
   ========================================================================== */

.founding-what {
    padding: 80px 0;
    background: transparent;
}

.founding-what .section-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.founding-what h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: white;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.founding-what p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

/* Pricing Section
   ========================================================================== */

.founding-pricing {
    padding: 80px 0;
    background: transparent;
}

.standard-pricing {
    padding: 80px 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
}

.founding-pricing .section-header h2 {
    color: white;
}

.subtitle {
    font-size: 1.125rem;
    color: #666;
}

.founding-pricing .subtitle {
    color: rgba(255, 255, 255, 0.95);
}

/* Pricing Grid
   ========================================================================== */

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

/* Pricing Cards
   ========================================================================== */

.pricing-card {
    background: linear-gradient(135deg, #6C5CE7, #FF6B9D);
    border: 3px solid #B8860B;
    border-radius: 16px;
    padding: 48px 36px;
    transition: all 0.3s ease;
    position: relative;
    color: white;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.2);
}

.standard-pricing-card {
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 16px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(184, 134, 11, 0.3),
        0 4px 20px rgba(108, 92, 231, 0.15);
}

.standard-pricing-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-5px);
    box-shadow:
        0 12px 40px rgba(108, 92, 231, 0.15),
        0 4px 20px rgba(184, 134, 11, 0.08);
}

.pricing-card.featured {
    border-color: #DAA520;
    border-width: 4px;
    background: linear-gradient(135deg, #6C5CE7, #FF6B9D);
    transform: scale(1.05);
    box-shadow:
        0 8px 35px rgba(184, 134, 11, 0.35),
        0 0 30px rgba(218, 165, 32, 0.2);
}

.standard-pricing-card.featured {
    border-color: #6C5CE7;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(75, 60, 87, 0.05) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.1);
}

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

/* Popular Badge
   ========================================================================== */

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6C5CE7 0%, #4B3C57 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Pricing Header
   ========================================================================== */

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: white;
}

.tier-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Pricing Amount
   ========================================================================== */

.pricing-amount {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.original-price {
    display: block;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-bottom: 8px;
}

.founding-price,
.price-range {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: white;
}

.separator {
    font-size: 2rem;
    font-weight: 600;
    color: #999;
}

.period {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
}

.savings {
    font-size: 0.9375rem;
    color: #FFD700;
    font-weight: 600;
    margin: 0;
}

/* Ideal For Section
   ========================================================================== */

.ideal-for {
    background: rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
}

.ideal-for p {
    font-size: 0.9375rem;
    margin: 6px 0;
    color: white;
}

/* Pricing Features
   ========================================================================== */

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: white;
}

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

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Pricing CTA
   ========================================================================== */

.pricing-cta {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #DAA520, #B8860B);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.4);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(218, 165, 32, 0.5);
    background: linear-gradient(135deg, #FFD700, #DAA520);
}

/* Benefits Grid
   ========================================================================== */

.founding-benefits {
    padding: 80px 0;
    background: transparent;
}

.founding-benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #B8860B;
}

.benefit-card:hover {
    border-color: #DAA520;
    transform: translateY(-5px);
    box-shadow:
        0 8px 24px rgba(184, 134, 11, 0.3),
        0 4px 16px rgba(184, 134, 11, 0.15);
}

.benefit-card.featured {
    background: rgba(255, 255, 255, 0.05);
    border-color: #DAA520;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.25);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-icon svg {
    width: 60px;
    height: 60px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.benefit-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Requirements Section
   ========================================================================== */

.founding-requirements {
    padding: 80px 0;
}

.founding-requirements-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid #B8860B;
    border-radius: 16px;
    padding: 48px 40px;
}

.founding-requirements h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: white;
}

.founding-requirements .subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.requirement-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    border-left: 3px solid #DAA520;
}

.requirement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: white;
}

.requirement-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Requirements Note
   ========================================================================== */

.requirements-note {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid #DAA520;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.requirements-note h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: white;
}

.requirements-note ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-note li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.requirements-note li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #DAA520;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Urgency Section
   ========================================================================== */

.founding-urgency {
    padding: 80px 0;
}

.urgency-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.08);
    border: 2px solid #B8860B;
    border-radius: 16px;
    padding: 48px 40px;
}

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.urgency-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 12px;
}

.urgency-deadline {
    font-size: 1.25rem;
    margin-bottom: 32px;
    color: white;
}

.urgency-cta {
    margin-top: 32px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: white;
    font-style: italic;
}

/* FAQ Section - Founding Partners Page Only
   ========================================================================== */

/* Completely override FAQ styling for founding partners page */
body section.faq .section-box .faq__grid .faq-item,
body .faq .section-box .faq__grid .faq-item,
section.faq .faq__grid .faq-item {
    margin-bottom: 8px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 8px !important;
    overflow: hidden !important;
}

body section.faq .faq-item__question,
body .faq .faq-item__question,
section.faq .faq-item__question {
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 14px 20px !important;
    text-align: left !important;
    font-size: 0.9375rem !important;
    font-weight: 600 !important;
    color: white !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    border: none !important;
}

body section.faq .faq-item__question:hover,
body .faq .faq-item__question:hover,
section.faq .faq-item__question:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

body section.faq .faq-item__icon,
body .faq .faq-item__icon,
section.faq .faq-item__icon {
    font-size: 1.25rem !important;
    color: #6C5CE7 !important;
    transition: transform 0.3s ease !important;
    flex-shrink: 0 !important;
}

body section.faq .faq-item.active .faq-item__icon,
body .faq .faq-item.active .faq-item__icon,
section.faq .faq-item.active .faq-item__icon {
    transform: rotate(45deg) !important;
}

body section.faq .faq-item__answer,
body .faq .faq-item__answer,
section.faq .faq-item__answer {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
}

body section.faq .faq-item.active .faq-item__answer,
body .faq .faq-item.active .faq-item__answer,
section.faq .faq-item.active .faq-item__answer {
    max-height: 500px;
}

body section.faq .faq-item__answer p,
body .faq .faq-item__answer p,
section.faq .faq-item__answer p {
    padding: 0 20px 14px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
    font-size: 0.9rem !important;
}

.faq {
    padding: 60px 0;
}

.faq .section-title {
    margin-bottom: 40px;
    color: white;
}

.faq__grid {
    max-width: 100%;
    margin: 0;
}

/* Standard Pricing Hero
   ========================================================================== */

.pricing-hero {
    background: linear-gradient(135deg, #f9f9f9 0%, #e9e9e9 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.pricing-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 24px;
    color: #333;
}

.pricing-hero-content .lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 16px;
}

.pricing-note {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

/* Founding Partner Note
   ========================================================================== */

.founding-partner-note {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(75, 60, 87, 0.1) 100%);
    border: 2px solid #6C5CE7;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    margin-top: 40px;
}

.founding-partner-note p {
    font-size: 1.125rem;
    margin: 0;
    color: #333;
}

.founding-partner-note a {
    color: #6C5CE7;
    font-weight: 600;
    text-decoration: none;
}

.founding-partner-note a:hover {
    text-decoration: underline;
}

/* Add-On Services
   ========================================================================== */

.addon-services {
    padding: 80px 0;
    background: transparent;
}

.addon-services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
}

.addon-services .subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.addon-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.addon-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 32px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.addon-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.addon-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.addon-pricing {
    margin-bottom: 20px;
}

.addon-range {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6C5CE7;
    margin: 0;
}

.addon-options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.addon-options li {
    padding: 8px 0;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.addon-options li:last-child {
    border-bottom: none;
}

/* Ad Spend Section
   ========================================================================== */

.ad-spend-section {
    padding: 80px 0;
}

.ad-spend-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
}

.ad-spend-section .subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.ad-spend-pricing {
    max-width: 900px;
    margin: 0 auto 40px;
}

.ad-spend-card {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(75, 60, 87, 0.1) 100%);
    border: 2px solid #6C5CE7;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-bottom: 32px;
}

.ad-spend-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #333;
}

.ad-spend-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #6C5CE7;
    margin: 0 0 12px;
}

.ad-spend-note {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.ad-spend-examples h4 {
    font-size: 1.25rem;
    margin-bottom: 24px;
    color: #333;
}

.ad-spend-example-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ad-spend-example {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    text-align: center;
}

.ad-budget {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
}

.ad-fee {
    font-size: 0.9375rem;
    color: #6C5CE7;
    font-weight: 600;
    margin: 0;
}

.ad-spend-includes {
    background: #f9f9f9;
    padding: 32px;
    border-radius: 12px;
    max-width: 700px;
    margin: 0 auto;
}

.ad-spend-includes h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #333;
}

.ad-spend-includes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.ad-spend-includes li {
    position: relative;
    padding-left: 28px;
    font-size: 0.9375rem;
    color: #555;
}

.ad-spend-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6C5CE7;
    font-weight: 700;
    font-size: 1.25rem;
}

/* Value Comparison
   ========================================================================== */

.value-comparison {
    padding: 80px 0;
    background: transparent;
}

.value-comparison h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: #333;
}

.value-comparison .subtitle {
    text-align: center;
    margin-bottom: 60px;
}

.comparison-table {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: none;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.comparison-header {
    background: #4B3C57;
}

.comparison-header h4 {
    color: white;
    margin: 0;
    font-size: 1.125rem;
}

.comparison-category,
.comparison-option {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-header .comparison-category,
.comparison-header .comparison-option {
    background: #4B3C57;
}

.comparison-category {
    font-weight: 600;
    color: white;
    justify-content: flex-start;
    font-size: 1rem;
}

.comparison-option {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.comparison-option.highlight {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.2) 0%, rgba(75, 60, 87, 0.2) 100%);
    font-weight: 600;
    color: white;
}

.best-value {
    display: block;
    background: linear-gradient(135deg, #6C5CE7 0%, #4B3C57 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* Guarantees Section
   ========================================================================== */

.pricing-guarantees {
    padding: 80px 0;
}

.pricing-guarantees h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

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

.guarantee-card {
    background: #f9f9f9;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.guarantee-card:hover {
    border-color: #6C5CE7;
    transform: translateY(-5px);
}

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.guarantee-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #333;
}

.guarantee-card p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Contact CTA Enhancements
   ========================================================================== */

.standard-pricing-note {
    text-align: center;
    margin-top: 24px;
    font-size: 1rem;
    color: #666;
}

.standard-pricing-note a {
    color: #6C5CE7;
    font-weight: 600;
    text-decoration: none;
}

.standard-pricing-note a:hover {
    text-decoration: underline;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.9375rem;
    color: #888;
    font-style: italic;
}

/* Responsive Design
   ========================================================================== */

/* Tablets (1024px and below) */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pricing-card.featured,
    .standard-pricing-card.featured {
        transform: scale(1);
    }

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

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

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

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

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

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

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .founding-hero {
        padding: 80px 0 60px;
    }

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

    .founding-hero-subtitle {
        font-size: 1.25rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .founding-what h2,
    .founding-benefits h2,
    .founding-requirements h2,
    .urgency-content h2,
    .founding-faq h2,
    .addon-services h2,
    .ad-spend-section h2,
    .value-comparison h2,
    .pricing-guarantees h2,
    .pricing-faq h2 {
        font-size: 2rem;
    }

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

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

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

    .ad-spend-example-grid {
        grid-template-columns: 1fr;
    }

    .ad-spend-includes ul {
        grid-template-columns: 1fr;
    }

    /* Stack comparison table on mobile */
    .comparison-table {
        overflow-x: auto;
    }

    .comparison-header,
    .comparison-row {
        min-width: 600px;
    }

    .spots-visual {
        gap: 12px;
    }

    .spot {
        width: 40px;
        height: 40px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .founding-hero-title {
        font-size: 2rem;
    }

    .founding-hero-subtitle {
        font-size: 1.125rem;
    }

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

    .amount {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .cta-button,
    .btn {
        font-size: 1rem;
        padding: 14px 32px;
    }

    .pricing-card,
    .standard-pricing-card {
        padding: 32px 24px;
    }

    .benefit-card,
    .requirement-card,
    .faq-item,
    .addon-card {
        padding: 24px;
    }
}
/* ==========================================================================
   Small Business Growth Plan Page Styles
   ========================================================================== */

/* Payment Hero Section
   ========================================================================== */

.payment-hero {
    background: linear-gradient(135deg, #6C5CE7 0%, #FF6B9D 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.payment-hero .btn--primary {
    background: linear-gradient(135deg, #6C5CE7, #5B4FD8) !important;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4);
}

.payment-hero .btn--primary:hover {
    background: linear-gradient(135deg, #7C6CF7, #6C5CE7) !important;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.5);
}

.payment-hero .hero__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.payment-hero .hero__badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.payment-hero .hero__title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    line-height: 1.2;
}

.payment-hero .hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero__price-highlight {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.price-large {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.price-large span {
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-comparison {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

/* Content Sections
   ========================================================================== */

.content-section {
    padding: 80px 0;
    background: transparent;
}

.content-section.alternate {
    background: rgba(108, 92, 231, 0.05);
}

.content-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 2px solid #6C5CE7;
}

.content-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
    text-align: center;
}

.content-box .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    text-align: center;
    margin-bottom: 48px;
    line-height: 1.6;
}

.content-box .emphasis {
    font-size: 1.125rem;
    color: #45E3CF;
    text-align: center;
    margin-top: 48px;
    font-weight: 600;
}

/* Problem Grid
   ========================================================================== */

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.problem-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Solution Features
   ========================================================================== */

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 48px;
}

.solution-feature {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 4px solid #6C5CE7;
}

.feature-check {
    font-size: 2rem;
    color: #6C5CE7;
    font-weight: 700;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid #6C5CE7;
}

.feature-content h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* Steps Grid
   ========================================================================== */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin: 48px 0;
}

.step-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6C5CE7, #FF6B9D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
}

.step-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 12px;
    margin-top: 16px;
}

.step-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.step-card p strong {
    color: #45E3CF;
}

.step-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75) !important;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Total Investment Box
   ========================================================================== */

.total-investment {
    margin-top: 48px;
    padding: 32px;
    background: linear-gradient(135deg, #6C5CE7 0%, #FF6B9D 100%);
    border-radius: 12px;
    color: white;
    text-align: center;
}

.total-investment h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: white;
}

.total-investment p {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: white;
}

.investment-note {
    font-size: 0.9375rem;
    opacity: 0.9;
    margin-top: 16px;
}

/* Services Grid
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.service-item {
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-item h3 {
    font-size: 1.125rem;
    color: white;
    margin-bottom: 8px;
}

.service-item p {
    font-size: 0.875rem;
    color: #45E3CF;
    font-weight: 600;
    margin-bottom: 16px;
}

.service-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-item li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-item li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #45E3CF;
    font-weight: 600;
}

/* Terms Grid
   ========================================================================== */

.terms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.term-card {
    padding: 32px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.term-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 16px;
}

.term-card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 16px;
}

.term-card ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.term-card li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.term-card li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #45E3CF;
    font-weight: 700;
}

.term-note {
    font-size: 0.875rem;
    color: #45E3CF !important;
    font-style: italic;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Fit Grid
   ========================================================================== */

.fit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.fit-box {
    padding: 32px;
    border-radius: 12px;
    border: 2px solid;
}

.fit-box.good-fit {
    background: rgba(108, 92, 231, 0.1);
    border-color: #6C5CE7;
}

.fit-box.bad-fit {
    background: rgba(255, 107, 157, 0.1);
    border-color: #FF6B9D;
}

.fit-box h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.fit-box.good-fit h3 {
    color: #6C5CE7;
}

.fit-box.bad-fit h3 {
    color: #FF6B9D;
}

.fit-box ul {
    list-style: none;
    padding: 0;
}

.fit-box li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}

.fit-box.good-fit li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6C5CE7;
    font-weight: 700;
    font-size: 1.125rem;
}

.fit-box.bad-fit li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #FF6B9D;
    font-weight: 700;
    font-size: 1.125rem;
}

.fit-note {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid rgba(255, 107, 157, 0.3);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

/* FAQ List (Growth Plan specific)
   ========================================================================== */

.content-section .faq-list {
    margin-top: 48px;
}

.content-section .faq-item {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.content-section .faq-item__question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    transition: background 0.3s ease;
}

.content-section .faq-item__question:hover {
    background: rgba(255, 255, 255, 0.08);
}

.content-section .faq-item__icon {
    font-size: 1.5rem;
    color: #45E3CF;
    transition: transform 0.3s ease;
}

.content-section .faq-item.active .faq-item__icon {
    transform: rotate(45deg);
}

.content-section .faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.content-section .faq-item.active .faq-item__answer {
    max-height: 1000px;
}

.content-section .faq-item__answer p {
    padding: 0 24px 24px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

/* Contact CTA Section (Growth Plan)
   ========================================================================== */

.contact-cta {
    padding: 80px 0;
    background: transparent;
}

.contact-cta__box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
    padding: 60px;
    border: 2px solid #6C5CE7;
    border-radius: 16px;
}

.contact-cta__box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
}

.contact-cta__box p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    line-height: 1.6;
}

/* Override gold button styling for growth plan page */
.contact-cta .btn--primary.btn--large {
    background: linear-gradient(135deg, #6C5CE7, #5B4FD8) !important;
    box-shadow: 0 4px 12px rgba(108, 92, 231, 0.4) !important;
}

.contact-cta .btn--primary.btn--large:hover {
    background: linear-gradient(135deg, #7C6CF7, #6C5CE7) !important;
    box-shadow: 0 8px 24px rgba(108, 92, 231, 0.5) !important;
}

/* Final CTA Section
   ========================================================================== */

.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #6C5CE7 0%, #FF6B9D 100%);
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 24px;
}

.cta-box .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cta-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 48px 0;
}

.cta-step {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 24px 16px;
    backdrop-filter: blur(10px);
}

.cta-step-number {
    width: 50px;
    height: 50px;
    background: white;
    color: #6C5CE7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.cta-step p {
    font-size: 0.9375rem;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.cta-note {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 32px;
    font-style: italic;
}

/* Responsive Styles
   ========================================================================== */

@media (max-width: 992px) {
    .problem-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid,
    .terms-grid,
    .fit-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .payment-hero {
        padding: 80px 0 60px;
    }

    .price-large {
        font-size: 3rem;
    }

    .content-box {
        padding: 40px 32px;
    }

    .content-box h2 {
        font-size: 2rem;
    }

    .content-box .lead {
        font-size: 1.125rem;
    }

    .problem-grid,
    .services-grid,
    .cta-steps {
        grid-template-columns: 1fr;
    }

    .service-item ul {
        text-align: center;
    }

    .service-item li {
        text-align: left;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .cta-box .lead {
        font-size: 1.125rem;
    }
}

@media (max-width: 576px) {
    .content-section {
        padding: 60px 0;
    }

    .content-box {
        padding: 32px 24px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        top: -15px;
        left: 24px;
    }

    .step-card {
        padding: 24px;
    }

    .fit-box,
    .term-card {
        padding: 24px;
    }
}
