/* --- PAGE SPECIFIC STYLES --- */
.pricing-hero {
    text-align: center;
    padding: 140px 5% 60px;
    max-width: 900px;
    margin: 0 auto;
}

/* Layout Grid */
.estimator-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    /* 2/3 Content, 1/3 Sticky Sidebar */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 100px;
    position: relative;
}

/* SECTION 1: Service Tiles */
.tile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.select-tile {
    background: white;
    border: 2px solid #f0f0f0;
    padding: 25px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    position: relative;
}

.select-tile:hover {
    border-color: #ddd;
    transform: translateY(-3px);
}

.select-tile.active {
    border-color: var(--brand-blue);
    background: #eff6ff;
    /* Light Blue Tint */
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.15);
}

.tile-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.tile-name {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: #333;
}

/* Checkmark */
.check-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--brand-blue);
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s;
}

.select-tile.active .check-icon {
    opacity: 1;
    transform: scale(1);
}


/* SECTION 2: Engagement Type (Radio Cards) */
.option-group {
    margin-bottom: 50px;
}

.radio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.radio-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.radio-card:hover {
    background: #f9f9f9;
}

.radio-card.active {
    border-color: var(--brand-green);
    background: #f0fdf4;
}

.radio-content h4 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.radio-content p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 50%;
    position: relative;
}

.radio-card.active .radio-circle {
    border-color: var(--brand-green);
}

.radio-card.active .radio-circle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background: var(--brand-green);
    border-radius: 50%;
}


/* SECTION 3: Duration (Pills) */
.duration-pill-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.duration-pill {
    padding: 10px 24px;
    border: 1px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.duration-pill.active {
    background: var(--brand-black);
    color: white;
    border-color: var(--brand-black);
}

.duration-pill .discount-tag {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-top: 3px;
}

.duration-pill.active .discount-tag {
    color: #6ee7b7;
}

.est-discount {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    padding: 8px 12px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    font-size: 0.85rem;
    color: #6ee7b7;
    font-weight: 600;
}

.est-original {
    font-size: 0.85rem;
    color: #666;
    text-decoration: line-through;
    margin-top: 2px;
}


/* STICKY ESTIMATE BOX */
.sticky-sidebar {
    position: relative;
}

.estimate-card {
    position: sticky;
    top: 120px;
    /* Sticks when scrolling */
    background: #111;
    color: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.est-label {
    color: #888;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.est-price {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 10px 0 5px;
}

.est-unit {
    font-size: 1rem;
    color: #888;
    display: block;
    margin-bottom: 30px;
}

.est-summary-list {
    margin-bottom: 30px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.est-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
}

.est-item span:first-child {
    max-width: 70%;
}

/* Responsive */
@media (max-width: 900px) {
    .estimator-layout {
        grid-template-columns: 1fr;
    }

    .estimate-card {
        position: static;
        margin-top: 40px;
    }
}