/* chat.css — WhatsApp AI landing (extends assets/css/style.css; scoped .chatpg-* only) */

.chatpg-body .main-nav .navbar-toggler {
    border-color: rgba(240, 242, 245, 0.35);
}

.chatpg-body .main-nav .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.chatpg-body {
    min-height: 100vh;
    background: #050508;
    color: var(--text);
}

.chatpg-main {
    padding-top: 5.5rem;
    overflow-x: hidden;
    background: #050508;
}

@media (min-width: 992px) {
    .chatpg-main {
        padding-top: 6rem;
    }
}

/* Hero */
.chatpg-hero {
    position: relative;
    padding: 2rem 0 3.5rem;
}

@media (min-width: 768px) {
    .chatpg-hero {
        padding: 2.5rem 0 4rem;
    }
}

@media (min-width: 1200px) {
    .chatpg-hero {
        padding: 3rem 0 5rem;
    }
}

.chatpg-hero-glow {
    position: absolute;
    inset: -20% -30% auto -30%;
    height: 70%;
    background: radial-gradient(
        ellipse 80% 60% at 50% 0%,
        rgba(255, 255, 255, 0.04),
        transparent 55%
    ),
    radial-gradient(
        ellipse 50% 40% at 80% 30%,
        rgba(210, 7, 101, 0.06),
        transparent 50%
    );
    pointer-events: none;
    z-index: 0;
}

.chatpg-hero .container {
    position: relative;
    z-index: 1;
}

.chatpg-hero-row {
    min-height: 0;
}

.chatpg-hero-label {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.chatpg-hero-title {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: clamp(2.35rem, 6vw, 3.75rem);
    line-height: 1.05;
    letter-spacing: 0.04em;
    color: var(--white);
    margin-bottom: 1rem;
    max-width: 22ch;
}

.chatpg-hero-accent {
    font-family: inherit;
    letter-spacing: inherit;
}

.chatpg-hero-accent--a {
    color: var(--white);
    text-shadow: 0 0 32px rgba(255, 255, 255, 0.12);
}

.chatpg-hero-accent--b {
    color: var(--accent);
    text-shadow: 0 0 36px rgba(210, 7, 101, 0.3);
}

.chatpg-hero-sub {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(0.95rem, 2.2vw, 1.05rem);
    font-weight: 400;
    color: var(--text);
    max-width: 36rem;
    margin-bottom: 1.75rem;
    line-height: 1.65;
}

.chatpg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1rem;
}

.chatpg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.chatpg-btn--primary {
    background: linear-gradient(135deg, var(--accent) 0%, #a8054f 100%);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 14px 40px rgba(210, 7, 101, 0.35);
}

.chatpg-btn--primary:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(210, 7, 101, 0.45);
}

.chatpg-btn--ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border-color: rgba(144, 150, 165, 0.45);
}

.chatpg-btn--ghost:hover {
    color: var(--white);
    border-color: rgba(240, 242, 245, 0.35);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.chatpg-btn__icon {
    display: flex;
    flex-shrink: 0;
}

.chatpg-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0 1rem;
}

@media (min-width: 992px) {
    .chatpg-hero-visual {
        padding: 0;
        justify-content: flex-end;
    }
}

.chatpg-hero-phone-ring {
    position: absolute;
    width: min(88%, 340px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    filter: blur(2px);
    z-index: 0;
}

.chatpg-hero-phone-link {
    position: relative;
    z-index: 1;
    display: inline-block;
    max-width: min(100%, 340px);
    line-height: 0;
    text-decoration: none;
    border-radius: 12px;
    transition: transform 0.25s ease, opacity 0.2s ease;
    outline: none;
}

.chatpg-hero-phone-link:hover {
    transform: scale(1.02);
}

.chatpg-hero-phone-link:focus-visible {
    box-shadow: 0 0 0 3px rgba(210, 7, 101, 0.45);
}

.chatpg-hero-phone {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55));
    animation: chatpg-phone-float 2.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .chatpg-hero-phone {
        animation: none;
    }
}

@keyframes chatpg-phone-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* HR automation hero robot */
.hrpg-hero-visual {
    align-items: flex-end;
}

.hrpg-hero-robot-shell {
    position: relative;
    max-width: min(100%, 360px);
}

.hrpg-hero-robot-link {
    display: inline-block;
    line-height: 0;
}

.hrpg-hero-robot {
    display: block;
    max-width: 100%;
    height: auto;
    transform-origin: 50% 100%;
    transition: transform 0.28s ease-out, filter 0.28s ease-out;
}

.hrpg-hero-robot-link:hover .hrpg-hero-robot,
.hrpg-hero-robot-link:focus-visible .hrpg-hero-robot {
    transform: scale(1.06);
    filter: drop-shadow(0 26px 52px rgba(0, 118, 255, 0.55));
}

.hrpg-hero-robot-eyes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hrpg-hero-robot-eyes::before,
.hrpg-hero-robot-eyes::after {
    content: "";
    position: absolute;
    width: 18%;
    height: 10%;
    border-radius: 999px;
    background: #050508;
    top: 32%;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.7);
    animation: hrpgRobotBlink 4.5s ease-in-out infinite;
}

.hrpg-hero-robot-eyes::before {
    left: 28%;
}

.hrpg-hero-robot-eyes::after {
    right: 28%;
    animation-delay: 0.18s;
}

@keyframes hrpgRobotWalk {
    0% {
        transform: translate3d(-8px, 4px, 0) scale(0.97);
    }
    25% {
        transform: translate3d(-2px, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(8px, -4px, 0) scale(1.02);
    }
    75% {
        transform: translate3d(2px, 0, 0) scale(1);
    }
    100% {
        transform: translate3d(-8px, 4px, 0) scale(0.97);
    }
}

@keyframes hrpgRobotBlink {
    0%,
    88%,
    100% {
        transform: scaleY(0);
        opacity: 0;
    }
    90% {
        transform: scaleY(1);
        opacity: 1;
    }
    92% {
        transform: scaleY(0.1);
        opacity: 1;
    }
    94% {
        transform: scaleY(1);
        opacity: 1;
    }
    96% {
        transform: scaleY(0);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hrpg-hero-robot {
        animation: none;
    }
    .hrpg-hero-robot-eyes::before,
    .hrpg-hero-robot-eyes::after {
        animation: none;
        opacity: 0;
    }
}

@media (max-width: 575.98px) {
    .hrpg-hero-robot-shell {
        max-width: min(100%, 300px);
        margin-inline: auto;
    }
}

/* Sections */
.chatpg-section {
    position: relative;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .chatpg-section {
        padding: 3.5rem 0;
    }
}

@media (min-width: 1200px) {
    .chatpg-section {
        padding: 4.5rem 0;
    }
}

.chatpg-section-divider {
    height: 1px;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.12) 35%,
        rgba(255, 255, 255, 0.06) 65%,
        transparent
    );
    opacity: 0.95;
}

@media (min-width: 768px) {
    .chatpg-section-divider {
        margin-bottom: 3rem;
    }
}

.chatpg-section-head {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .chatpg-section-head {
        margin-bottom: 2.5rem;
    }
}

.chatpg-eyebrow {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(240, 242, 245, 0.55);
    margin-bottom: 0.5rem;
}

.chatpg-section-title {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    letter-spacing: 0.06em;
    color: var(--white);
    margin: 0;
    line-height: 1.1;
}

/* Process */
.chatpg-process {
    padding-top: 0;
}

.chatpg-process-row {
    align-items: stretch;
}

.chatpg-process-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(10, 10, 14, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.35rem 1.25rem 1.5rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
    .chatpg-process-card {
        padding: 1.5rem 1.35rem 1.65rem;
    }
}

.chatpg-process-card:hover {
    border-color: var(--accent);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.45),
        0 0 28px rgba(210, 7, 101, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.chatpg-step-num {
    display: inline-block;
    font-family: "DM Mono", ui-monospace, monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.65rem;
}

.chatpg-process-title {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.chatpg-process-screen {
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
    margin-top: 0.15rem;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(165deg, rgba(12, 12, 16, 0.95) 0%, rgba(5, 5, 8, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: inset 0 0 0 1px rgba(210, 7, 101, 0.06);
}

.chatpg-process-img {
    display: block;
    width: 100%;
    height: auto;
    max-height: clamp(200px, 42vw, 320px);
    object-fit: contain;
    object-position: center center;
}

.chatpg-process-card:hover .chatpg-process-img {
    animation: chatpg-process-shake 2s ease-in-out 1;
}

@media (prefers-reduced-motion: reduce) {
    .chatpg-process-card:hover .chatpg-process-img {
        animation: none;
    }
}

@keyframes chatpg-process-shake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    10% { transform: translateX(-2px) rotate(-0.6deg); }
    20% { transform: translateX(2px) rotate(0.6deg); }
    30% { transform: translateX(-1.5px) rotate(-0.45deg); }
    40% { transform: translateX(1.5px) rotate(0.45deg); }
    50% { transform: translateX(-1px) rotate(-0.3deg); }
    60% { transform: translateX(1px) rotate(0.3deg); }
    70% { transform: translateX(-0.8px) rotate(-0.2deg); }
    80% { transform: translateX(0.8px) rotate(0.2deg); }
    90% { transform: translateX(-0.4px) rotate(-0.1deg); }
}

@media (min-width: 768px) {
    .chatpg-process-img {
        max-height: clamp(240px, 32vw, 300px);
    }
}

@media (min-width: 1200px) {
    .chatpg-process-img {
        max-height: 300px;
    }
}

.chatpg-process-desc {
    font-size: 0.92rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

.chatpg-bubble {
    border-radius: 14px;
    padding: 0.75rem 1rem;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.9rem;
    line-height: 1.45;
    margin: 0;
}

.chatpg-bubble p {
    margin: 0;
}

.chatpg-bubble--in {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
}

.chatpg-bubble--out {
    background: rgba(210, 7, 101, 0.1);
    border: 1px solid rgba(210, 7, 101, 0.3);
    color: var(--text);
}

.chatpg-toast {
    margin-top: 0.75rem;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(240, 242, 245, 0.75);
    padding: 0.4rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features */
.chatpg-features {
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.35) 45%,
        transparent 100%
    );
}

.chatpg-features-grid {
    --bs-gutter-x: 1.25rem;
    --bs-gutter-y: 1.25rem;
    overflow: visible;
}

.chatpg-features-grid > .col {
    overflow: visible;
}

.chatpg-feature-card {
    position: relative;
    z-index: 1;
    height: 100%;
    background: rgba(8, 8, 12, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.35rem 1.25rem 1.45rem;
    transition:
        background 0.35s ease,
        border-color 0.3s ease,
        transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.32s ease;
}

.chatpg-feature-card:hover {
    z-index: 3;
    background: linear-gradient(90deg, rgba(88, 10, 52, 0.97) 0%, rgb(68 1 42 / 95%) 28%, rgb(50 3 66 / 95%) 58%, rgb(24 0 57 / 97%) 100%);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-8px) scale(1.01);
    box-shadow:
        0 20px 44px rgba(210, 7, 101, 0.35),
        0 12px 28px rgba(156, 39, 176, 0.25),
        0 6px 18px rgba(0, 118, 255, 0.12),
        0 4px 14px rgba(0, 0, 0, 0.5);
}

.chatpg-feature-card:hover .chatpg-feature-title {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.chatpg-feature-card:hover .chatpg-feature-text {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.chatpg-feature-card:hover .chatpg-feature-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.32);
    color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .chatpg-feature-card {
        padding: 1.5rem 1.35rem 1.55rem;
    }
}

@media (max-width: 991.98px) {
    .chatpg-feature-card:hover {
        transform: translateY(-7px) scale(1.008);
        box-shadow:
            0 16px 36px rgba(210, 7, 101, 0.3),
            0 10px 24px rgba(156, 39, 176, 0.2),
            0 4px 12px rgba(0, 0, 0, 0.45);
    }
}

@media (max-width: 575.98px) {
    .chatpg-feature-card:hover {
        transform: translateY(-5px) scale(1.005);
        box-shadow:
            0 12px 28px rgba(210, 7, 101, 0.28),
            0 6px 18px rgba(156, 39, 176, 0.18),
            0 3px 10px rgba(0, 0, 0, 0.42);
    }
}

@media (hover: none) {
    .chatpg-feature-card:hover {
        background: rgba(8, 8, 12, 0.92);
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.08);
        z-index: 1;
    }

    .chatpg-feature-card:hover .chatpg-feature-title {
        color: var(--white);
        text-shadow: none;
    }

    .chatpg-feature-card:hover .chatpg-feature-text {
        color: var(--muted);
        text-shadow: none;
    }

    .chatpg-feature-card:hover .chatpg-feature-icon {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(210, 7, 101, 0.12));
        border-color: rgba(255, 255, 255, 0.1);
        color: var(--accent);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .chatpg-feature-card:active {
        background: linear-gradient(
            90deg,
            rgba(88, 10, 52, 0.97) 0%,
            rgba(120, 26, 92, 0.95) 40%,
            rgba(48, 18, 82, 0.97) 100%
        );
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-4px) scale(1.005);
        box-shadow:
            0 12px 28px rgba(210, 7, 101, 0.28),
            0 4px 14px rgba(0, 0, 0, 0.4);
    }

    .chatpg-feature-card:active .chatpg-feature-title {
        color: var(--white);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }

    .chatpg-feature-card:active .chatpg-feature-text {
        color: rgba(255, 255, 255, 0.88);
    }

    .chatpg-feature-card:active .chatpg-feature-icon {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
        border-color: rgba(255, 255, 255, 0.28);
        color: #fff;
    }
}

.chatpg-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 1rem;
    color: var(--accent);
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.06),
        rgba(210, 7, 101, 0.12)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transform-origin: center center;
}

.chatpg-feature-card:hover .chatpg-feature-icon {
    animation: chatpg-process-shake 2s ease-in-out 1;
}

@media (prefers-reduced-motion: reduce) {
    .chatpg-feature-card:hover .chatpg-feature-icon {
        animation: none;
    }
}

.chatpg-feature-robot-slot {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: clamp(0.5rem, 2vw, 1.25rem) 0;
}

.chatpg-feature-robot {
    display: block;
    width: auto;
    max-width: min(100%, 220px);
    height: auto;
    max-height: clamp(160px, 36vw, 260px);
    object-fit: contain;
    object-position: center center;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.45));
    animation: chatpg-phone-float 2.2s ease-in-out infinite;
}

@media (min-width: 576px) {
    .chatpg-feature-robot {
        max-width: min(100%, 260px);
        max-height: clamp(180px, 32vw, 280px);
    }
}

@media (min-width: 1200px) {
    .chatpg-feature-robot {
        max-width: min(100%, 280px);
        max-height: 280px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .chatpg-feature-robot {
        animation: none;
    }
}

.chatpg-feature-title {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.chatpg-feature-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Stats */
.chatpg-stats {
    padding-bottom: 4rem;
    overflow: visible;
}

@media (min-width: 768px) {
    .chatpg-stats {
        padding-bottom: 5rem;
    }
}

.chatpg-stats-grid {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
    overflow: visible;
}

.chatpg-stats-grid > .col {
    overflow: visible;
}

.chatpg-stat-card {
    position: relative;
    text-align: center;
    padding: 1.65rem 1rem;
    background: rgba(10, 10, 14, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition:
        transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1),
        box-shadow 0.32s ease,
        border-color 0.28s ease;
    z-index: 1;
}

.chatpg-stat-card:hover {
    z-index: 3;
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(210, 7, 101, 0.45);
    box-shadow:
        0 18px 42px rgba(210, 7, 101, 0.38),
        0 10px 26px rgba(210, 7, 101, 0.28),
        0 6px 20px rgba(168, 5, 79, 0.22),
        0 8px 24px rgba(0, 118, 255, 0.2),
        0 4px 14px rgba(0, 0, 0, 0.55);
}

@media (max-width: 991.98px) {
    .chatpg-stat-card:hover {
        transform: translateY(-8px) scale(1.018);
        box-shadow:
            0 14px 34px rgba(210, 7, 101, 0.34),
            0 8px 22px rgba(210, 7, 101, 0.24),
            0 5px 16px rgba(168, 5, 79, 0.18),
            0 6px 18px rgba(0, 118, 255, 0.16),
            0 3px 12px rgba(0, 0, 0, 0.5);
    }
}

@media (max-width: 575.98px) {
    .chatpg-stat-card:hover {
        transform: translateY(-6px) scale(1.015);
        box-shadow:
            0 12px 28px rgba(210, 7, 101, 0.32),
            0 6px 18px rgba(210, 7, 101, 0.22),
            0 4px 14px rgba(0, 118, 255, 0.14),
            0 2px 10px rgba(0, 0, 0, 0.48);
    }
}

@media (hover: none) {
    .chatpg-stat-card:hover {
        transform: none;
        box-shadow: none;
        border-color: rgba(255, 255, 255, 0.08);
        z-index: 1;
    }

    .chatpg-stat-card:active {
        transform: translateY(-5px) scale(1.012);
        z-index: 3;
        border-color: rgba(210, 7, 101, 0.4);
        box-shadow:
            0 10px 24px rgba(210, 7, 101, 0.28),
            0 4px 14px rgba(0, 118, 255, 0.14),
            0 2px 8px rgba(0, 0, 0, 0.45);
    }
}

.chatpg-stat-value {
    font-family: "Bebas Neue", system-ui, sans-serif;
    font-size: clamp(2.5rem, 7vw, 3.5rem);
    line-height: 1;
    letter-spacing: 0.04em;
    font-variant-numeric: tabular-nums;
    min-height: 1.15em;
    background: linear-gradient(90deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 0.35rem;
}

.chatpg-stats--active .chatpg-stat-value {
    animation: chatpg-stat-pop 0.55s ease-out 0.1s both;
}

@keyframes chatpg-stat-pop {
    0% {
        transform: scale(0.94);
    }
    55% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.chatpg-stat-label {
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--muted);
    text-transform: capitalize;
    margin: 0;
}

/* Extra-small screens */
@media (max-width: 374px) {
    .chatpg-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .chatpg-btn {
        width: 100%;
        justify-content: center;
    }
}

/* predictive_ai hero override */
.predictivepg-body .chatpg-hero-phone-link {
    max-width: min(100%, 360px);
}

.predictivepg-body .chatpg-hero-phone {
    animation: chatpg-coin-spin-lr 9s linear infinite;
    transform-origin: 50% 50%;
    filter: drop-shadow(0 20px 44px rgba(0, 118, 255, 0.25))
        drop-shadow(0 12px 28px rgba(210, 7, 101, 0.2));
}

.predictivepg-body .chatpg-hero-phone-ring {
    width: min(88%, 360px);
    background: radial-gradient(circle, rgba(0, 118, 255, 0.1) 0%, transparent 72%);
}

/* predictive_ai blue accent override */
.predictivepg-body #predictivepg-hero .chatpg-hero-label {
    color: rgba(140, 205, 255, 0.9);
}

.predictivepg-body #predictivepg-hero .predictivepg-accent-a {
    color: #9adfff;
    text-shadow: 0 0 30px rgba(102, 194, 255, 0.45);
}

.predictivepg-body #predictivepg-hero .predictivepg-accent-b {
    color: #4db4ff;
    text-shadow: 0 0 34px rgba(44, 151, 255, 0.5);
}

.predictivepg-body #predictivepg-hero .predictivepg-btn-primary {
    background: linear-gradient(135deg, #2b8fff 0%, #35c0ff 100%);
    box-shadow: 0 14px 42px rgba(31, 138, 255, 0.45);
}

.predictivepg-body #predictivepg-hero .predictivepg-btn-primary:hover {
    box-shadow: 0 18px 52px rgba(31, 138, 255, 0.55);
}

.predictivepg-body #predictivepg-hero .predictivepg-btn-ghost:hover {
    border-color: rgba(90, 180, 255, 0.8);
    background: rgba(28, 118, 255, 0.16);
}

/* HR automation pink accent override */
.hrpg-body .chatpg-hero-phone-ring {
    width: min(88%, 360px);
    background: radial-gradient(circle, rgba(210, 7, 101, 0.16) 0%, transparent 72%);
}

.hrpg-body #hrpg-hero .hrpg-hero-label {
    color: rgba(255, 186, 218, 0.95);
}

.hrpg-body #hrpg-hero .hrpg-accent-a {
    color: #ff69b4;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.55);
}

.hrpg-body #hrpg-hero .hrpg-accent-b {
    color: #ff8ad9;
    text-shadow: 0 0 34px rgba(255, 138, 217, 0.5);
}

.hrpg-body #hrpg-hero .hrpg-btn-primary {
    background: linear-gradient(135deg, #d20765 0%, #ff6bb0 100%);
    box-shadow: 0 14px 42px rgba(210, 7, 101, 0.55);
}

.hrpg-body #hrpg-hero .hrpg-btn-primary:hover {
    box-shadow: 0 18px 52px rgba(210, 7, 101, 0.75);
}

.hrpg-body #hrpg-hero .hrpg-btn-ghost:hover {
    border-color: rgba(255, 143, 207, 0.9);
    background: rgba(210, 7, 101, 0.18);
}

/* HR automation intro section */
.hrpg-intro {
    position: relative;
    padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(3.2rem, 6vw, 5rem);
    background:
        radial-gradient(circle at 8% 12%, rgba(210, 7, 101, 0.18), transparent 42%),
        radial-gradient(circle at 90% 88%, rgba(255, 107, 176, 0.15), transparent 46%);
}

.hrpg-intro-row {
    align-items: stretch;
}

.hrpg-intro-copy {
    max-width: 520px;
}

.hrpg-intro-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.15;
    font-weight: 600;
    color: #fef2f8;
    margin-bottom: 1rem;
}

.hrpg-intro-text {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: rgba(249, 210, 234, 0.82);
}

.hrpg-intro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.hrpg-intro-card {
    border-radius: 18px;
    padding: 1.2rem 1.1rem 1.25rem;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.06), transparent 52%),
        linear-gradient(160deg, rgba(10, 6, 18, 0.98), rgba(12, 2, 20, 0.98));
    border: 1px solid rgba(255, 168, 210, 0.28);
    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.55),
        0 12px 26px rgba(210, 7, 101, 0.4);
    transition:
        transform 0.26s cubic-bezier(0.34, 1.3, 0.64, 1),
        box-shadow 0.26s ease,
        border-color 0.26s ease,
        background 0.26s ease;
}

.hrpg-intro-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 192, 224, 0.9);
    box-shadow:
        0 22px 48px rgba(0, 0, 0, 0.7),
        0 16px 34px rgba(210, 7, 101, 0.6);
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.08), transparent 52%),
        linear-gradient(160deg, rgba(32, 8, 30, 0.98), rgba(46, 5, 40, 0.98));
}

.hrpg-intro-card-title {
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffe7f4;
    margin-bottom: 0.45rem;
}

.hrpg-intro-card-text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 214, 234, 0.86);
}

@media (max-width: 991.98px) {
    .hrpg-intro {
        padding-top: 2.6rem;
        padding-bottom: 3.4rem;
    }

    .hrpg-intro-copy {
        max-width: none;
        margin-bottom: 1.8rem;
        text-align: center;
    }

    .hrpg-intro-title {
        font-size: clamp(1.7rem, 5.4vw, 2.2rem);
    }

    .hrpg-intro-row {
        text-align: left;
    }
}

@media (max-width: 767.98px) {
    .hrpg-intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .hrpg-intro-card {
        padding: 1.05rem 1rem 1.15rem;
        border-radius: 16px;
    }

    .hrpg-intro-card-title {
        font-size: 0.96rem;
    }

    .hrpg-intro-card-text {
        font-size: 0.86rem;
    }
}

.hrpg-process {
    position: relative;
    padding: clamp(3.4rem, 6.4vw, 5.8rem) 0 clamp(3.6rem, 6.6vw, 5.8rem);
    overflow: hidden;
}

.hrpg-process-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 56%;
    background:
        linear-gradient(to bottom, rgba(4, 2, 10, 0.1) 0%, rgba(4, 2, 10, 0.35) 60%, rgba(4, 2, 10, 0.75) 100%),
        url("../img/chat/form.jpg") center top/cover no-repeat;
    opacity: 0.8;
}

.hrpg-process::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 0%, rgba(210, 7, 101, 0.4), transparent 55%),
        radial-gradient(circle at 88% 100%, rgba(255, 107, 176, 0.35), transparent 55%);
    opacity: 0.6;
}

.hrpg-process > .container {
    position: relative;
    z-index: 1;
}

.hrpg-process-head {
    max-width: 780px;
    margin: 0 auto clamp(2rem, 4vw, 2.8rem);
}

.hrpg-process-kicker {
    margin: 0 0 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 212, 235, 0.82);
}

.hrpg-process-title {
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    line-height: 1.2;
    font-weight: 600;
    color: #fdf2fa;
    margin: 0;
}

.hrpg-process-title span {
    color: #ff6bb0;
}

.hrpg-process-row {
    margin-top: clamp(2.2rem, 3.6vw, 2.9rem);
}

.hrpg-process-card {
    position: relative;
    height: 100%;
    border-radius: 22px;
    padding: 2.4rem 1.35rem 1.4rem;
    background: rgba(8, 3, 14, 0.96);
    border: 1px solid rgba(255, 174, 214, 0.35);
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.7),
        0 14px 30px rgba(210, 7, 101, 0.5);
    overflow: hidden;
    transition:
        transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.hrpg-process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.12), transparent 55%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.hrpg-process-step {
    position: absolute;
    inset-inline: 0;
    top: -18px;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.hrpg-process-step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #fff;
    background: radial-gradient(circle at 30% 0%, #ffdff2, #ff6bb0 55%, #d20765 100%);
    box-shadow:
        0 16px 30px rgba(210, 7, 101, 0.85),
        0 0 0 7px rgba(11, 3, 20, 0.98);
}

.hrpg-process-card-title {
    position: relative;
    z-index: 1;
    font-size: 0.98rem;
    font-weight: 600;
    color: #ffe7f4;
    margin-bottom: 0.5rem;
}

.hrpg-process-card-text {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 215, 236, 0.88);
}

.hrpg-process-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 210, 237, 0.95);
    background: linear-gradient(165deg, rgba(23, 5, 24, 0.98), rgba(44, 7, 38, 0.98));
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.84),
        0 18px 40px rgba(210, 7, 101, 0.7);
}

.hrpg-process-card:hover::before {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hrpg-process {
        padding-top: 3rem;
        padding-bottom: 3.6rem;
    }

    .hrpg-process-card {
        border-radius: 20px;
    }
}

@media (max-width: 767.98px) {
    .hrpg-process-row {
        margin-top: 1.7rem;
    }

    .hrpg-process-card {
        margin-inline: 0.25rem;
    }
}

@media (max-width: 575.98px) {
    .hrpg-process-card {
        padding: 2.3rem 1.15rem 1.35rem;
    }

    .hrpg-process-step-badge {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
}
@keyframes chatpg-coin-spin-lr {
    from {
        transform: perspective(900px) rotateY(0deg);
    }
    to {
        transform: perspective(900px) rotateY(360deg);
    }
}

@media (max-width: 991.98px) {
    .predictivepg-body .chatpg-hero-phone-link {
        max-width: min(100%, 300px);
    }

    .predictivepg-body .chatpg-hero-phone-ring {
        width: min(86%, 300px);
    }
}

@media (max-width: 575.98px) {
    .predictivepg-body .chatpg-hero-phone-link {
        max-width: min(88vw, 250px);
    }

    .predictivepg-body .chatpg-hero-phone-ring {
        width: min(80vw, 250px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .predictivepg-body .chatpg-hero-phone {
        animation: none;
    }
}

/* predictive_ai contact-form theme override */
.predictivepg-body .cform-section {
    background: #050508;
    border-top-color: rgba(88, 180, 255, 0.2);
}

.predictivepg-body .cform-shell {
    border-color: rgba(95, 150, 218, 0.3);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 8px 28px rgba(36, 122, 210, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.predictivepg-body .cform-visual {
    background: #061426;
}

.predictivepg-body .cform-panel {
    background:
        radial-gradient(circle at 78% 20%, rgba(95, 191, 255, 0.1), transparent 48%),
        linear-gradient(165deg, rgba(8, 20, 44, 0.98) 0%, rgba(4, 14, 34, 0.98) 100%);
}

.predictivepg-body .cform-title {
    color: #eef7ff;
}

.predictivepg-body .cform-lead {
    color: rgba(192, 216, 245, 0.74);
}

.predictivepg-body .cform-label {
    color: rgba(225, 238, 255, 0.9);
}

.predictivepg-body .cform-input {
    background: rgba(133, 171, 226, 0.1);
    border-color: rgba(119, 165, 224, 0.34);
    color: #eef6ff;
}

.predictivepg-body .cform-input::placeholder {
    color: rgba(174, 201, 235, 0.55);
}

.predictivepg-body .cform-input:hover {
    border-color: rgba(102, 194, 255, 0.55);
}

.predictivepg-body .cform-input:focus {
    border-color: rgba(93, 199, 255, 0.75);
    box-shadow: 0 0 0 3px rgba(72, 168, 255, 0.2);
    background: rgba(133, 171, 226, 0.15);
}

.predictivepg-body .cform-submit {
    background: linear-gradient(135deg, #2f96ff 0%, #35c6ff 100%);
    box-shadow: 0 12px 36px rgba(52, 156, 255, 0.38);
}

.predictivepg-body .cform-submit:hover {
    box-shadow: 0 16px 44px rgba(52, 156, 255, 0.5);
}

.predictivepg-body .cform-submit:focus-visible {
    outline-color: #93d9ff;
}

/* predictive_ai research section */
.predictivepg-research {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3.2rem, 6vw, 5.4rem);
    background:
        radial-gradient(circle at 12% 30%, rgba(0, 118, 255, 0.1), transparent 40%),
        radial-gradient(circle at 88% 75%, rgba(77, 180, 255, 0.08), transparent 42%);
}

.predictivepg-research-head {
    max-width: 820px;
    margin: 0 auto clamp(1.8rem, 4vw, 2.8rem);
}

.predictivepg-research-chip {
    display: inline-block;
    margin: 0 0 0.9rem;
    padding: 0.38rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(154, 223, 255, 0.92);
    border: 1px solid rgba(77, 180, 255, 0.3);
    background: rgba(8, 40, 76, 0.5);
}

.predictivepg-research-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.9rem, 3.6vw, 3rem);
    font-weight: 700;
    color: #f8fbff;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.predictivepg-research-title span {
    color: #58beff;
    text-shadow: 0 0 26px rgba(58, 174, 255, 0.35);
}

.predictivepg-research-sub {
    margin: 0.7rem 0 0;
    color: rgba(210, 226, 250, 0.72);
    font-size: 0.97rem;
}

.predictivepg-research-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.5vw, 1.5rem);
    align-items: stretch;
}

.predictivepg-agent-list {
    display: grid;
    gap: 0.8rem;
}

.predictivepg-agent-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border-radius: 16px;
    border: 1px solid rgba(110, 145, 200, 0.22);
    background: linear-gradient(90deg, rgba(11, 16, 31, 0.88), rgba(9, 13, 24, 0.7));
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition:
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        transform 0.28s ease,
        background 0.28s ease;
}

.predictivepg-agent-card--active {
    border-color: rgba(77, 180, 255, 0.4);
    background: linear-gradient(90deg, rgba(18, 27, 50, 0.95), rgba(11, 18, 36, 0.82));
}

.predictivepg-agent-card:hover {
    border-color: rgba(117, 202, 255, 0.65);
    background: linear-gradient(90deg, rgba(16, 30, 56, 0.96), rgba(12, 23, 44, 0.9));
    box-shadow:
        0 0 0 1px rgba(130, 210, 255, 0.2),
        0 14px 32px rgba(33, 132, 255, 0.2),
        0 6px 18px rgba(7, 25, 58, 0.45);
    transform: translateY(-2px);
}

.predictivepg-agent-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #77ccff;
    border: 1px solid rgba(83, 171, 255, 0.35);
    background: rgba(20, 36, 66, 0.75);
    flex-shrink: 0;
    transition:
        transform 0.5s ease,
        color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.predictivepg-agent-card:hover .predictivepg-agent-icon {
    color: #c7eeff;
    border-color: rgba(125, 214, 255, 0.78);
    background: linear-gradient(145deg, rgba(44, 100, 166, 0.95), rgba(18, 52, 96, 0.9));
    box-shadow:
        0 0 18px rgba(91, 194, 255, 0.6),
        0 0 8px rgba(91, 194, 255, 0.45);
    animation: predictivepgIconSpin 1.2s linear infinite;
}

.predictivepg-agent-copy h3 {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: #f5f9ff;
}

.predictivepg-agent-copy h3 span {
    margin-left: 0.25rem;
    font-size: 0.68rem;
    color: rgba(144, 192, 255, 0.85);
    font-weight: 500;
}

.predictivepg-agent-copy p {
    margin: 0.22rem 0 0;
    font-size: 0.84rem;
    color: rgba(197, 215, 240, 0.72);
}

.predictivepg-agent-dot {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #64c4ff;
    box-shadow: 0 0 14px rgba(77, 180, 255, 0.8);
    flex-shrink: 0;
}

.predictivepg-agent-foot {
    margin: 0.2rem 0 0;
    text-align: center;
    font-size: 0.76rem;
    color: rgba(175, 201, 235, 0.6);
}

.predictivepg-agent-foot strong {
    color: rgba(225, 238, 255, 0.85);
    font-weight: 600;
}

.predictivepg-network-card {
    position: relative;
    min-height: 338px;
    border-radius: 18px;
    border: 1px solid rgba(104, 145, 202, 0.26);
    background:
        linear-gradient(180deg, rgba(17, 28, 46, 0.72), rgba(9, 13, 24, 0.78)),
        radial-gradient(circle at 25% 20%, rgba(86, 183, 255, 0.12), transparent 40%);
    overflow: hidden;
}

.predictivepg-network-live {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #dcf7ff;
    padding: 0.26rem 0.5rem;
    border-radius: 999px;
    border: 1px solid rgba(126, 220, 255, 0.42);
    background: rgba(47, 111, 155, 0.55);
    z-index: 4;
}

.predictivepg-network-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.predictivepg-network-lines path {
    fill: none;
    stroke: rgba(91, 194, 255, 0.9);
    stroke-width: 0.28;
    stroke-linecap: round;
    stroke-dasharray: 4 8;
    filter: drop-shadow(0 0 4px rgba(91, 194, 255, 0.6));
    animation: predictivepgLineFlow 2.6s linear infinite;
}

.predictivepg-network-node {
    position: absolute;
    min-width: 92px;
    max-width: 130px;
    border-radius: 10px;
    padding: 0.42rem 0.48rem;
    font-size: 0.68rem;
    color: rgba(226, 241, 255, 0.88);
    border: 1px solid rgba(123, 174, 240, 0.28);
    background: rgba(16, 24, 41, 0.85);
    z-index: 2;
    text-align: center;
}

.predictivepg-network-node small {
    display: block;
    margin-top: 0.1rem;
    font-size: 0.57rem;
    color: rgba(168, 196, 232, 0.76);
}

.predictivepg-network-node--core {
    border-color: rgba(197, 232, 98, 0.65);
    box-shadow: 0 0 16px rgba(197, 232, 98, 0.45);
}

.predictivepg-network-node--a { top: 14%; left: 42%; }
.predictivepg-network-node--b { top: 14%; right: 10%; }
.predictivepg-network-node--c { top: 39%; left: 52%; }
.predictivepg-network-node--d { top: 39%; left: 26%; }
.predictivepg-network-node--e { top: 64%; left: 44%; }
.predictivepg-network-node--f { top: 73%; left: 18%; }

.predictivepg-network-legend {
    position: absolute;
    left: 0.8rem;
    bottom: 0.7rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.65rem;
    color: rgba(179, 205, 238, 0.72);
}

.predictivepg-network-legend i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.3rem;
}

.predictivepg-legend-forecast { background: #d4ee66; box-shadow: 0 0 10px rgba(212, 238, 102, 0.7); }
.predictivepg-legend-risk { background: #5baeff; box-shadow: 0 0 10px rgba(91, 174, 255, 0.7); }

@keyframes predictivepgLineFlow {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.85;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -64;
        opacity: 0.85;
    }
}

@keyframes predictivepgIconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 991.98px) {
    .predictivepg-research-grid {
        grid-template-columns: 1fr;
    }

    .predictivepg-network-card {
        min-height: 320px;
    }
}

@media (max-width: 575.98px) {
    .predictivepg-research {
        padding-top: 2.6rem;
    }

    .predictivepg-agent-card {
        padding: 0.86rem 0.8rem;
        gap: 0.65rem;
    }

    .predictivepg-agent-copy h3 {
        font-size: 0.9rem;
    }

    .predictivepg-agent-copy p {
        font-size: 0.77rem;
    }

    .predictivepg-network-card {
        min-height: 300px;
    }

    .predictivepg-network-node {
        min-width: 78px;
        max-width: 110px;
        font-size: 0.62rem;
        padding: 0.34rem 0.34rem;
    }

    .predictivepg-agent-card:hover {
        transform: translateY(-1px);
    }
}

@media (hover: none) {
    .predictivepg-agent-card:hover {
        transform: none;
        border-color: rgba(110, 145, 200, 0.22);
        background: linear-gradient(90deg, rgba(11, 16, 31, 0.88), rgba(9, 13, 24, 0.7));
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .predictivepg-agent-card:hover .predictivepg-agent-icon {
        animation: none;
        color: #77ccff;
        border-color: rgba(83, 171, 255, 0.35);
        background: rgba(20, 36, 66, 0.75);
        box-shadow: none;
    }

    .predictivepg-agent-card:active {
        border-color: rgba(117, 202, 255, 0.58);
        transform: translateY(-1px);
        box-shadow:
            0 10px 24px rgba(33, 132, 255, 0.16),
            0 4px 12px rgba(7, 25, 58, 0.35);
    }

    .predictivepg-agent-card:active .predictivepg-agent-icon {
        animation: predictivepgIconSpin 0.95s linear infinite;
        color: #c7eeff;
        border-color: rgba(125, 214, 255, 0.7);
    }
}

@media (prefers-reduced-motion: reduce) {
    .predictivepg-network-lines path {
        animation: none;
    }

    .predictivepg-agent-card:hover .predictivepg-agent-icon,
    .predictivepg-agent-card:active .predictivepg-agent-icon {
        animation: none;
    }
}

/* predictive_ai markets section */
.predictivepg-markets {
    position: relative;
    padding: clamp(3rem, 5vw, 4.2rem) 0 clamp(3.2rem, 5vw, 4.6rem);
    background:
        radial-gradient(circle at 50% 8%, rgba(0, 118, 255, 0.1), transparent 34%),
        linear-gradient(180deg, rgba(5, 8, 16, 0.78), rgba(4, 8, 18, 0.4));
}

.predictivepg-markets-head {
    max-width: 860px;
    margin: 0 auto 1.9rem;
}

.predictivepg-markets-chip {
    display: inline-block;
    margin: 0 0 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(189, 225, 58, 0.35);
    background: rgba(78, 96, 24, 0.28);
    color: rgba(222, 255, 111, 0.92);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.predictivepg-markets-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.8vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f6fbff;
}

.predictivepg-markets-title span {
    color: #dff85f;
    text-shadow: 0 0 22px rgba(198, 245, 89, 0.28);
}

.predictivepg-markets-sub {
    margin: 0.75rem auto 0;
    max-width: 760px;
    color: rgba(206, 220, 244, 0.74);
    font-size: 0.96rem;
    line-height: 1.55;
}

.predictivepg-market-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.75rem, 2vw, 1rem);
    align-items: stretch;
}

.predictivepg-market-card {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    min-height: 116px;
    border-radius: 14px;
    padding: 0.86rem 0.86rem 0.78rem;
    background: linear-gradient(170deg, rgba(11, 17, 30, 0.9), rgba(7, 12, 23, 0.84));
    border: 1px solid rgba(108, 144, 197, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition:
        transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
}

.predictivepg-market-card:hover {
    z-index: 3;
    transform: translateY(-8px) scale(1.015);
    border-color: rgba(124, 197, 255, 0.55);
    background: linear-gradient(90deg, rgba(17, 34, 63, 0.98), rgba(10, 24, 48, 0.95));
    box-shadow:
        0 18px 38px rgba(24, 133, 255, 0.24),
        0 10px 24px rgba(95, 196, 255, 0.18),
        0 3px 12px rgba(4, 10, 20, 0.6);
}

.predictivepg-market-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #66c3ff;
    border: 1px solid rgba(102, 195, 255, 0.35);
    background: rgba(17, 43, 77, 0.52);
    transition: transform 0.28s ease, color 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.predictivepg-market-card:hover .predictivepg-market-icon {
    transform: scale(1.08);
    color: #d9f6ff;
    border-color: rgba(182, 229, 255, 0.7);
    box-shadow: 0 0 16px rgba(96, 196, 255, 0.52);
}

.predictivepg-market-copy h3 {
    margin: 0;
    font-size: 0.94rem;
    color: #f3f9ff;
    font-weight: 600;
}

.predictivepg-market-copy p {
    margin: 0.3rem 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(193, 211, 236, 0.75);
}

@media (max-width: 1199.98px) {
    .predictivepg-market-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .predictivepg-market-grid {
        grid-template-columns: 1fr;
    }

    .predictivepg-market-card {
        min-height: 0;
        padding: 0.78rem 0.74rem;
    }

    .predictivepg-market-card:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

@media (hover: none) {
    .predictivepg-market-card:hover {
        transform: none;
        border-color: rgba(108, 144, 197, 0.22);
        background: linear-gradient(170deg, rgba(11, 17, 30, 0.9), rgba(7, 12, 23, 0.84));
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .predictivepg-market-card:hover .predictivepg-market-icon {
        transform: none;
        color: #66c3ff;
        border-color: rgba(102, 195, 255, 0.35);
        box-shadow: none;
    }

    .predictivepg-market-card:active {
        transform: translateY(-3px);
        border-color: rgba(124, 197, 255, 0.48);
        box-shadow: 0 10px 22px rgba(24, 133, 255, 0.2);
    }
}

/* predictive_ai how-it-works */
.predictivepg-how {
    position: relative;
    overflow: hidden;
    padding: clamp(3rem, 5vw, 4.4rem) 0 clamp(3.2rem, 5vw, 4.8rem);
    background:
        radial-gradient(circle at 50% 0%, rgba(85, 193, 255, 0.09), transparent 36%),
        linear-gradient(180deg, rgba(4, 7, 13, 0.8), rgba(4, 8, 18, 0.35));
}

.predictivepg-how-head {
    max-width: 760px;
    margin: 0 auto clamp(1.8rem, 4vw, 2.6rem);
    position: relative;
    z-index: 2;
}

.predictivepg-how-chip {
    display: inline-block;
    margin: 0 0 0.72rem;
    padding: 0.35rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(198, 245, 89, 0.42);
    background: rgba(86, 110, 24, 0.3);
    color: rgba(223, 248, 95, 0.95);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.predictivepg-how-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.85rem, 3.7vw, 2.95rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f5f9ff;
}

.predictivepg-how-title span {
    color: #dff85f;
    text-shadow: 0 0 22px rgba(198, 245, 89, 0.28);
}

.predictivepg-how-sub {
    margin: 0.68rem auto 0;
    color: rgba(202, 218, 243, 0.72);
    font-size: 0.94rem;
}

.predictivepg-how-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr) minmax(0, 1fr);
    gap: clamp(0.75rem, 2.2vw, 1.15rem);
    align-items: stretch;
    position: relative;
    z-index: 2;
}

.predictivepg-how-coins {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.predictivepg-how-coin {
    position: absolute;
    width: clamp(30px, 3.6vw, 56px);
    height: auto;
    object-fit: contain;
    opacity: 0;
    transform: translate3d(0, -24px, 0) scale(0.88) rotate(0deg);
    filter: drop-shadow(0 6px 16px rgba(42, 156, 255, 0.3));
}

.predictivepg-how-coin--a { left: 6%; top: -22%; animation-delay: 0s; }
.predictivepg-how-coin--b { left: 19%; top: -18%; animation-delay: 0.22s; }
.predictivepg-how-coin--c { left: 34%; top: -20%; animation-delay: 0.45s; }
.predictivepg-how-coin--d { left: 52%; top: -16%; animation-delay: 0.14s; }
.predictivepg-how-coin--e { left: 72%; top: -21%; animation-delay: 0.62s; }
.predictivepg-how-coin--f { left: 88%; top: -17%; animation-delay: 0.34s; }
.predictivepg-how-coin--g { left: 12%; top: -26%; animation-delay: 0.75s; }
.predictivepg-how-coin--h { left: 27%; top: -24%; animation-delay: 0.95s; }
.predictivepg-how-coin--i { left: 43%; top: -28%; animation-delay: 1.12s; }
.predictivepg-how-coin--j { left: 61%; top: -23%; animation-delay: 1.32s; }
.predictivepg-how-coin--k { left: 79%; top: -27%; animation-delay: 1.5s; }
.predictivepg-how-coin--l { left: 94%; top: -25%; animation-delay: 1.72s; }

.predictivepg-how.predictivepg-how--coins-active .predictivepg-how-coin {
    animation: predictivepgHowCoinRise 5.6s linear infinite;
}

@keyframes predictivepgHowCoinRise {
    0% {
        opacity: 0.2;
        transform: translate3d(0, -340px, 0) scale(0.86) rotate(0deg);
    }
    5% {
        opacity: 0.72;
    }
    78% {
        opacity: 0.62;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, 360px, 0) scale(1.02) rotate(190deg);
    }
}

.predictivepg-how-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(103, 144, 196, 0.24);
    background: linear-gradient(170deg, rgba(11, 16, 30, 0.92), rgba(8, 13, 24, 0.82));
    padding: 1.15rem 1rem 1.05rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}


.predictivepg-how-card:hover {
    transform: translateY(-6px);
    border-color: rgba(121, 200, 255, 0.54);
    box-shadow:
        0 14px 30px rgba(23, 124, 242, 0.2),
        0 6px 18px rgba(11, 25, 55, 0.42);
}


.predictivepg-how-card--featured {
    background:
        linear-gradient(170deg, rgba(17, 31, 56, 0.94), rgba(9, 20, 40, 0.84)),
        radial-gradient(circle at 50% 8%, rgba(86, 183, 255, 0.12), transparent 55%);
    border-color: rgba(127, 198, 255, 0.42);
}

.predictivepg-how-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(141, 212, 255, 0.58);
    background: rgba(19, 57, 98, 0.66);
    color: #d9f4ff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 0.85rem;
}

.predictivepg-how-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(198, 245, 89, 0.42);
    background: rgba(82, 106, 24, 0.24);
    color: #dff85f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    box-shadow: 0 0 14px rgba(198, 245, 89, 0.16);
}

.predictivepg-how-card h3 {
    margin: 0;
    color: #f3f8ff;
    font-size: 1.35rem;
    font-weight: 600;
}

.predictivepg-how-card p {
    margin: 0.55rem 0 0;
    color: rgba(189, 208, 235, 0.76);
    font-size: 0.85rem;
    line-height: 1.55;
    max-width: 30ch;
}

@media (max-width: 991.98px) {
    .predictivepg-how-layout {
        grid-template-columns: 1fr 1fr;
    }

    .predictivepg-how-coin {
        width: clamp(24px, 5vw, 42px);
    }

    .predictivepg-how-card--featured {
        grid-column: 1 / -1;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .predictivepg-how-layout {
        grid-template-columns: 1fr;
    }

    .predictivepg-how-coin {
        width: clamp(18px, 6vw, 32px);
        filter: drop-shadow(0 4px 10px rgba(42, 156, 255, 0.24));
    }

    .predictivepg-how-card,
    .predictivepg-how-card--featured {
        grid-column: auto;
        max-width: none;
        margin: 0;
        min-height: 0;
        padding: 1rem 0.86rem 0.95rem;
    }

    .predictivepg-how-card h3 {
        font-size: 1.2rem;
    }

    .predictivepg-how-card p {
        font-size: 0.8rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .predictivepg-how-coins {
        display: none;
    }
}

@media (hover: none) {
    .predictivepg-how-card:hover {
        transform: none;
        border-color: rgba(103, 144, 196, 0.24);
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    }

    .predictivepg-how-card:active {
        transform: translateY(-3px);
        border-color: rgba(121, 200, 255, 0.42);
        box-shadow: 0 8px 16px rgba(23, 124, 242, 0.16);
    }

    .predictivepg-how-card:hover::before,
    .predictivepg-how-card:hover::after {
        animation: none;
    }
}


/* predictive_ai choose-path section */
.predictivepg-paths {
    position: relative;
    padding: clamp(3.1rem, 5.5vw, 4.9rem) 0 clamp(3.4rem, 6vw, 5.2rem);
    background:
        radial-gradient(circle at 20% 20%, rgba(82, 181, 255, 0.08), transparent 38%),
        radial-gradient(circle at 85% 80%, rgba(223, 248, 95, 0.06), transparent 40%),
        linear-gradient(180deg, rgba(4, 8, 16, 0.82), rgba(4, 9, 20, 0.35));
}

.predictivepg-paths-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.35fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: stretch;
}

.predictivepg-paths-sticky {
    position: sticky;
    top: 96px;
    align-self: start;
    min-height: calc(100vh - 120px);
    display: flex;
}

.predictivepg-paths-head {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 16px;
    border: 1px solid rgba(103, 144, 196, 0.18);
    background: linear-gradient(165deg, rgba(10, 16, 30, 0.7), rgba(7, 13, 25, 0.45));
    padding: clamp(0.9rem, 2.2vw, 1.25rem);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.predictivepg-paths-chip {
    display: inline-block;
    margin: 0 0 0.72rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(198, 245, 89, 0.36);
    background: rgba(84, 108, 27, 0.28);
    color: rgba(223, 248, 95, 0.95);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.predictivepg-paths-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.9rem, 3.8vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
    color: #f6faff;
}

.predictivepg-paths-sub {
    margin: 0.75rem 0 0;
    color: rgba(196, 214, 240, 0.75);
    max-width: 36ch;
    font-size: 0.95rem;
    line-height: 1.55;
}

.predictivepg-paths-stack {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.95rem;
}

.predictivepg-path-card {
    position: relative;
    border-radius: 16px;
    border: 1px solid rgba(107, 146, 198, 0.24);
    background: linear-gradient(165deg, rgba(10, 16, 30, 0.92), rgba(7, 13, 25, 0.84));
    padding: 1rem 1rem 0.95rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    transition:
        transform 0.3s cubic-bezier(0.34, 1.2, 0.64, 1),
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.predictivepg-path-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(126, 204, 255, 0.55);
    background: linear-gradient(95deg, rgba(16, 34, 63, 0.98), rgba(10, 24, 46, 0.92));
    box-shadow:
        0 18px 36px rgba(20, 132, 255, 0.25),
        0 8px 20px rgba(223, 248, 95, 0.12),
        0 4px 14px rgba(0, 0, 0, 0.55);
    animation: predictivepgPathShake 0.8s ease-in-out 1;
}

.predictivepg-path-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #dff85f;
    border: 1px solid rgba(198, 245, 89, 0.42);
    background: rgba(86, 110, 24, 0.22);
    margin-bottom: 0.72rem;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
}

.predictivepg-path-card:hover .predictivepg-path-icon {
    animation: predictivepgPathIconSpin 0.9s linear 1;
    box-shadow: 0 0 12px rgba(223, 248, 95, 0.45);
}

@keyframes predictivepgPathIconSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.predictivepg-path-card h3 {
    margin: 0;
    color: #f4f9ff;
    font-size: 1.55rem;
    font-weight: 600;
}

.predictivepg-path-card p {
    margin: 0.46rem 0 0.68rem;
    color: rgba(192, 211, 237, 0.74);
    font-size: 0.83rem;
    line-height: 1.5;
}

.predictivepg-path-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.34rem;
}

.predictivepg-path-card li {
    position: relative;
    padding-left: 0.92rem;
    color: rgba(213, 226, 246, 0.84);
    font-size: 0.76rem;
    line-height: 1.45;
}

.predictivepg-path-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #dff85f;
    box-shadow: 0 0 9px rgba(223, 248, 95, 0.6);
}

@keyframes predictivepgPathShake {
    0%, 100% { transform: translateY(-8px) translateX(0) scale(1.01); }
    20% { transform: translateY(-8px) translateX(-2px) scale(1.01); }
    40% { transform: translateY(-8px) translateX(2px) scale(1.01); }
    60% { transform: translateY(-8px) translateX(-1.5px) scale(1.01); }
    80% { transform: translateY(-8px) translateX(1.5px) scale(1.01); }
}

@media (max-width: 991.98px) {
    .predictivepg-paths-layout {
        grid-template-columns: 1fr;
    }

    .predictivepg-paths-sticky {
        position: static;
        min-height: 0;
        display: block;
    }

    .predictivepg-paths-head {
        text-align: center;
        height: auto;
    }

    .predictivepg-paths-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 62ch;
    }
}

@media (max-width: 575.98px) {
    .predictivepg-path-card {
        padding: 0.9rem 0.84rem;
    }

    .predictivepg-path-card h3 {
        font-size: 1.35rem;
    }

    .predictivepg-path-card p {
        font-size: 0.78rem;
    }

    .predictivepg-path-card li {
        font-size: 0.73rem;
    }

    .predictivepg-path-card:hover {
        transform: translateY(-5px) scale(1.008);
        animation: predictivepgPathShakeSm 0.75s ease-in-out 1;
    }
}

@keyframes predictivepgPathShakeSm {
    0%, 100% { transform: translateY(-5px) translateX(0) scale(1.008); }
    25% { transform: translateY(-5px) translateX(-1.5px) scale(1.008); }
    50% { transform: translateY(-5px) translateX(1.5px) scale(1.008); }
    75% { transform: translateY(-5px) translateX(-1px) scale(1.008); }
}

@media (hover: none) {
    .predictivepg-path-card:hover {
        transform: none;
        border-color: rgba(107, 146, 198, 0.24);
        background: linear-gradient(165deg, rgba(10, 16, 30, 0.92), rgba(7, 13, 25, 0.84));
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
        animation: none;
    }

    .predictivepg-path-card:hover .predictivepg-path-icon {
        animation: none;
        box-shadow: none;
    }

    .predictivepg-path-card:active {
        transform: translateY(-3px);
        border-color: rgba(126, 204, 255, 0.48);
        box-shadow: 0 10px 20px rgba(20, 132, 255, 0.2);
    }

    .predictivepg-path-card:active .predictivepg-path-icon {
        animation: predictivepgPathIconSpin 0.8s linear 1;
        box-shadow: 0 0 10px rgba(223, 248, 95, 0.38);
    }
}

@media (prefers-reduced-motion: reduce) {
    .predictivepg-path-card:hover {
        animation: none;
    }

    .predictivepg-path-card:hover .predictivepg-path-icon,
    .predictivepg-path-card:active .predictivepg-path-icon {
        animation: none;
    }
}

/* predictive_ai faq section */
.predictivepg-faq {
    position: relative;
    padding: clamp(3.2rem, 5.5vw, 5rem) 0;
    background:
        radial-gradient(circle at 14% 78%, rgba(76, 177, 255, 0.08), transparent 42%),
        radial-gradient(circle at 86% 20%, rgba(223, 248, 95, 0.05), transparent 35%),
        linear-gradient(180deg, rgba(4, 8, 16, 0.85), rgba(4, 10, 20, 0.4));
}

.predictivepg-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(1rem, 2.8vw, 2rem);
    align-items: start;
}

.predictivepg-faq-intro {
    max-width: 460px;
}

.predictivepg-faq-chip {
    display: inline-block;
    margin: 0 0 0.72rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(198, 245, 89, 0.36);
    background: rgba(84, 108, 27, 0.28);
    color: rgba(223, 248, 95, 0.95);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.predictivepg-faq-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.8rem);
    line-height: 1.1;
    font-weight: 700;
    color: #f6faff;
}

.predictivepg-faq-sub {
    margin: 0.72rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(198, 214, 240, 0.74);
}

.predictivepg-faq-wrap {
    border-radius: 18px;
    border: 1px solid rgba(109, 151, 206, 0.24);
    background: linear-gradient(165deg, rgba(10, 16, 30, 0.9), rgba(8, 13, 24, 0.8));
    padding: 0.45rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.predictivepg-faq-item {
    border: 0;
    background: transparent;
    border-bottom: 1px solid rgba(104, 143, 197, 0.26);
}

.predictivepg-faq-item:last-child {
    border-bottom: 0;
}

.predictivepg-faq-btn {
    background: transparent !important;
    color: #f3f8ff !important;
    box-shadow: none !important;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 1.06rem 0.36rem;
}

.predictivepg-faq-btn:not(.collapsed) {
    color: #dff85f !important;
}

.predictivepg-faq-btn::after {
    background-image: none;
    content: "";
    width: 9px;
    height: 9px;
    border-right: 2px solid rgba(170, 216, 255, 0.95);
    border-bottom: 2px solid rgba(170, 216, 255, 0.95);
    transform: rotate(45deg);
    margin-right: 5px;
}

.predictivepg-faq-btn:not(.collapsed)::after {
    transform: rotate(-135deg);
    margin-top: 5px;
    border-right-color: rgba(223, 248, 95, 0.95);
    border-bottom-color: rgba(223, 248, 95, 0.95);
}

.predictivepg-faq-body {
    padding: 0 0.36rem 1rem;
    color: rgba(194, 212, 239, 0.78);
    font-size: 0.9rem;
    line-height: 1.62;
}

@media (max-width: 991.98px) {
    .predictivepg-faq-layout {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .predictivepg-faq-intro {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .predictivepg-faq-wrap {
        padding: 0.35rem 0.72rem;
    }

    .predictivepg-faq-btn {
        font-size: 0.93rem;
        padding: 0.95rem 0.16rem;
    }

    .predictivepg-faq-body {
        font-size: 0.84rem;
        padding-inline: 0.16rem;
    }
}

/* HR automation faq section */
.hrpg-faq {
    position: relative;
    padding: clamp(3.2rem, 5.5vw, 5rem) 0;
    background:
        radial-gradient(circle at 10% 78%, rgba(210, 7, 101, 0.24), transparent 42%),
        radial-gradient(circle at 88% 18%, rgba(255, 138, 217, 0.18), transparent 40%),
        linear-gradient(180deg, rgba(4, 4, 10, 0.9), rgba(7, 3, 16, 0.78));
}

.hrpg-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.25fr);
    gap: clamp(1rem, 2.8vw, 2rem);
    align-items: start;
}

.hrpg-faq-intro {
    max-width: 460px;
}

.hrpg-faq-chip {
    display: inline-block;
    margin: 0 0 0.72rem;
    padding: 0.34rem 0.72rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 168, 210, 0.5);
    background: rgba(84, 15, 49, 0.72);
    color: #ffe1f3;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hrpg-faq-title {
    margin: 0;
    font-family: "DM Sans", system-ui, sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff3fa;
}

.hrpg-faq-sub {
    margin: 0.72rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 218, 238, 0.8);
}

.hrpg-faq-wrap {
    border-radius: 18px;
    border: 1px solid rgba(255, 168, 210, 0.32);
    background: linear-gradient(165deg, rgba(14, 6, 22, 0.96), rgba(10, 3, 18, 0.9));
    padding: 0.45rem 1rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hrpg-faq-item {
    border: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255, 174, 214, 0.3);
}

.hrpg-faq-item:last-child {
    border-bottom: 0;
}

.hrpg-faq-btn {
    background: transparent !important;
    color: #ffeef9 !important;
    box-shadow: none !important;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 1.06rem 0.36rem;
}

.hrpg-faq-btn::after {
    flex-shrink: 0;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 999px;
    background: rgba(255, 168, 210, 0.14);
    border: 1px solid rgba(255, 168, 210, 0.6);
    background-image: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.75rem;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
    content: "+";
    font-size: 0.7rem;
    color: #ffdff2;
}

.hrpg-faq-btn:not(.collapsed) {
    color: #ffffff !important;
}

.hrpg-faq-btn:not(.collapsed)::after {
    transform: rotate(45deg);
    background: rgba(255, 168, 210, 0.25);
    border-color: rgba(255, 210, 237, 0.95);
}

.hrpg-faq-body {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 222, 241, 0.9);
    padding: 0.8rem 0.2rem 0.9rem;
}

@media (max-width: 991.98px) {
    .hrpg-faq-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 1.6rem;
    }

    .hrpg-faq-intro {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .hrpg-faq-wrap {
        padding-inline: 0.8rem;
    }

    .hrpg-faq-btn {
        font-size: 0.96rem;
        padding-inline: 0.2rem;
    }

    .hrpg-faq-body {
        font-size: 0.9rem;
        padding: 0.8rem 0.1rem 0.9rem;
    }
}
