.elementor-2679 .elementor-element.elementor-element-1f8b517{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e1f6971 */.hero {
    text-align: center;
    padding: 70px 20px 40px;
}

.hero h1 {
    font-size: 32px;
    color: #2d1f1d;
    margin-bottom: 10px;
}

.hero p {
    color: #666;
    font-size: 15px;
}

.hero-buttons {
    margin-top: 25px;
}

.hero-btn {
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 600;
}

.hero-btn.primary {
    background: #c9a227;
    color: #fff;
}

.hero-btn.secondary {
    border: 1px solid #c9a227;
    color: #c9a227;
}
@media (max-width: 768px) {

    .hero {
        padding: 50px 15px 30px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
        margin-top: 10px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 20px;
    }

    .hero-btn {
        width: 100%;
        display: block;
        text-align: center;
    }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-731d5da *//* ===== GLOBAL ===== */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(180deg, #f9f7f3, #f1ece6);
    color: #2d1f1d;
}

/* ===== HEADER ===== */
.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 32px;
    font-weight: 600;
}

.pricing-header p {
    color: #7a6f6c;
    font-size: 15px;
    margin-top: 8px;
}

/* ===== GRID LAYOUT (FIXED) ===== */
.pricing {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* ===== CARD ===== */
.plan {
    width: 100%;
    padding: 40px 30px;
    border-radius: 22px;

    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, rgba(201,162,39,0.35), rgba(201,162,39,0.05)) border-box;

    border: 1px solid transparent;

    box-shadow: 
        0 15px 40px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.6);

    transition: all 0.35s ease;
    position: relative;
}

/* HOVER */
.plan:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0,0,0,0.1);
}

/* ===== FEATURED ===== */
.featured {
    background: linear-gradient(#ffffff, #ffffff) padding-box,
                linear-gradient(135deg, #c9a227, #f5d76e) border-box;

    border: 1.5px solid transparent;

    box-shadow: 
        0 25px 60px rgba(201,162,39,0.18);

    transform: scale(1.05);
    z-index: 2;
}

/* BADGE */
.badge {
    position: absolute;
    top: -14px;
    left: 25px;
    background: linear-gradient(135deg, #c9a227, #e6c65c);
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 30px;
    font-weight: 600;
}

/* ===== TEXT ===== */
.plan h3 {
    font-size: 21px;
    margin-bottom: 8px;
}

.price {
    font-size: 38px;
    font-weight: 700;
    margin: 12px 0;
    letter-spacing: -1px;
}

.duration {
    font-size: 13px;
    color: #9a8f88;
}

/* ===== FEATURES ===== */
.plan ul {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.plan ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.6;
    color: #3a2e2c;
}

/* GOLD TICK */
.plan ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #c9a227;
    font-size: 14px;
}

/* ===== EXTRA BOX ===== */
.extra {
    background: #faf8f3;
    padding: 14px;
    border-radius: 12px;
    margin-top: 18px;
    font-size: 13px;
    color: #5a4e4c;
}

/* ===== BUTTON ===== */
.btn {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    border: none;
    margin-top: 25px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* BUTTON COLORS */
.basic {
    background: #3b2a28;
    color: #fff;
}

.premium {
    background: linear-gradient(135deg, #c9a227, #e6c65c);
    color: #fff;
    box-shadow: 0 8px 20px rgba(201,162,39,0.3);
}

.pro {
    background: #1a1a1a;
    color: #fff;
}

/* BUTTON HOVER */
.btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}

/* ===== QUOTE ===== */
.quote {
    text-align: center;
    font-size: 12.5px;
    color: #8a7f7c;
    margin-top: 12px;
}

.highlight {
    color: #c9a227;
    font-weight: 500;
}

/* ===== DISCLAIMER ===== */
.disclaimer {
    text-align: center;
    margin-top: 60px;
    font-size: 12px;
    color: #777;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .pricing {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .pricing {
        grid-template-columns: 1fr;
    }

    .plan {
        padding: 30px 20px;
    }

    .price {
        font-size: 32px;
    }

    .pricing-header h2 {
        font-size: 26px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-eddc157 */.why {
    text-align: center;
    padding: 60px 20px;
}

.why h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2d1f1d;
}

.why-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.why-grid div {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}/* End custom CSS */