*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: radial-gradient(circle at top, #3a2b17 0, #050506 55%, #020203 100%);
    color: #f8e7c6;
    direction: rtl;
}

.page {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 12px 40px;
}

/* HERO */

.hero {
    padding: 20px 0 24px;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: linear-gradient(135deg, #f4c96b, #d99b3b);
    color: #15110a;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero__title {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 10px;
    font-weight: 800;
}

.hero__title span {
    color: #f4c96b;
}

.hero__subtitle {
    font-size: 14px;
    color: #fbeed2;
    line-height: 1.7;
    margin-bottom: 14px;
}

.hero__image {
    margin: 12px auto 16px;
    background: radial-gradient(circle at center, #f4c96b22 0, transparent 65%);
    padding: 10px;
}

.hero__image img {
    width: 100%;
    max-width: 360px;
    border-radius: 14px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.7);
}

.hero__bullets {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 10px;
    font-size: 13px;
}

.hero__bullet {
    background: rgba(9, 7, 4, 0.85);
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(244, 201, 107, 0.35);
}

/* BUTTONS */

.btn {
    display: inline-block;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    padding: 12px 24px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--primary {
    background: linear-gradient(135deg, #f4c96b, #e0a94c);
    color: #171108;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.btn--outline {
    border: 1px solid #f4c96b;
    color: #f4c96b;
    background: transparent;
    margin-top: 14px;
}

.btn--full {
    width: 100%;
}

/* SECTIONS */

.section {
    padding: 20px 0;
}

.section--dark {
    background: radial-gradient(circle at top, #2d2115 0, #080608 60%, #050406 100%);
    margin: 16px -12px;
    padding: 22px 12px;
}

.section--highlight {
    background: linear-gradient(160deg, #2d2214 0, #0a0807 50%, #21160d 100%);
    border-radius: 16px;
    border: 1px solid rgba(244, 201, 107, 0.4);
    padding: 18px 12px 22px;
}

.section__title {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 800;
    color: #f8e7c6;
}

.section__title--center {
    text-align: center;
}

.section__subtitle {
    font-size: 14px;
    color: #fbeed2;
    line-height: 1.7;
    margin-bottom: 14px;
    text-align: center;
}

/* CARDS */

.cards {
    display: grid;
    gap: 10px;
}

.card {
    background: rgba(7, 5, 3, 0.9);
    border-radius: 12px;
    padding: 12px 11px;
    border: 1px solid rgba(244, 201, 107, 0.25);
}

.card__title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #f4c96b;
}

.card__text {
    font-size: 13px;
    line-height: 1.7;
}

/* STEPS / GALLERY */

.steps {
    display: grid;
    gap: 12px;
}

.step {
    background: rgba(7, 5, 3, 0.9);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(244, 201, 107, 0.2);
    text-align: center;
}

.step img {
    width: 100%;
    max-width: 260px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.step p {
    font-size: 13px;
    line-height: 1.6;
}

/* TIMER */

.timer {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin: 10px 0 4px;
}

.timer__item {
    flex: 1;
    background: rgba(5, 4, 3, 0.9);
    border-radius: 10px;
    padding: 8px 4px;
    border: 1px solid rgba(244, 201, 107, 0.4);
    text-align: center;
}

.timer__item span {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: #f4c96b;
}

.timer__item small {
    font-size: 11px;
    color: #fbeed2;
}

/* TESTIMONIALS */

.testimonials {
    display: grid;
    gap: 12px;
    margin-top: 6px;
}

.testimonial {
    background: rgba(7, 5, 3, 0.95);
    border-radius: 12px;
    padding: 10px 11px;
    border: 1px solid rgba(244, 201, 107, 0.25);
    font-size: 13px;
    line-height: 1.8;
}

.testimonial__text {
    margin-bottom: 8px;
}

.testimonial__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #f4c96b;
}

/* ORDER FORM */

.order-form {
    margin-top: 4px;
    background: rgba(7, 5, 3, 0.96);
    border-radius: 16px;
    padding: 14px 12px 16px;
    border: 1px solid rgba(244, 201, 107, 0.5);
}

.order-form__field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 13px;
}

.order-form__field span {
    color: #fbeed2;
}

.order-form__field input {
    background: #120e09;
    border-radius: 999px;
    border: 1px solid rgba(244, 201, 107, 0.5);
    padding: 9px 12px;
    font-size: 14px;
    color: #fbeed2;
    outline: none;
}

.order-form__field input::placeholder {
    color: #9a8461;
}

.order-form__note {
    margin-top: 8px;
    font-size: 12px;
    text-align: center;
    color: #fbeed2;
}

/* FOOTER */

.footer {
    margin-top: 20px;
    font-size: 11px;
    text-align: center;
    color: #b89b65;
}

/* Small tablets */

@media (min-width: 600px) {
    .hero__title {
        font-size: 26px;
    }

    .section__title {
        font-size: 22px;
    }
}
