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

body {
    font-family: 'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #111111;
    color: #f7f7f7;
    direction: rtl;
}

.page {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 12px 32px;
    background: #171717;
}

/* Sections */
.section {
    padding: 18px 0;
}

.section--dark {
    background: #121212;
    margin: 14px -12px;
    padding: 18px 12px;
}

.section--accent {
    background: linear-gradient(145deg, #222222 0, #111111 40%, #151515 100%);
    margin: 0 -12px 12px;
    padding: 18px 12px 20px;
}

.section__title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffd666;
}

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

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

/* Hero */
.hero {
    text-align: center;
}

.hero__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.badge {
    display: inline-block;
    background: #ffd666;
    color: #111;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hero__title {
    font-size: 22px;
    line-height: 1.4;
    font-weight: 900;
    color: #ffffff;
}

.hero__title span {
    color: #ffd666;
}

.hero__subtitle {
    font-size: 13px;
    color: #f3f3f3;
    margin-top: 4px;
    line-height: 1.7;
    text-align: right;
}

.hero__image {
    margin: 12px auto 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #333333;
    background: radial-gradient(circle at top, #ffd66622 0, transparent 60%);
    padding: 8px;
}

.hero__image img {
    width: 100%;
    border-radius: 10px;
}

.hero__bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    margin-top: 4px;
    text-align: right;
}

.hero__bullet {
    background: #111;
    border-radius: 999px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 214, 102, 0.4);
}

/* Buttons */
.btn {
    display: inline-block;
    border-radius: 999px;
    font-weight: 800;
    font-size: 15px;
    padding: 11px 22px;
    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, #ffd666, #ffb800);
    color: #111;
    box-shadow: 0 8px 18px rgba(0,0,0,0.6);
}

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

.btn--full {
    width: 100%;
    margin-top: 10px;
}

/* Problem box */
.problem-box {
    background: #1b1b1b;
    border-radius: 10px;
    padding: 10px 10px;
    border: 1px dashed #ff6b6b;
    font-size: 13px;
    line-height: 1.7;
    color: #f5f5f5;
}

/* Cards / benefits */
.cards {
    display: grid;
    gap: 10px;
}

.card {
    background: #131313;
    border-radius: 12px;
    padding: 10px 10px;
    border: 1px solid #333333;
}

.card--with-image {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.card__image img {
    width: 86px;
    height: auto;
    border-radius: 10px;
}

.card__body {
    flex: 1;
}

.card__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #ffd666;
}

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

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.step__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #ffd666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    color: #ffd666;
}

.step__text {
    font-size: 13px;
    color: #f2f2f2;
    line-height: 1.6;
}

/* Timer & price */
.timer-box {
    margin-top: 6px;
    background: #111111;
    border-radius: 12px;
    padding: 10px 10px;
    border: 1px solid rgba(255,214,102,0.6);
}

.timer-box__label {
    font-size: 13px;
    margin-bottom: 6px;
    text-align: center;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.timer__item {
    min-width: 54px;
    background: #000;
    border-radius: 8px;
    border: 1px solid rgba(255,214,102,0.7);
    text-align: center;
    padding: 6px 4px;
}

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

.timer__item small {
    display: block;
    font-size: 11px;
    color: #f1f1f1;
}

.price-box {
    margin-top: 10px;
    background: #111;
    border-radius: 12px;
    padding: 12px 10px 14px;
    border: 1px solid rgba(255,214,102,0.7);
    text-align: center;
}

.price-box__old {
    font-size: 13px;
    color: #dddddd;
}

.price-box__old span {
    text-decoration: line-through;
    color: #999999;
}

.price-box__new {
    margin-top: 4px;
    font-size: 18px;
    color: #ffd666;
}

.price-box__note {
    font-size: 12px;
    margin-top: 8px;
    color: #f1f1f1;
}

/* Testimonials */
.testimonials {
    display: grid;
    gap: 10px;
}

.testimonial {
    background: #131313;
    border-radius: 10px;
    padding: 9px 10px;
    border: 1px solid #333333;
    font-size: 13px;
    line-height: 1.8;
}

.testimonial__meta {
    margin-top: 6px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #ffd666;
}

/* Order form */
.order-form {
    margin-top: 4px;
    background: #131313;
    border-radius: 14px;
    padding: 12px 10px 14px;
    border: 1px solid #333333;
}

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

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

.order-form__field input {
    background: #101010;
    border-radius: 999px;
    border: 1px solid #444444;
    padding: 8px 12px;
    font-size: 14px;
    color: #ffffff;
    outline: none;
}

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

.order-form__note {
    margin-top: 6px;
    font-size: 11px;
    text-align: center;
    color: #f1f1f1;
}

/* Footer */
.footer {
    margin-top: 18px;
    font-size: 11px;
    text-align: center;
    color: #aaaaaa;
}

/* Small tablets */
@media (min-width: 600px) {
    .hero__title {
        font-size: 24px;
    }
    .section__title {
        font-size: 20px;
    }
}