:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3409161 */.pricing-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 7%;
    background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952') center/cover no-repeat;
    border-radius: 30px;
    overflow: hidden;
}

.pricing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15,23,42,0.9),
        rgba(30,41,59,0.75)
    );
}

.pricing-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
    color: white;
}

.pricing-label {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-content h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.pricing-content p {
    font-size: 18px;
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 30px;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 28px;
    background: white;
    color: #0f172a;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
}

/* Responsive */
@media (max-width:768px){
    .pricing-content h1{
        font-size:34px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b6df420 */.package-section {
    padding: 100px 7%;
    background: #f8fafc;
}

.package-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 60px;
}

.package-label {
    display: inline-block;
    padding: 8px 18px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    margin-bottom: 20px;
}

.package-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0f172a;
}

.package-header p {
    color: #64748b;
    line-height: 1.8;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.package-card {
    background: white;
    padding: 40px 30px;
    border-radius: 25px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.package-card:hover {
    transform: translateY(-8px);
}

.package-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.price {
    font-size: 42px;
    font-weight: bold;
    color: #0f172a;
    margin-bottom: 25px;
}

.price span {
    font-size: 16px;
    color: #64748b;
}

.package-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.package-card ul li {
    margin-bottom: 12px;
    color: #64748b;
}

.package-card a {
    display: inline-block;
    padding: 14px 24px;
    background: #0f172a;
    color: white;
    text-decoration: none;
    border-radius: 40px;
}

.featured {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: white;
}

.featured .price,
.featured h3,
.featured ul li {
    color: white;
}

.best-seller {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    color: #0f172a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
}

/* Responsive */
@media (max-width:991px){
    .package-grid{
        grid-template-columns:1fr;
    }

    .package-header h2{
        font-size:34px;
    }
}/* End custom CSS */