:root {
    --pink:      #e0748a;
    --pink-dark: #c85a72;
    --dark-bg:   #111111;
    --blue-bg:   #d9edf7;
    --text:      #333333;
}

body {
    font-family: 'Assistant', 'Segoe UI', Arial, sans-serif;
    color: var(--text);
    direction: rtl;
}

/* ── Hero ── */
.hero-section {
    background: #fff;
    padding: 2rem 0 1.5rem;
    text-align: center;
}
.hero-logo img { max-height: 70px; }
.hero-badge {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0.5rem;
}
.hero-title {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 800;
    color: var(--pink);
    line-height: 1.3;
    margin-bottom: 0.4rem;
}
.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 1.2rem;
}

/* Countdown */
.countdown-wrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.countdown-box {
    background: #fff;
    border: 2px solid var(--pink);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    min-width: 70px;
    text-align: center;
}
.countdown-box .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--pink);
    line-height: 1;
}
.countdown-box .lbl {
    font-size: 0.7rem;
    color: #888;
}

/* Pink button */
.btn-pink {
    background: var(--pink);
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 0.7rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    max-width: 340px;
}
.btn-pink:hover { background: var(--pink-dark); color: #fff; }

/* Form inputs */
.form-hero .form-control {
    border-radius: 8px;
    border: 1.5px solid #ccc;
    padding: 0.65rem 1rem;
    font-size: 1rem;
    text-align: center;
}
.form-hero .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.2rem rgba(224,116,138,.2);
}

/* ── Benefits section ── */
.benefits-section {
    background: #f9f9f9;
    padding: 2rem 0;
}
.benefits-section h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1rem;
}
.check-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.55rem;
    font-size: 1rem;
}
.check-item .check-icon {
    color: var(--pink);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Doctor section ── */
.doctor-section {
    background: var(--dark-bg);
    color: #fff;
    padding: 3rem 0;
}
.doctor-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
}
.forbes-badge {
    display: inline-block;
    background: #fff;
    color: #000;
    font-family: 'Georgia', serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.1rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.doctor-photo {
    width: 100%;
    max-width: 280px;
    border-radius: 12px;
    object-fit: cover;
}
.doctor-section p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #ddd;
}

/* ── Myths section ── */
.myths-section {
    background: var(--blue-bg);
    padding: 2.5rem 0;
}
.myths-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pink);
    text-align: center;
    margin-bottom: 1.5rem;
}
.myth-card {
    background: #fff;
    border-radius: 10px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.08);
    font-size: 0.9rem;
}
.myth-card .myth-num {
    font-weight: 800;
    color: var(--pink);
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

/* ── Testimonials ── */
.testimonials-section {
    background: #fff;
    padding: 2.5rem 0;
}
.testimonials-section h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--pink);
    text-align: center;
    margin-bottom: 1.5rem;
}
.testimonial-card {
    background: #f8f8f8;
    border-right: 4px solid var(--pink);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    margin-bottom: 1rem;
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ── CTA section ── */
.cta-section {
    background: #fff;
    padding: 2rem 0 1.5rem;
    text-align: center;
    border-top: 1px solid #eee;
}
.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 1rem;
}

/* ── Footer ── */
.site-footer {
    background: #f2f2f2;
    padding: 1.2rem 0;
    text-align: center;
    font-size: 0.82rem;
    color: #777;
}
.site-footer img { max-height: 50px; margin-bottom: 0.5rem; }

/* ── video-complete page ── */
.complete-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    text-align: center;
}
.complete-page h1 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 0.5rem;
}
.complete-page .subtitle {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}
.complete-form { max-width: 460px; width: 100%; }
.complete-form .form-control {
    border-radius: 8px;
    border: 1.5px solid #ccc;
    padding: 0.7rem 1rem;
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}
.complete-form .form-control:focus {
    border-color: var(--pink);
    box-shadow: 0 0 0 0.2rem rgba(224,116,138,.2);
}

/* ── thank you page ── */
.thank-page {
    min-height: 100vh;
    padding: 2.5rem 1rem;
    text-align: center;
}
.thank-page h1 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.thank-page .msg {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.thank-page .msg-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}
.thank-page .video-wrap {
    max-width: 640px;
    margin: 1.5rem auto;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}
.thank-page .video-wrap iframe {
    position: absolute;
    top: 0; right: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Spinner while submitting */
.btn-pink .spinner {
    display: none;
    width: 1rem; height: 1rem;
    border: 2px solid rgba(255,255,255,.5);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .6s linear infinite;
    vertical-align: middle;
    margin-left: 0.4rem;
}
.btn-pink.loading .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 576px) {
    .countdown-box { min-width: 58px; }
    .countdown-box .num { font-size: 1.6rem; }
    .doctor-photo { max-width: 200px; }
}
