/* PRICING PAGES STYLESHEET */
/* Styles for /pricing-packages/ tier pages */
/* Last Updated: January 11, 2025 */

/* ==========================================================================
   Package Hero Sections
   ========================================================================== */

.package-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 80px 20px;
}

/* Hero Backgrounds */
.starter-hero {
    background: linear-gradient(135deg, #348888 0%, #225656 100%);
}

.pro-hero {
    background: linear-gradient(135deg, #f24405 0%, #c23604 100%);
}

.elite-hero {
    background: linear-gradient(135deg, #225656 0%, #1a3f3f 100%);
}

.enterprise-hero {
    background: linear-gradient(135deg, #1a252f 0%, #348888 100%);
}

/* Hero Badges */
.popular-hero-badge,
.enterprise-hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #fff;
    color: #f24405;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.enterprise-hero-badge {
    color: #348888;
}

.package-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.price-display {
    margin: 30px 0 16px;
}

.big-price {
    font-size: 5rem;
    font-weight: bold;
    display: inline-block;
}

.per-month {
    font-size: 1.5rem;
    vertical-align: super;
    opacity: 0.9;
}

.setup-fee {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.whats-included,
.who-this-is-for,
.package-faq,
.package-comparison,
.multi-location-pricing,
.why-pro,
.why-elite,
.why-enterprise,
.elite-vs-pro,
.roi-section,
.enterprise-pricing-structure,
.enterprise-vs-elite,
.who-needs-enterprise,
.enterprise-case-study {
    padding: 80px 0;
}

.whats-included {
    background: #f9f9f9;
}

.multi-location-pricing {
    background: #fff;
}

.who-this-is-for,
.package-comparison {
    background: #f9f9f9;
}

.roi-section {
    background: #fff;
}

/* Section Headers */
section h2 {
    font-size: 2.5rem;
    color: #225656;
    text-align: center;
    margin-bottom: 20px;
}

section h2:after {
    content: '';
    width: 80px;
    height: 4px;
    background: #348888;
    display: block;
    margin: 16px auto 0;
    border-radius: 2px;
}

.intro-text {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    color: #555;
}

/* ==========================================================================
   Features Grid
   ========================================================================== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-block {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.feature-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.feature-block h3 {
    font-size: 1.3rem;
    color: #348888;
    margin-bottom: 12px;
}

.feature-block p {
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   Multi-Location Pricing Table
   ========================================================================== */

.location-pricing-table {
    max-width: 600px;
    margin: 30px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
}

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

.pricing-row.example {
    background: #f9f9f9;
    font-weight: bold;
}

.location-count {
    color: #333;
}

.location-price {
    color: #f24405;
    font-weight: bold;
}

.enterprise-note {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.enterprise-note a {
    color: #348888;
    text-decoration: none;
    font-weight: bold;
}

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

/* ==========================================================================
   Two-Column Layouts
   ========================================================================== */

.two-column {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.good-fit,
.not-fit {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.good-fit {
    border-top: 4px solid #348888;
}

.not-fit {
    border-top: 4px solid #f24405;
}

.good-fit h3,
.not-fit h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.good-fit ul,
.not-fit ul {
    list-style: none;
    padding: 0;
}

.good-fit ul li,
.not-fit ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.good-fit ul li:last-child,
.not-fit ul li:last-child {
    border-bottom: none;
}

.upgrade-cta {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2rem;
}

.upgrade-cta a {
    color: #348888;
    text-decoration: none;
    font-weight: bold;
}

.upgrade-cta a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.package-faq,
.faq-section {
    background: #fff;
}

.faq-item {
    max-width: 900px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #348888;
    box-shadow: 0 4px 12px rgba(52,136,136,0.1);
}

.faq-item.active {
    border-color: #348888;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.3rem;
    font-weight: bold;
    color: #225656;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.faq-item.active .faq-question {
    background: #f9f9f9;
}

.faq-icon {
    font-size: 2rem;
    color: #348888;
    font-weight: bold;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer > div {
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #333;
}

.faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
}

.faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Responsive FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .faq-icon {
        font-size: 1.5rem;
        margin-left: 10px;
    }
    
    .faq-answer > div {
        padding: 0 20px 20px 20px;
    }
}

/* ==========================================================================
   Comparison Table
   ========================================================================== */

.comparison-table {
    overflow-x: auto;
    margin-top: 40px;
}

.comparison-table table {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: #348888;
    color: #fff;
}

.comparison-table th {
    padding: 20px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.comparison-table th.current {
    background: #f24405;
}

.comparison-table th a {
    color: #fff;
    text-decoration: none;
}

.comparison-table th a:hover {
    text-decoration: underline;
}

.price-small {
    font-size: 0.9rem;
    font-weight: normal;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    color: #333;
}

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

.comparison-table tr:hover {
    background: #f9f9f9;
}

.comparison-footer {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
}

.comparison-footer a {
    color: #348888;
    text-decoration: none;
    font-weight: bold;
}

.comparison-footer a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   Benefits & Why Sections
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #348888;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

.benefit-large {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.benefit-large h3 {
    font-size: 1.8rem;
    color: #348888;
    margin-bottom: 16px;
}

.benefit-large p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ==========================================================================
   ROI Calculator
   ========================================================================== */

.roi-calculator {
    display: grid;
    grid-template-columns: 1fr auto 2fr;
    gap: 40px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto;
    background: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
}

.roi-input,
.roi-output {
    text-align: center;
}

.roi-input h3,
.roi-output h3 {
    font-size: 1.3rem;
    color: #225656;
    margin-bottom: 20px;
}

.big-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f24405;
    display: block;
    margin: 10px 0;
}

.small-text {
    font-size: 1rem;
    color: #666;
}

.yearly-cost {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
    font-weight: bold;
}

.roi-arrow {
    font-size: 3rem;
    color: #348888;
}

.roi-output ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.roi-output ul li {
    padding: 8px 0;
    font-size: 1.05rem;
    color: #333;
}

.roi-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Elite vs Pro Section
   ========================================================================== */

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.comparison-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.comparison-card h3 {
    font-size: 1.6rem;
    color: #225656;
    margin-bottom: 20px;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    line-height: 1.6;
}

.comparison-card ul li:last-child {
    border-bottom: none;
}

.plus {
    color: #348888;
    font-weight: bold;
    margin-right: 8px;
}

.value-prop {
    margin-top: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.stick-with {
    margin-top: 20px;
    padding: 20px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #f24405;
}

/* ==========================================================================
   Enterprise Specific Sections
   ========================================================================== */

.enterprise-benefits {
    margin-top: 50px;
}

.enterprise-pricing-structure {
    background: #f9f9f9;
}

.pricing-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tier-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.tier-card.featured {
    border: 3px solid #348888;
}

.most-common {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #348888;
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
}

.tier-card h3 {
    font-size: 1.5rem;
    color: #225656;
    margin-bottom: 12px;
}

.tier-price {
    font-size: 2rem;
    font-weight: bold;
    color: #f24405;
    margin-bottom: 20px;
}

.tier-card ul {
    text-align: left;
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tier-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.tier-card ul li:last-child {
    border-bottom: none;
}

.tier-example {
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    font-weight: bold;
    color: #333;
}

.pricing-factors {
    max-width: 900px;
    margin: 50px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.pricing-factors h3 {
    font-size: 1.6rem;
    color: #225656;
    margin-bottom: 20px;
}

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

.pricing-factors ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

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

/* Enterprise vs Elite */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-point {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.comparison-point h3 {
    font-size: 1.4rem;
    color: #348888;
    margin-bottom: 16px;
}

.comparison-point .math {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
}

.comparison-point .math div {
    margin-bottom: 12px;
}

.comparison-point .math div:last-child {
    margin-bottom: 0;
}

/* Who Needs Enterprise */
.enterprise-checklist,
.not-ready-yet {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.enterprise-checklist {
    border-top: 4px solid #348888;
}

.not-ready-yet {
    border-top: 4px solid #f24405;
}

.enterprise-checklist h3,
.not-ready-yet h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.enterprise-checklist ul,
.not-ready-yet ul {
    list-style: none;
    padding: 0;
}

.enterprise-checklist ul li,
.not-ready-yet ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.enterprise-checklist ul li:last-child,
.not-ready-yet ul li:last-child {
    border-bottom: none;
}

/* Enterprise Case Study */
.case-study-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.case-study-text h3 {
    font-size: 1.8rem;
    color: #348888;
    margin-bottom: 16px;
}

.case-study-text p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.case-study-text ul {
    list-style: none;
    padding: 0;
}

.case-study-text ul li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.case-study-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-stat {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #f24405;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
    display: block;
}

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

.final-cta {
    background: linear-gradient(135deg, #348888 0%, #225656 100%);
    color: #fff;
    text-align: center;
    padding: 80px 20px;
}

.enterprise-cta {
    background: linear-gradient(135deg, #1a252f 0%, #348888 100%);
}

.final-cta h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta h2:after {
    background: #fff;
}

.final-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.no-contract {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 20px;
}

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

@media (max-width: 1024px) {
    .roi-calculator {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .roi-arrow {
        transform: rotate(90deg);
        margin: 20px 0;
    }
    
    .case-study-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .package-hero {
        min-height: 50vh;
        padding: 60px 20px;
    }
    
    .package-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .big-price {
        font-size: 3.5rem;
    }
    
    .popular-hero-badge,
    .enterprise-hero-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column,
    .comparison-cards,
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-tiers {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }
}

@media (max-width: 480px) {
    .package-hero h1 {
        font-size: 1.6rem;
    }
    
    .big-price {
        font-size: 2.5rem;
    }
    
    section h2 {
        font-size: 1.6rem;
    }
    
    .feature-block,
    .benefit-card,
    .faq-item {
        padding: 20px;
    }
}
