/* ════════════════════════════════════════════════════════════
   Contract+ Landing Page Styles
   ════════════════════════════════════════════════════════════
   كل الستايلات بادئة بـ .lp- لتجنب التعارض
   ════════════════════════════════════════════════════════════ */

/* ═══ HERO ═══ */
.lp-hero {
    position: relative;
    padding: 64px 0 60px;
    background: linear-gradient(180deg, #f7faf7 0%, #ffffff 100%);
    overflow: hidden;
}

.lp-hero::before {
    content: '';
    position: absolute;
    top: -150px;
    inset-inline-end: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87, 161, 28, .08), transparent 70%);
    z-index: 0;
}

/* ═══════════════════════════════════════════════════════════
   HERO LAYOUT: Side-by-side with professional animations
   ═══════════════════════════════════════════════════════════ */

.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

/* ═══ Hero Text (Right side) ═══ */
.lp-hero-text {
    text-align: start;
    animation: lp-fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.lp-hero-title {
    font-size: clamp(26px, 3.4vw, 40px);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.lp-hero-title-accent {
    color: var(--accent);
    position: relative;
    display: inline-block;
}

.lp-hero-title-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    inset-inline-start: 0;
    width: 100%;
    height: 8px;
    background: rgba(99, 153, 34, .18);
    z-index: -1;
    border-radius: 4px;
    animation: lp-underline 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    transform-origin: left;
}

[dir="rtl"] .lp-hero-title-accent::after {
    transform-origin: right;
}

@keyframes lp-underline {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

.lp-hero-desc {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 32px;
    animation: lp-fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.15s both;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: lp-fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.lp-btn-cta {
    min-width: 180px;
    padding: 12px 28px;
    font-size: 16px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.lp-btn-cta:hover {
    transform: translateY(-3px);
}

.lp-hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: flex-start;
    animation: lp-fade-in-up 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.45s both;
}

.lp-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    flex: 1;
    min-width: 0;
}

.lp-trust-item svg {
    width: 32px;
    height: 32px;
    padding: 7px;
    border-radius: 50%;
    background: rgba(87, 161, 28, .12);
    color: var(--accent);
    flex-shrink: 0;
}

.lp-trust-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
    min-width: 0;
    gap: 2px;
}

.lp-trust-text strong {
    display: block;
    width: 100%;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-900);
    white-space: nowrap;
}

.lp-trust-text span {
    display: block;
    width: 100%;
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    line-height: 1.4;
}

/* ═══ Hero Visual (Left side) ═══ */
.lp-hero-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 0.75;
    min-height: 440px;
    animation: lp-fade-in-right 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.lp-hero-glow {
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: radial-gradient(circle at center, rgba(99, 153, 34, .18), transparent 65%);
    filter: blur(60px);
    z-index: 0;
    animation: lp-pulse 4s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.05); }
}

/* ─── Browser-style screen frame ─── */
.lp-screen-frame {
    position: absolute;
    top: 50%;
    inset-inline-end: 0;
    transform: translateY(-50%);
    width: 100%;
    background: #fff;
    border-radius: 14px;
    box-shadow:
        0 40px 80px -20px rgba(15, 61, 46, .35),
        0 0 0 1px rgba(15, 61, 46, .06);
    overflow: hidden;
    z-index: 2;
    transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow .5s ease;
}

.lp-screen-frame:hover {
    transform: translateY(calc(-50% - 6px));
    box-shadow:
        0 50px 100px -20px rgba(15, 61, 46, .4),
        0 0 0 1px rgba(99, 153, 34, .15);
}

.lp-screen-bar {
    direction: ltr;
    background: linear-gradient(180deg, #f0f2f5, #e8ebef);
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #e1e4e8;
}

.lp-screen-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform .3s ease;
}

.lp-screen-frame:hover .lp-screen-dot {
    transform: scale(1.15);
}

.lp-dot-r { background: #ff5f57; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,.08); }
.lp-dot-y { background: #ffbd2e; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,.08); }
.lp-dot-g { background: #28ca42; box-shadow: inset 0 0 0 0.5px rgba(0,0,0,.08); }

.lp-screen-url {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 11px;
    color: #5f6368;
    display: flex;
    align-items: center;
    gap: 6px;
    margin: 0 8px;
    border: 0.5px solid #e1e4e8;
}

.lp-screen-url svg {
    color: #57A11C;
    flex-shrink: 0;
}

.lp-screen-img {
    display: block;
    width: 100%;
    height: auto;
    background: #fafbfc;
}

/* ─── E-signature floating card ─── */
.lp-esign-card {
    position: absolute;
    bottom: 0;
    inset-inline-start: -20px;
    width: 36%;
    max-width: 240px;
    background: #fff;
    border-radius: 16px;
    padding: 14px 16px;
    box-shadow:
        0 25px 50px -12px rgba(15, 61, 46, .45),
        0 0 0 1px rgba(15, 61, 46, .06);
    transform: rotate(-3deg);
    z-index: 5;
    transition: transform .4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: lp-float-rotate 5s ease-in-out infinite, lp-fade-in-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
}

.lp-esign-card:hover {
    transform: rotate(0deg) scale(1.06) translateY(-4px);
    animation-play-state: paused;
}

.lp-esign-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.lp-esign-check {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, #6FBA2D, #57A11C);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px -3px rgba(87, 161, 28, .5);
    animation: lp-bounce-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.1s both;
}

.lp-esign-check svg {
    width: 16px;
    height: 16px;
}

.lp-esign-title {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    min-width: 0;
}

.lp-esign-title strong {
    font-size: 12px;
    color: var(--gray-900);
    font-weight: 700;
    white-space: nowrap;
}

.lp-esign-title span {
    font-size: 10px;
    color: #57A11C;
    font-weight: 700;
}

.lp-esign-label {
    font-size: 10px;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-esign-pad {
    background: linear-gradient(180deg, #fafbfc, #f4f7f4);
    border-radius: 8px;
    padding: 6px 8px;
    border: 0.5px dashed rgba(15, 61, 46, .15);
    margin-bottom: 10px;
    height: 40px;
}

.lp-esign-pad svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* Signature drawing animation */
.lp-esign-stroke {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    animation: lp-draw-sign 2.5s ease-in-out 1.4s forwards;
}

@keyframes lp-draw-sign {
    to { stroke-dashoffset: 0; }
}

.lp-esign-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 0.5px solid #eef2ef;
}

.lp-esign-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #57A11C;
    font-weight: 700;
}

.lp-esign-verified svg {
    width: 13px;
    height: 13px;
}

.lp-esign-date {
    font-size: 11px;
    color: var(--gray-500);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}

/* ═══ Animations ═══ */
@keyframes lp-fade-in-up {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes lp-fade-in-right {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

[dir="rtl"] .lp-hero-visual {
    animation-name: lp-fade-in-left;
}

@keyframes lp-fade-in-left {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

@keyframes lp-bounce-in {
    0%   { opacity: 0; transform: scale(0.3); }
    50%  { opacity: 1; transform: scale(1.1); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes lp-float-rotate {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50%      { transform: rotate(-3deg) translateY(-8px); }
}

/* ─── Tablet ─── */
@media (max-width: 1024px) {
    .lp-hero-text { text-align: center; }
    .lp-hero-desc { margin-inline: auto; }
    .lp-hero-actions, .lp-hero-trust { justify-content: center; }
    .lp-hero-visual {
        max-width: 700px;
        margin: 0 auto;
    }
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
    .lp-hero-visual {
        min-height: 320px;
    }

    .lp-esign-card {
        width: 40%;
        padding: 10px 12px;
        inset-inline-start: -8px;
    }

    .lp-esign-check { width: 24px; height: 24px; border-radius: 7px; }
    .lp-esign-check svg { width: 12px; height: 12px; }

    .lp-esign-title strong { font-size: 10px; }
    .lp-esign-title span { font-size: 8px; }
    .lp-esign-label { font-size: 8px; }
    .lp-esign-pad { height: 28px; }
    .lp-esign-verified { font-size: 9px; }
    .lp-esign-date { font-size: 9px; }

    .lp-hero-actions { gap: 10px; }
    .lp-btn-cta { flex: 1; min-width: 0; }
    .lp-hero-trust { gap: 18px; }
}

/* ═══ CLIENTS BAR ═══ */
.lp-clients {
    padding: 64px 0 48px;
    background: var(--white);
}

.lp-clients-title {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 40px;
}

.lp-clients-grid {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
}

.lp-client {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    transition: all .25s ease;
    opacity: .7;
}

.lp-client:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.lp-client-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
}

.lp-client-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.lp-client-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
}

.lp-client-text small {
    font-size: 11px;
    color: var(--gray-500);
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .lp-clients-grid {
        gap: 24px;
        justify-content: center;
    }
    .lp-client-icon { width: 36px; height: 36px; }
    .lp-client-text strong { font-size: 13px; }
}

/* ═══ FEATURES ═══ */
/* ═══ FEATURES SECTION (gradient soft green) ═══ */
.lp-features {
    padding: 30px 0 50px;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf7 50%, #EAF3DE 100%);
    position: relative;
}

.lp-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(87, 161, 28, .08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.lp-features .container {
    position: relative;
    z-index: 1;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

@media (max-width: 1200px) {
    .lp-features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 480px) {
    .lp-features-grid { grid-template-columns: 1fr; }
}

.lp-feat-card {
    background: var(--white);
    border: 1px solid rgba(87, 161, 28, .2);
    border-radius: 14px;
    padding: 24px 18px;
    text-align: center;
    transition: all .25s ease;
    box-shadow: 0 4px 12px -2px rgba(15, 61, 46, .06);
}

.lp-feat-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 24px -8px rgba(87, 161, 28, .25);
    transform: translateY(-4px);
}

.lp-feat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(87, 161, 28, .12);
    color: var(--accent);
    margin-bottom: 16px;
    transition: all .25s ease;
}

.lp-feat-card:hover .lp-feat-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.08);
}

.lp-feat-icon svg {
    width: 28px;
    height: 28px;
}

.lp-feat-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.lp-feat-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ═══ PROBLEMS SECTION (gradient soft green) ═══ */
.lp-problems {
    padding: 50px 0 30px;
    background: linear-gradient(180deg, #EAF3DE 0%, #f7faf7 50%, #ffffff 100%);
    position: relative;
}

.lp-problems::before {
    content: '';
    position: absolute;
    top: 30%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(87, 161, 28, .1), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.lp-problems .container {
    position: relative;
    z-index: 1;
}

.lp-problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .lp-problems-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .lp-problems-grid { grid-template-columns: 1fr; }
}

.lp-problem-card {
    background: var(--white);
    border: 1px solid rgba(87, 161, 28, .2);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: start;
    transition: all .25s ease;
    box-shadow: 0 4px 12px -2px rgba(15, 61, 46, .06);
}

.lp-problem-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 24px -8px rgba(87, 161, 28, .2);
    transform: translateY(-4px);
}

.lp-problem-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(87, 161, 28, .12);
    color: var(--accent);
    margin-bottom: 16px;
    transition: all .25s ease;
}

.lp-problem-card:hover .lp-problem-icon {
    background: var(--accent);
    color: white;
}

.lp-problem-icon svg {
    width: 24px;
    height: 24px;
}

.lp-problem-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.4;
}

.lp-problem-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* Section title accent (الكلمة الخضراء) */
.section-title .title-accent {
    color: var(--accent);
    position: relative;
}

/* Override section-header spacing in landing sections */
.lp-problems .section-header,
.lp-features .section-header,
.lp-screens .section-header,
.lp-why .section-header {
    margin-bottom: 30px;
}

/* ═══ SCREENS SHOWCASE (gradient soft green) ═══ */
.lp-screens {
    padding: 50px 0;
    background: linear-gradient(180deg, #EAF3DE 0%, #f7faf7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.lp-screens::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87, 161, 28, .1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.lp-screens::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(15, 61, 46, .06), transparent 70%);
    filter: blur(70px);
    pointer-events: none;
}

.lp-screens .container {
    position: relative;
    z-index: 1;
}

.lp-screens-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

@media (max-width: 1200px) {
    .lp-screens-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
    .lp-screens-grid { grid-template-columns: 1fr; gap: 16px; }
}

.lp-screen-card {
    background: var(--white);
    border: 1px solid rgba(87, 161, 28, .2);
    border-radius: 18px;
    overflow: hidden;
    transition: all .3s ease;
    box-shadow: 0 6px 16px -4px rgba(15, 61, 46, .08);
}

.lp-screen-card:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 40px -12px rgba(87, 161, 28, .25);
    transform: translateY(-6px);
}

.lp-screen-thumb {
    position: relative;
    background: linear-gradient(180deg, #f4f7f4 0%, #EAF3DE 100%);
    padding: 16px 16px 0;
    overflow: hidden;
}

.lp-screen-thumb::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 60%;
    background: radial-gradient(circle, rgba(87, 161, 28, .12), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.lp-screen-thumb img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 12px 28px -8px rgba(15, 61, 46, .25);
    transition: transform .4s ease;
}

.lp-screen-card:hover .lp-screen-thumb img {
    transform: translateY(-4px) scale(1.02);
}

.lp-screen-info {
    padding: 18px 20px 22px;
}

.lp-screen-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(87, 161, 28, .12);
    color: var(--accent);
    margin-bottom: 12px;
    transition: all .25s ease;
}

.lp-screen-card:hover .lp-screen-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.08);
}

.lp-screen-icon svg {
    width: 20px;
    height: 20px;
}

.lp-screen-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 6px;
}

.lp-screen-desc {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.65;
    margin: 0;
}

/* ═══ WHY CONTRACT+ (gradient soft green with shield + 6 cards) ═══ */
.lp-why {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7faf7 50%, #EAF3DE 100%);
    position: relative;
    overflow: hidden;
}

.lp-why::before {
    content: '';
    position: absolute;
    top: 30%;
    left: 20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(87, 161, 28, .1), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.lp-why .container {
    position: relative;
    z-index: 1;
}

.lp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 1024px) {
    .lp-why-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ─── Visual: Shield with brand + orbit icons ─── */
.lp-why-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
}

.lp-why-orbit {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric pulse rings */
.lp-why-orbit::before,
.lp-why-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1.5px dashed rgba(87, 161, 28, .25);
    pointer-events: none;
}

.lp-why-orbit::before {
    width: 75%;
    height: 75%;
    animation: lp-rotate 30s linear infinite;
}

.lp-why-orbit::after {
    width: 100%;
    height: 100%;
    animation: lp-rotate 40s linear infinite reverse;
}

@keyframes lp-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* The shield */
.lp-why-shield {
    position: relative;
    width: 240px;
    z-index: 5;
    filter: drop-shadow(0 25px 40px rgba(87, 161, 28, .35));
    animation: lp-shield-float 4s ease-in-out infinite;
}

@keyframes lp-shield-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.lp-why-shield svg {
    width: 100%;
    height: auto;
    display: block;
}

.lp-shield-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 75%;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-shield-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

/* Floating orbit icons */
.lp-orbit-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    box-shadow: 0 12px 24px -6px rgba(15, 61, 46, .2);
    border: 1px solid rgba(87, 161, 28, .15);
    z-index: 4;
    animation: lp-orbit-bounce 3s ease-in-out infinite;
}

.lp-orbit-icon svg {
    width: 24px;
    height: 24px;
}

@keyframes lp-orbit-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Position each icon */
.lp-orbit-1 { top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.lp-orbit-2 { top: 22%; right: 5%; animation-delay: 0.4s; }
.lp-orbit-3 { bottom: 22%; right: 5%; animation-delay: 0.8s; }
.lp-orbit-4 { bottom: 22%; left: 5%; animation-delay: 1.2s; }
.lp-orbit-5 { top: 22%; left: 5%; animation-delay: 1.6s; }

/* ─── Cards Grid (6 reasons) ─── */
.lp-why-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 600px) {
    .lp-why-cards {
        grid-template-columns: 1fr;
    }
}

.lp-why-card {
    background: white;
    border: 1px solid rgba(87, 161, 28, .2);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all .25s ease;
    box-shadow: 0 4px 12px -2px rgba(15, 61, 46, .06);
}

.lp-why-card:hover {
    border-color: var(--accent);
    box-shadow: 0 12px 24px -8px rgba(87, 161, 28, .25);
    transform: translateY(-3px);
}

.lp-why-check {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6FBA2D, #57A11C);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px -3px rgba(87, 161, 28, .4);
}

.lp-why-check svg {
    width: 16px;
    height: 16px;
}

.lp-why-card-text {
    flex: 1;
    min-width: 0;
}

.lp-why-card-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.4;
}

.lp-why-card-text span {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   PRICING SECTION (3 plans + Lifetime banner)
   ════════════════════════════════════════════════════════════ */

.pr-section {
    padding: 96px 0;
    background: linear-gradient(180deg, #f7faf7 0%, #ffffff 100%);
}

.pr-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.pr-title {
    font-size: clamp(28px, 3.6vw, 42px);
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.25;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.pr-subtitle {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ═══ Pricing Grid ═══ */
.pr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1140px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pr-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
    }
    .pr-card-featured { grid-column: 1 / -1; max-width: 380px; margin: 0 auto; }
}

@media (max-width: 640px) {
    .pr-grid { grid-template-columns: 1fr; max-width: 420px; }
    .pr-card-featured { grid-column: auto; max-width: none; margin: 0; }
}

/* ═══ Card Base ═══ */
.pr-card {
    position: relative;
    background: #fff;
    border: 2px solid #e5ebe7;
    border-radius: 20px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    box-shadow: 0 1px 3px rgba(15, 61, 46, .04);
}

.pr-card:hover {
    transform: translateY(-6px);
    border-color: #57A11C;
    box-shadow: 0 20px 40px -12px rgba(15, 61, 46, .15);
}

/* Card head: icon + title + tag */
.pr-card-head {
    margin-bottom: 24px;
    text-align: center;
}

.pr-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: transform .3s ease;
}

.pr-card:hover .pr-card-icon {
    transform: scale(1.08) rotate(-4deg);
}

.pr-card-icon svg {
    width: 28px;
    height: 28px;
}

.pr-icon-basic {
    background: linear-gradient(135deg, #e8f3e0, #d4e9c5);
    color: #57A11C;
}

.pr-icon-pro {
    background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    color: #fff;
}

.pr-icon-ent {
    background: linear-gradient(135deg, #e8efeb, #d6e2dc);
    color: #0F3D2E;
}

.pr-card-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
    line-height: 1.2;
}

.pr-card-tag {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin: 0;
    min-height: 36px;
}

/* ═══ Price ═══ */
.pr-card-price {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 24px;
    border-top: 1px solid #eef2ef;
    border-bottom: 1px solid #eef2ef;
}

.pr-price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #0F3D2E;
    line-height: 1;
    letter-spacing: -0.025em;
    display: inline-block;
    vertical-align: baseline;
}

.pr-price-period {
    display: block;
    font-size: 14px;
    color: var(--gray-500);
    font-weight: 600;
    margin-top: 8px;
}

/* ═══ Features list ═══ */
.pr-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pr-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--gray-700);
}

.pr-feat-mark {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.pr-feat-mark svg {
    width: 13px;
    height: 13px;
}

.pr-feat-yes .pr-feat-mark {
    background: #e3f3d6;
    color: #468316;
}

.pr-feat-no {
    color: var(--gray-500);
}

.pr-feat-no .pr-feat-mark {
    background: #fee2e2;
    color: #dc2626;
}

.pr-feat-highlight {
    color: #0F3D2E;
    font-weight: 700;
}

.pr-feat-highlight .pr-feat-mark {
    background: #57A11C;
    color: #fff;
}

/* ═══ Buttons ═══ */
.pr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
    border: 2px solid transparent;
    font-family: inherit;
}

.pr-btn-primary {
    background: linear-gradient(135deg, #6FBA2D, #57A11C);
    color: #fff;
    box-shadow: 0 8px 16px -4px rgba(87, 161, 28, .4);
}

.pr-btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 24px -6px rgba(87, 161, 28, .5);
    background: linear-gradient(135deg, #7ec535, #62b520);
}

.pr-btn-outline {
    background: transparent;
    color: #0F3D2E;
    border-color: #0F3D2E;
}

.pr-btn-outline:hover {
    background: #0F3D2E;
    color: #fff;
    transform: translateY(-2px);
}

/* ═══ Featured (Pro) Card ═══ */
.pr-card-featured {
    background: linear-gradient(165deg, #145440 0%, #0F3D2E 50%, #0a2c20 100%);
    border-color: transparent;
    color: #fff;
    transform: scale(1.04);
    box-shadow:
        0 25px 50px -12px rgba(15, 61, 46, .35),
        0 0 0 1px rgba(255, 255, 255, .05) inset;
    /* overflow visible so badge shows on top */
}

.pr-card-featured::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at top right, rgba(111, 186, 45, .25), transparent 60%);
    pointer-events: none;
    border-radius: inherit;
    z-index: 0;
}

.pr-card-featured > * {
    position: relative;
    z-index: 1;
}

.pr-card-featured .pr-card-head {
    padding-top: 8px;
}

.pr-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
    border-color: transparent;
    box-shadow:
        0 30px 60px -12px rgba(15, 61, 46, .45),
        0 0 0 1px rgba(255, 255, 255, .08) inset;
}

.pr-card-featured .pr-card-name { color: #fff; }
.pr-card-featured .pr-card-tag { color: rgba(255, 255, 255, .7); }

.pr-card-featured .pr-card-price {
    border-top-color: rgba(255, 255, 255, .1);
    border-bottom-color: rgba(255, 255, 255, .1);
}

.pr-card-featured .pr-price-amount { color: #fff; }
.pr-card-featured .pr-price-period { color: rgba(255, 255, 255, .65); }

.pr-card-featured .pr-features li { color: rgba(255, 255, 255, .9); }
.pr-card-featured .pr-feat-yes .pr-feat-mark {
    background: rgba(111, 186, 45, .25);
    color: #9be65a;
}
.pr-card-featured .pr-feat-highlight {
    color: #fff;
    font-weight: 700;
}
.pr-card-featured .pr-feat-highlight .pr-feat-mark {
    background: #6FBA2D;
    color: #fff;
}

/* ═══ Badge ═══ */
.pr-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #f5b800, #e0a200);
    color: #4a3500;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(245, 184, 0, .35), 0 2px 4px rgba(0, 0, 0, .1);
    white-space: nowrap;
    z-index: 2;
    letter-spacing: 0.01em;
}

.pr-badge svg {
    width: 14px;
    height: 14px;
}

/* ════════════════════════════════════════════════════════════
   LIFETIME BANNER (separate, full width)
   ════════════════════════════════════════════════════════════ */

.pr-lifetime {
    margin-top: 64px;
    position: relative;
    background:
        linear-gradient(135deg, #0F3D2E 0%, #0a2c20 50%, #051a13 100%);
    border-radius: 28px;
    padding: 56px 48px;
    overflow: hidden;
    color: #fff;
    box-shadow: 0 30px 60px -15px rgba(15, 61, 46, .4);
    border: 1px solid rgba(245, 184, 0, .15);
}

.pr-life-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(60px);
}

.pr-life-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 184, 0, .18), transparent 70%);
    top: -150px;
    right: -100px;
}

.pr-life-shape-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(111, 186, 45, .15), transparent 70%);
    bottom: -150px;
    left: -100px;
}

.pr-life-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 900px) {
    .pr-lifetime { padding: 40px 28px; border-radius: 22px; }
    .pr-life-grid { grid-template-columns: 1fr; gap: 32px; }
}

.pr-life-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(245, 184, 0, .2), rgba(245, 184, 0, .08));
    color: #f5b800;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 184, 0, .3);
}

.pr-life-eyebrow svg {
    width: 14px;
    height: 14px;
}

.pr-life-title {
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pr-life-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.6;
    margin-bottom: 28px;
}

.pr-life-price-block {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(245, 184, 0, .2);
    border-radius: 16px;
    padding: 20px 24px;
    backdrop-filter: blur(8px);
}

.pr-life-price-main {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.pr-life-amount {
    font-size: 56px;
    font-weight: 800;
    color: #f5b800;
    line-height: 1;
    letter-spacing: -0.025em;
}

.pr-life-currency {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, .9);
}

.pr-life-once {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
    margin-inline-start: auto;
}

.pr-life-extra {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, .12);
}

.pr-life-extra svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #f5b800;
}

/* Right side */
.pr-life-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 480px) {
    .pr-life-features { grid-template-columns: 1fr; }
}

.pr-life-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.pr-life-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5b800, #e0a200);
    color: #4a3500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pr-life-check svg {
    width: 14px;
    height: 14px;
}

.pr-life-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 28px;
    background: linear-gradient(135deg, #f5b800, #e0a200);
    color: #1a1300;
    font-size: 16px;
    font-weight: 800;
    border-radius: 14px;
    text-decoration: none;
    transition: all .25s ease;
    box-shadow: 0 12px 28px -8px rgba(245, 184, 0, .55);
    border: none;
}

.pr-life-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 18px 36px -10px rgba(245, 184, 0, .65);
    background: linear-gradient(135deg, #ffc619, #efb008);
}

.pr-life-btn svg {
    width: 18px;
    height: 18px;
}

[dir="rtl"] .pr-life-btn svg {
    transform: scaleX(-1);
}

/* ═══ Bottom note ═══ */
.pr-bottom-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--gray-500);
    text-align: center;
}

.pr-bottom-note svg {
    width: 16px;
    height: 16px;
    color: #57A11C;
    flex-shrink: 0;
}

/* ═══ DEMO + FAQ ═══ */
.lp-demo-faq {
    padding: 80px 0;
    background: var(--white);
}

.lp-demo-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .lp-demo-faq-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.lp-demo-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.lp-demo-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
}

.lp-demo-video {
    margin-bottom: 16px;
}

.lp-demo-laptop {
    max-width: 460px;
}

.lp-demo-screen {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ea 100%);
    border-radius: 10px 10px 2px 2px;
    border: 8px solid #1a1a1a;
    border-bottom-width: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.lp-demo-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(87, 161, 28, .15), transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(3, 70, 56, .1), transparent 40%);
}

.lp-demo-base {
    height: 8px;
    background: linear-gradient(180deg, #c0c4c9 0%, #8c9197 100%);
    border-radius: 0 0 12px 12px;
    margin: 0 -6%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
}

.lp-demo-play {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(87, 161, 28, .4);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
    z-index: 1;
}

.lp-demo-play:hover {
    transform: scale(1.1);
    background: var(--accent-light);
}

.lp-demo-play svg {
    width: 28px;
    height: 28px;
    margin-inline-start: 3px;
}

.lp-demo-cta {
    margin-top: 24px;
}

/* FAQ */
.lp-faq-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.lp-faq-item {
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.lp-faq-item:first-of-type {
    border-top: 1px solid var(--gray-200);
}

.lp-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    padding: 4px 0;
    user-select: none;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .2s ease;
}

[dir="rtl"] .lp-faq-item summary svg {
    transform: scaleX(-1);
}

.lp-faq-item[open] summary svg {
    transform: rotate(90deg);
}

[dir="rtl"] .lp-faq-item[open] summary svg {
    transform: rotate(90deg) scaleX(-1);
}

.lp-faq-item p {
    margin: 12px 0 0;
    padding-inline-start: 30px;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}