:root {
    --agent-gold: #EDCB50;
    --agent-purple: #452FF4;
    --agent-blue: #08162e;
    --agent-glass: rgba(8, 22, 46, 0.7);
    --agent-glow: 0 0 25px rgba(69, 47, 244, 0.4);
}

.agent-hero-terminal {
    background: var(--agent-glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--agent-glow);
    font-family: 'Inter', sans-serif;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.agent-terminal-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red {
    background: #ff5f56;
}

.dot-yellow {
    background: #ffbd2e;
}

.dot-green {
    background: #27c93f;
}

.agent-log-container {
    height: 200px;
    overflow-y: auto;
    font-family: 'Courier New', Courier, monospace;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agent-log-entry {
    border-left: 2px solid var(--agent-gold);
    padding-left: 15px;
    animation: fadeInLog 0.5s ease-out forwards;
}

@keyframes fadeInLog {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.agent-status-pulse {
    width: 10px;
    height: 10px;
    background: var(--agent-gold);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    box-shadow: 0 0 10px var(--agent-gold);
    animation: pulseAgent 2s infinite;
}

@keyframes pulseAgent {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.nav-agent-badge {
    background: linear-gradient(90deg, var(--agent-gold), #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-card-agentic {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid transparent;
}

.service-card-agentic:hover {
    transform: translateY(-10px);
    background: rgba(69, 47, 244, 0.05);
    border-color: var(--agent-purple);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about__thumb img {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 500px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.inclue__benefits__box {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 420px;
}

.inclue__benefits__box .content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.inclue__benefits__box .content p {
    flex-grow: 1;
}
