/* ================================================================
   LANDING PAGES — ریدیزاین جدید (صورتی/نارنجی) — آرایشگاه زنانه
   ================================================================ */

.landing-page {
    --lp-pink: #f71f6f;
    --lp-orange: #fc5535;
    --lp-pink-dark: #d81159;
    --lp-icon: #ff5a5a;
    --lp-icon-bg: #ffedf0;
    --lp-text: #1a1a2e;
    --lp-muted: #8a8a9a;
    --lp-border: #f4e7ea;
    --lp-soft-bg: #fff6f7;
    --lp-gradient: linear-gradient(90deg, var(--lp-pink), var(--lp-orange));
    display: block;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--lp-text);
    position: relative;
}
.landing-page .container { max-width: 1180px; }

.landing-page .btn { border-radius: 50px; font-weight: 700; }
.landing-page .btn-primary {
    background: var(--lp-gradient);
    border-color: transparent;
    box-shadow: 0 10px 24px rgba(247, 31, 111, 0.28);
}
.landing-page .btn-primary:hover {
    box-shadow: 0 14px 30px rgba(247, 31, 111, 0.38);
}
.landing-page .btn-outline {
    border-color: var(--lp-pink);
    color: var(--lp-pink);
    background: #fff;
}
.landing-page .btn-outline:hover {
    background: var(--lp-pink);
    color: #fff;
}

/* ----- SIDE TAB (jump to reviews) ----- */
.landing-side-tab {
    position: fixed;
    top: 60%;
    left: 0;
    transform: translateY(-50%) rotate(180deg);
    writing-mode: vertical-rl;
    background: var(--lp-gradient);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 16px 10px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    z-index: 800;
    box-shadow: 0 6px 18px rgba(247, 31, 111, 0.3);
}
.landing-side-tab-icon { writing-mode: horizontal-tb; display: flex; }
.landing-side-tab-icon svg { width: 16px; height: 16px; }

/* ----- SECTION LAYOUT ----- */
.landing-section { padding: 44px 0; }
.landing-section-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 6px;
    line-height: 1.5;
    text-align: right;
    position: relative;
}
.landing-title-center { text-align: center; }
.landing-title-center.landing-section-title { margin-bottom: 24px; }
.landing-title-center.landing-section-title::after {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 4px;
    background: var(--lp-gradient);
    margin: 10px auto 0;
}
/* ----- HERO ----- */
.landing-hero { padding: 24px 0 8px; }
.landing-hero-media {
    position: relative;
    margin-bottom: 22px;
}
.landing-hero-media video {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 44px rgba(247, 31, 111, 0.18);
    display: block;
    background: #1a1a2e;
}

.landing-video-badge {
    position: absolute;
    top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 5;
    line-height: 1.5;
}
.landing-video-badge-viewers {
    right: 12px;
    background: rgba(20, 18, 24, 0.68);
    backdrop-filter: blur(4px);
    color: #fff;
}
.landing-video-badge-viewers svg { width: 16px; height: 16px; flex-shrink: 0; }
.landing-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 0 rgba(46, 204, 113, 0.6);
    animation: landingLiveDotPulse 1.6s infinite;
    flex-shrink: 0;
}
@keyframes landingLiveDotPulse {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}
.landing-video-badge-orders {
    left: 12px;
    background: #ffffff;
    color: var(--lp-text);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.landing-video-badge-orders svg { width: 18px; height: 18px; color: var(--lp-orange); flex-shrink: 0; }
.landing-video-badge-orders strong { color: var(--lp-pink-dark); }

.landing-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--lp-gradient);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 26px rgba(247, 31, 111, 0.45);
    z-index: 6;
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.landing-video-play svg { width: 24px; height: 24px; margin-right: -2px; }
.landing-video-play.landing-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.8);
}

.landing-hero-text { text-align: right; }
.landing-hero-title {
    font-size: 1.6rem;
    font-weight: 900;
    line-height: 1.55;
    color: var(--lp-text);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.landing-hero-title span { color: var(--lp-pink); }
.landing-hero-sub {
    color: #4b4b57;
    font-size: 0.95rem;
    line-height: 1.9;
    margin-bottom: 18px;
}

.landing-trust-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--lp-text);
    margin-bottom: 6px;
}
.landing-trust-icons span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    padding-left: 14px;
}
.landing-trust-icons span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: #e3e3e8;
}
.landing-trust-icons span:last-child::after { display: none; }
.landing-trust-icons svg { width: 18px; height: 18px; color: var(--lp-icon); flex-shrink: 0; }

/* ----- PRICE BOX ----- */
.landing-price-section { padding-top: 26px; }
.landing-price-box {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 22px;
    padding: 22px 20px;
    box-shadow: 0 16px 40px rgba(247, 31, 111, 0.1);
}
.landing-price-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.landing-price-badge {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: var(--lp-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.5;
    position: relative;
}
.landing-price-badge::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(247, 31, 111, 0.35);
}
.landing-price-amount {
    flex: 1;
    background: var(--lp-soft-bg);
    border-radius: 16px;
    padding: 16px 14px;
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-pink-dark);
}
.landing-price-amount strong {
    font-size: 1.55rem;
    font-weight: 900;
    display: inline-block;
    margin-left: 6px;
}
.landing-price-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: none;
}
.landing-price-cta svg { width: 20px; height: 20px; }
.landing-price-hint {
    display: block;
    text-align: center;
    color: var(--lp-muted);
    font-size: 0.82rem;
    margin: 12px 0 16px;
}
.landing-price-trust {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-top: 1px solid var(--lp-border);
    padding-top: 14px;
    font-size: 0.8rem;
    color: var(--lp-text);
    font-weight: 600;
    line-height: 1.9;
}
.landing-price-trust span { flex: 1; }
.landing-price-trust svg { width: 18px; height: 18px; margin-top: 2px; color: var(--lp-pink); flex-shrink: 0; }

.landing-price-breakdown { margin-top: 14px; }
.landing-price-breakdown-bar {
    display: flex;
    width: 100%;
    height: 10px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--lp-soft-bg);
}
.landing-price-breakdown-seg {
    display: block;
    height: 100%;
    width: 0;
    transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.landing-price-breakdown-seg-site { background: var(--lp-gradient); }
.landing-price-breakdown-seg-server { background: #f7c948; }
.landing-price-breakdown-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 10px;
}
.landing-price-breakdown-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.76rem;
    color: var(--lp-text);
    font-weight: 600;
}
.landing-price-breakdown-item strong { color: var(--lp-pink-dark); font-weight: 800; }
.landing-price-breakdown-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}
.landing-price-breakdown-dot-site { background: var(--lp-gradient); }
.landing-price-breakdown-dot-server { background: #f7c948; }

/* ----- PERKS (4 cards) ----- */
.landing-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.landing-perk {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.landing-perk:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(247, 31, 111, 0.12);
}
.landing-perk-icon {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--lp-icon-bg);
    color: var(--lp-icon);
    margin-bottom: 10px;
}
.landing-perk-icon svg { width: 20px; height: 20px; }
.landing-perk strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--lp-text);
    line-height: 1.5;
    margin-bottom: 4px;
}
.landing-perk p {
    font-size: 0.68rem;
    color: var(--lp-muted);
    line-height: 1.6;
    margin: 0;
}

/* ----- SPLIT (about project) ----- */
.landing-split {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.landing-split-media img {
    width: 100%;
    border-radius: 18px;
    display: block;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.1);
}
.landing-split-text { text-align: right; }
.landing-split-text .landing-section-title { text-align: right; margin-bottom: 12px; }
.landing-split-text p {
    color: #4b4b57;
    font-size: 0.85rem;
    line-height: 1.95;
    margin-bottom: 0;
}

/* ----- ABOUT PROJECT: expandable long-form content ----- */
.landing-about-more {
    position: relative;
    margin-top: 18px;
}
.landing-about-content {
    max-height: 230px;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.landing-about-more.expanded .landing-about-content { max-height: 6000px; }
.landing-about-content h3 {
    position: relative;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--lp-pink-dark);
    text-align: right;
    margin: 22px 0 10px;
    padding-right: 14px;
}
.landing-about-content h3::before {
    content: "";
    position: absolute;
    right: 0;
    top: 3px;
    bottom: 3px;
    width: 4px;
    border-radius: 4px;
    background: var(--lp-gradient);
}
.landing-about-content h3:first-child { margin-top: 0; }
.landing-about-content p {
    color: #4b4b57;
    font-size: 0.83rem;
    line-height: 1.95;
    text-align: right;
    margin-bottom: 14px;
}
.landing-about-content strong { color: var(--lp-text); font-weight: 800; }
.landing-about-content a {
    color: var(--lp-pink);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px dashed var(--lp-pink);
    transition: border-color 0.2s ease;
}
.landing-about-content a:hover { border-bottom-style: solid; }
.landing-about-callout {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--lp-soft-bg);
    border: 1px solid var(--lp-border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
}
.landing-about-callout svg {
    width: 20px;
    height: 20px;
    color: var(--lp-pink);
    flex-shrink: 0;
    margin-top: 2px;
}
.landing-about-callout p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.9;
}
.landing-about-fade {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 44px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
    pointer-events: none;
}
.landing-about-more.expanded .landing-about-fade { display: none; }
.landing-about-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    background: #fff;
    color: var(--lp-pink-dark);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
.landing-about-toggle svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.landing-about-more.expanded .landing-about-toggle svg { transform: rotate(180deg); }

/* ----- VOICE TESTIMONIALS ----- */
.landing-voice-wrapper { position: relative; }
.landing-voice-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 2px 14px;
    scrollbar-width: none;
    margin: 0 -2px;
}
.landing-voice-scroll::-webkit-scrollbar { display: none; }
.landing-voice-card {
    flex: 0 0 calc(85% - 8px);
    scroll-snap-align: start;
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}
.landing-voice-name {
    display: block;
    text-align: right;
    font-size: 0.88rem;
    color: var(--lp-text);
    margin-bottom: 10px;
}
.landing-voice-audio {
    width: 100%;
    height: 38px;
    accent-color: var(--lp-pink);
}

.landing-voice-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 4px;
}
.landing-voice-dot {
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: #f0d3dc;
    cursor: pointer;
    transition: all 0.3s ease;
}
.landing-voice-dot.active {
    background: var(--lp-gradient);
    width: 22px;
}
.landing-voice-cta { margin-top: 24px; }

/* ----- REVIEWS TEASER ----- */
.landing-reviews-box {
    background: #ffffff;
    border: 1px solid var(--lp-border);
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}
.landing-reviews-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--lp-border);
}
.landing-reviews-head h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--lp-text);
    margin: 0;
}
.landing-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--lp-pink);
}
.landing-reviews-link svg { width: 16px; height: 16px; }
/* ----- کامنت‌های واقعی (Django) ----- */
.landing-comment-item {
    padding: 14px 0;
    border-bottom: 1px solid var(--lp-border);
    text-align: right;
}
.landing-comment-item:last-child { border-bottom: none; padding-bottom: 0; }
.landing-comment-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}
.landing-comment-user { display: flex; align-items: center; gap: 8px; }
.landing-comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--lp-gradient);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.78rem;
    flex-shrink: 0;
}
.landing-comment-user strong { display: block; font-size: 0.85rem; color: var(--lp-text); }
.landing-comment-date { font-size: 0.7rem; color: var(--lp-muted); white-space: nowrap; flex-shrink: 0; }
.landing-comment-item p { color: #4b4b57; line-height: 1.8; margin: 0; font-size: 0.82rem; }
.landing-comment-empty { text-align: center; color: var(--lp-muted); padding: 20px 0; font-size: 0.85rem; }
.landing-comment-item.landing-comment-hidden { display: none; }

.landing-clamp-check {
    max-height: 4.9em;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.landing-clamp-check.expanded { max-height: none; }
.landing-clamp-btn {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    margin-top: 6px;
    padding: 0;
    border: none;
    background: none;
    font-family: inherit;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--lp-pink);
    cursor: pointer;
}

.landing-comments-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 14px;
    padding: 11px;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    background: #fff;
    color: var(--lp-pink-dark);
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
}
.landing-comments-more-btn svg { width: 15px; height: 15px; }

.landing-comment-reply {
    background: var(--lp-soft-bg);
    border-radius: 12px;
    padding: 10px 14px;
    margin-top: 10px;
    border-right: 3px solid var(--lp-pink);
}
.landing-comment-reply-badge {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lp-pink-dark);
    margin-bottom: 4px;
}
.landing-comment-reply p { margin: 0; font-size: 0.8rem; }

/* ----- فرم ثبت کامنت ----- */
.landing-comment-form {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--lp-border);
    text-align: right;
}
.landing-comment-form h4 {
    font-size: 0.92rem;
    color: var(--lp-text);
    margin: 0 0 12px;
}
.landing-comment-form-row { margin-bottom: 10px; position: relative; }
.landing-comment-form-row input,
.landing-comment-form-row textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.85rem;
    color: var(--lp-text);
    resize: vertical;
    transition: border-color 0.25s ease;
}
.landing-comment-form-row input:focus,
.landing-comment-form-row textarea:focus {
    outline: none;
    border-color: var(--lp-pink);
    box-shadow: 0 0 0 3px rgba(247, 31, 111, 0.1);
}
.landing-comment-charcount {
    display: block;
    margin-top: 4px;
    font-size: 0.72rem;
    color: var(--lp-muted);
    text-align: left;
}
.landing-comment-charcount.landing-comment-charcount-over { color: #e6394d; font-weight: 700; }
.landing-comment-form button[type="submit"] {
    width: 100%;
    padding: 12px;
    border: none;
    font-size: 0.85rem;
}
.landing-comment-form-response { margin-top: 10px; }
.landing-comment-form-msg { margin: 0; font-size: 0.8rem; font-weight: 600; }
.landing-comment-form-msg-ok { color: #1a9c5b; }
.landing-comment-form-msg-err { color: #e6394d; }

/* ----- PROCESS ----- */
.landing-process {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    position: relative;
    gap: 6px;
}
.landing-process::before {
    content: "";
    position: absolute;
    top: 15px;
    right: 12%;
    left: 12%;
    height: 2px;
    background: repeating-linear-gradient(90deg, #f4c2d6 0 6px, transparent 6px 12px);
    z-index: 0;
}
.landing-process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}
.landing-process-num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--lp-gradient);
    color: #fff;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 6px 14px rgba(247, 31, 111, 0.3);
}
.landing-process-step strong {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--lp-text);
    margin-bottom: 4px;
    line-height: 1.5;
}
.landing-process-step p {
    font-size: 0.6rem;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.5;
}

/* ----- FAQ TEASER ----- */
.landing-faq-teaser {
    background: var(--lp-soft-bg);
    padding: 26px 0;
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
}
.landing-faq-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    text-align: right;
}
.landing-faq-inner p { color: #4b4b57; font-size: 0.9rem; margin: 0; }

/* ----- FINAL CTA BANNER ----- */
.landing-final-cta-section { padding: 34px 0; }
.landing-final-cta {
    background: var(--lp-gradient);
    border-radius: 24px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.landing-final-cta-media {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.landing-final-cta-media svg { width: 38px; height: 38px; }
.landing-final-cta-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: 8px;
}
.landing-final-cta-text p {
    font-size: 0.85rem;
    line-height: 1.8;
    opacity: 0.92;
    margin-bottom: 16px;
}
.landing-final-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--lp-pink-dark) !important;
    border: none;
    padding: 13px 26px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}
.landing-final-cta-btn svg { width: 18px; height: 18px; }

/* ----- STICKY MOBILE CTA ----- */
.landing-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 900;
    background: #ffffff;
    padding: 10px 16px;
    box-shadow: 0 -6px 20px rgba(247, 31, 111, 0.15);
    border-top: 1px solid var(--lp-border);
}
.landing-sticky-cta .btn { display: block; width: 100%; padding: 13px 20px; border: none; }

/* ----- VIDEO REMINDER TOAST ----- */
.landing-video-toast {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateY(-30px);
    background: var(--lp-gradient);
    color: #ffffff;
    padding: 16px 34px;
    border-radius: 50px;
    box-shadow: 0 0 30px rgba(247, 31, 111, 0.55), 0 0 60px rgba(247, 31, 111, 0.28), inset 0 0 20px rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    font-weight: 700;
    z-index: 9999;
    direction: rtl;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-width: 90%;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.landing-video-toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) scale(1) translateY(0);
    animation: landingNeonPulse 1.5s ease-in-out infinite;
}
@keyframes landingNeonPulse {
    0%, 100% { box-shadow: 0 0 30px rgba(247, 31, 111, 0.55), 0 0 60px rgba(247, 31, 111, 0.28); }
    50% { box-shadow: 0 0 50px rgba(247, 31, 111, 0.85), 0 0 80px rgba(247, 31, 111, 0.45); }
}
.landing-video-toast-icon svg { width: 22px; height: 22px; animation: landingIconBounce 1.2s ease-in-out infinite; }
@keyframes landingIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* ================= RESPONSIVE — TABLET / DESKTOP ================= */
@media (min-width: 620px) {
    .landing-voice-card { flex: 0 0 calc(50% - 6px); }
}

@media (min-width: 720px) {
    .landing-perks { grid-template-columns: repeat(4, 1fr); gap: 16px; }
    .landing-perk { padding: 24px 16px; }
    .landing-perk-icon { width: 54px; height: 54px; }
    .landing-perk-icon svg { width: 24px; height: 24px; }
    .landing-perk strong { font-size: 0.92rem; }
    .landing-perk p { font-size: 0.78rem; }
    .landing-process-step strong { font-size: 0.85rem; }
    .landing-process-step p { font-size: 0.72rem; }
    .landing-final-cta { flex-direction: row; text-align: right; padding: 32px 40px; gap: 26px; }
    .landing-final-cta-text { flex: 1; }
    .landing-final-cta-media { width: 90px; height: 90px; }
    .landing-final-cta-media svg { width: 48px; height: 48px; }
}

@media (min-width: 900px) {
    .landing-page .container { padding: 0 20px; }
    .landing-section { padding: 64px 0; }
    .landing-section-title { font-size: 1.7rem; }
    .landing-price-section { padding-top: 10px; }

    .landing-hero { padding: 40px 0 10px; }
    .landing-hero .container {
        display: grid;
        grid-template-columns: 1.05fr 1fr;
        gap: 50px;
        align-items: center;
    }
    .landing-hero-media { margin-bottom: 0; }
    .landing-hero-title { font-size: 2.3rem; }
    .landing-hero-sub { font-size: 1.02rem; }
    .landing-trust-icons { font-size: 0.9rem; }

    .landing-price-box {
        display: flex;
        align-items: center;
        gap: 26px;
        padding: 26px 32px;
    }
    .landing-price-top { flex: 1; margin-bottom: 0; }
    .landing-price-cta { flex: 0 0 260px; }
    .landing-price-hint { display: none; }
    .landing-price-trust {
        flex: 0 0 260px;
        flex-direction: row;
        align-items: flex-start;
        border-top: none;
        border-right: 1px solid var(--lp-border);
        padding-top: 0;
        padding-right: 26px;
        gap: 8px;
    }

    .landing-split { flex-direction: row-reverse; align-items: center; gap: 50px; }
    .landing-split-media, .landing-split-text { flex: 1; }
    .landing-split-text .landing-section-title { font-size: 1.6rem; }
    .landing-split-text p { font-size: 0.92rem; }
    .landing-about-more { max-width: 760px; margin-right: auto; margin-left: auto; }
    .landing-about-content p, .landing-about-content h3 { text-align: right; }

    .landing-reviews-box { padding: 30px; max-width: 620px; margin: 0 auto; }

    .landing-process-step p { font-size: 0.8rem; }
}