/* Nofal SEO — Guarantee conversion popup */

body.nofal-gp-open {
    overflow: hidden;
}

.nofal-gp {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
}

.nofal-gp[hidden] {
    display: none !important;
}

.nofal-gp.is-open {
    animation: nofal-gp-fade-in 0.35s ease forwards;
}

.nofal-gp__overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 14, 28, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.nofal-gp__dialog {
    position: relative;
    width: min(640px, 100%);
    max-height: min(92vh, 720px);
    overflow: auto;
    border-radius: 20px;
    background: linear-gradient(165deg, #ffffff 0%, #f4f8fc 55%, #eef4fa 100%);
    box-shadow:
        0 32px 64px rgba(14, 14, 28, 0.28),
        0 0 0 1px rgba(37, 170, 225, 0.12);
    animation: nofal-gp-slide-up 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    transform-origin: center bottom;
}

.nofal-gp.is-closing .nofal-gp__dialog {
    animation: nofal-gp-slide-down 0.28s ease forwards;
}

.nofal-gp.is-closing {
    animation: nofal-gp-fade-out 0.28s ease forwards;
}

.nofal-gp__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 10px;
    background: rgba(28, 28, 53, 0.72);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

html[dir="rtl"] .nofal-gp__close {
    right: auto;
    left: 12px;
}

.nofal-gp__close svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.nofal-gp__close svg path {
    stroke: #fff;
}

.nofal-gp__close:hover {
    background: rgba(28, 28, 53, 0.88);
    color: #fff;
    transform: scale(1.05);
}

.nofal-gp__inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 0;
    min-height: 380px;
}

.nofal-gp__seal-col {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 16px;
    background:
        radial-gradient(ellipse 90% 80% at 50% 20%, rgba(37, 170, 225, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, #1c1c35 0%, #232340 100%);
    border-radius: 20px 0 0 20px;
}

html[dir="rtl"] .nofal-gp__seal-col {
    border-radius: 0 20px 20px 0;
}

.nofal-gp__seal-stage {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nofal-gp__seal-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(113, 180, 232, 0.35);
    animation: nofal-gp-orbit 12s linear infinite;
}

.nofal-gp__seal-orbit--2 {
    inset: -8px;
    border-style: solid;
    border-color: rgba(37, 170, 225, 0.15);
    animation-direction: reverse;
    animation-duration: 18s;
}

.nofal-gp__seal {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    animation: nofal-gp-stamp 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

.nofal-gp__seal-body {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 30%, #3dd4f0 0%, #25aae1 35%, #1a94c8 70%, #1578a8 100%);
    box-shadow:
        0 8px 24px rgba(37, 170, 225, 0.45),
        inset 0 2px 4px rgba(255, 255, 255, 0.35),
        inset 0 -4px 8px rgba(0, 0, 0, 0.15);
    border: 3px solid rgba(255, 255, 255, 0.25);
    overflow: hidden;
    animation: nofal-gp-seal-pulse 3s ease-in-out infinite;
}

.nofal-gp__seal-shine {
    position: absolute;
    inset: -50%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.45) 50%,
        transparent 60%
    );
    animation: nofal-gp-shine 3.5s ease-in-out infinite;
    pointer-events: none;
}

.nofal-gp__seal-ribbon {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 2px 10px;
    border-radius: 4px;
    background: rgba(28, 28, 53, 0.85);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.nofal-gp__seal-main {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 6px;
}

.nofal-gp__seal-sub {
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-top: 2px;
}

.nofal-gp__seal-star {
    width: 14px;
    height: 14px;
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.9);
    animation: nofal-gp-star-spin 4s linear infinite;
}

.nofal-gp__content {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
}

.nofal-gp__badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(37, 170, 225, 0.1);
    color: #1a94c8;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.nofal-gp__title {
    margin: 0 0 10px;
    color: #1c1c35;
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.nofal-gp__subtitle {
    margin: 0 0 16px;
    color: #5f6b7d;
    font-size: 0.84rem;
    line-height: 1.75;
}

.nofal-gp__points {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.nofal-gp__points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
    color: #3d4a5c;
    font-size: 0.8rem;
    line-height: 1.55;
}

.nofal-gp__check {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    border-radius: 6px;
    background: rgba(37, 170, 225, 0.12);
    color: #25aae1;
}

.nofal-gp__check svg {
    width: 12px;
    height: 12px;
}

.nofal-gp__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.nofal-gp__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-sizing: border-box;
}

.nofal-gp__btn--wa {
    background: linear-gradient(135deg, #25d366 0%, #1ebe57 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.nofal-gp__btn--wa::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    animation: nofal-gp-btn-shine 3s ease-in-out infinite;
}

.nofal-gp__btn--wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
    color: #fff !important;
}

.nofal-gp__btn-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.nofal-gp__btn-icon svg {
    width: 22px;
    height: 22px;
}

.nofal-gp__btn-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nofal-gp__btn-text strong {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.nofal-gp__btn-text small {
    font-size: 0.72rem;
    opacity: 0.88;
    font-weight: 500;
}

.nofal-gp__btn-arrow {
    flex-shrink: 0;
    opacity: 0.9;
}

.nofal-gp__btn-arrow svg {
    width: 20px;
    height: 20px;
}

html[dir="rtl"] .nofal-gp__btn-arrow svg {
    transform: scaleX(-1);
}

.nofal-gp__btn--ghost {
    justify-content: center;
    padding: 11px 16px;
    border: 1px solid rgba(28, 28, 53, 0.14);
    background: #fff;
    color: #1c1c35 !important;
    font-size: 0.84rem;
    font-weight: 700;
}

.nofal-gp__btn--ghost:hover {
    border-color: rgba(37, 170, 225, 0.35);
    color: #1a94c8 !important;
    transform: translateY(-1px);
}

.nofal-gp__trust {
    margin: 0;
    padding-top: 10px;
    border-top: 1px solid rgba(28, 28, 53, 0.08);
    color: #8a96a8;
    font-size: 0.72rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
}

/* Floating trigger */
.nofal-gp__fab {
    position: fixed;
    bottom: 24px;
    z-index: 99990;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px 10px 12px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c1c35 0%, #2a2a4a 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(28, 28, 53, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

html[dir="rtl"] .nofal-gp__fab {
    left: 20px;
    right: auto;
    padding: 10px 12px 10px 16px;
}

html[dir="ltr"] .nofal-gp__fab {
    right: 20px;
    left: auto;
}

.nofal-gp__fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37, 170, 225, 0.35);
}

.nofal-gp__fab[hidden] {
    display: none !important;
}

.nofal-gp__fab-pulse {
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #25aae1, #71b4e8);
    opacity: 0;
    animation: nofal-gp-fab-pulse 2.5s ease-out infinite;
    pointer-events: none;
}

.nofal-gp__fab-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25aae1, #1a94c8);
    color: #fff;
}

.nofal-gp__fab-icon svg {
    width: 16px;
    height: 16px;
}

.nofal-gp__fab-text {
    position: relative;
    white-space: nowrap;
}

/* Animations */
@keyframes nofal-gp-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes nofal-gp-fade-out {
    from { opacity: 1; }
    to { opacity: 0; }
}

@keyframes nofal-gp-slide-up {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes nofal-gp-slide-down {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(16px) scale(0.96);
    }
}

@keyframes nofal-gp-stamp {
    0% {
        opacity: 0;
        transform: scale(1.8) rotate(-12deg);
    }
    60% {
        transform: scale(0.92) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes nofal-gp-seal-pulse {
    0%, 100% {
        box-shadow:
            0 8px 24px rgba(37, 170, 225, 0.45),
            inset 0 2px 4px rgba(255, 255, 255, 0.35),
            inset 0 -4px 8px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow:
            0 12px 32px rgba(37, 170, 225, 0.55),
            inset 0 2px 4px rgba(255, 255, 255, 0.4),
            inset 0 -4px 8px rgba(0, 0, 0, 0.12);
    }
}

@keyframes nofal-gp-shine {
    0%, 75% { transform: translateX(-80%) rotate(25deg); }
    100% { transform: translateX(80%) rotate(25deg); }
}

@keyframes nofal-gp-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes nofal-gp-star-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes nofal-gp-btn-shine {
    0%, 70% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes nofal-gp-fab-pulse {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.35);
    }
}

@media (max-width: 640px) {
    .nofal-gp__inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .nofal-gp__seal-col {
        padding: 24px 16px 16px;
        border-radius: 20px 20px 0 0;
    }

    html[dir="rtl"] .nofal-gp__seal-col {
        border-radius: 20px 20px 0 0;
    }

    .nofal-gp__seal-stage {
        width: 120px;
        height: 120px;
    }

    .nofal-gp__seal {
        width: 100px;
        height: 100px;
    }

    .nofal-gp__seal-main {
        font-size: 1.15rem;
    }

    .nofal-gp__content {
        padding: 20px 18px 18px;
    }

    .nofal-gp__fab-text {
        display: none;
    }

    .nofal-gp__fab {
        padding: 12px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    html[dir="rtl"] .nofal-gp__fab,
    html[dir="ltr"] .nofal-gp__fab {
        bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nofal-gp__seal-orbit,
    .nofal-gp__seal-body,
    .nofal-gp__seal-shine,
    .nofal-gp__seal-star,
    .nofal-gp__fab-pulse,
    .nofal-gp__btn--wa::after {
        animation: none !important;
    }

    .nofal-gp__seal {
        animation: none !important;
        opacity: 1;
        transform: none;
    }
}
